import pandas as pd
import numpy as np
import random
#df = pd.read_csv("D:\Study\Courses\Sentiment_Analysis\Amazon_Unlocked_Mobile\Amazon_Unlocked_Mobile.csv")
p = 0.05 # 5% of the lines
# keep the header, then take only 1% of lines
# if random from [0,1] interval is greater than 0.01 the row will be skipped
df = pd.read_csv("D:\Study\Courses\Sentiment_Analysis\Amazon_Unlocked_Mobile\Amazon_Unlocked_Mobile.csv",
header=0,
skiprows=lambda i: i>0 and random.random() > p
)
df.sample(10)
| Product Name | Brand Name | Price | Rating | Reviews | Review Votes | |
|---|---|---|---|---|---|---|
| 3875 | Apple iPhone SE Unlocked Phone -16 GB Retail P... | Apple | 438.95 | 5 | pretty good | 0.0 |
| 11058 | LG G3 D855 Factory Unlocked Cellphone, Interna... | LG | 195.99 | 1 | Phone is goodbut Power is off, a round piece m... | 0.0 |
| 1133 | Apple iPhone 5 Unlocked Cellphone, 64GB, White | Apple | 314.95 | 1 | this ad says in the description "Item model nu... | 60.0 |
| 18154 | Samsung Galaxy S6 Edge Plus G928C 32GB Unlocke... | Samsung | 459.99 | 5 | Nice and super | 0.0 |
| 11437 | LG Lucid 2, Black 8GB (Verizon Wireless) | LG | 79.95 | 1 | JUNK!!! | 2.0 |
| 1570 | Apple iPhone 5c 32GB (Pink) - Verizon Wireless | Apple | 159.99 | 5 | Honestly freaked me out a little because it di... | 4.0 |
| 15868 | Samsung Galaxy J5 SM-J500H/DS GSM Factory Unlo... | Samsung | 168.99 | 5 | The phone is working perfectly | 0.0 |
| 8767 | CNPGD All-in-1 Watch Cell Phone & Smart Watch ... | NaN | 59.99 | 2 | The watch is a joke don't buy it at all please... | 0.0 |
| 7124 | BLU Studio 7.0 II -Unlocked Smartphone - US GS... | BLU | 95.88 | 1 | hell no never buy this phone | 0.0 |
| 3794 | Apple iPhone SE Unlocked Phone - 64 GB Retail ... | Apple | 505.99 | 1 | So disappointed. It doesn't work on Verizon ne... | 0.0 |
print("Number of reviews: {}".format(len(df)))
Number of reviews: 20688
#Drop the missing values.
df.dropna(inplace=True)
#remove any neutral rating equals to 3.
df = df[df['Rating']!=3]
#Encode 4 star and 5 star as positively rated 1.
#Encode 1 star and 2 star as poorely rated 0.
df['sentiment'] = np.where(df['Rating']>3,1,0)
df.head(10)
| Product Name | Brand Name | Price | Rating | Reviews | Review Votes | sentiment | |
|---|---|---|---|---|---|---|---|
| 0 | "CLEAR CLEAN ESN" Sprint EPIC 4G Galaxy SPH-D7... | Samsung | 199.99 | 4 | Great phone to replace my lost phone. The only... | 0.0 | 1 |
| 2 | "CLEAR CLEAN ESN" Sprint EPIC 4G Galaxy SPH-D7... | Samsung | 199.99 | 4 | The battery was old & had been over used becau... | 0.0 | 1 |
| 3 | "CLEAR CLEAN ESN" Sprint EPIC 4G Galaxy SPH-D7... | Samsung | 199.99 | 1 | I purchased this phone in December as a christ... | 19.0 | 0 |
| 4 | "CLEAR CLEAN ESN" Sprint EPIC 4G Galaxy SPH-D7... | Samsung | 199.99 | 1 | Just... not good. The phone has great screen r... | 0.0 | 0 |
| 5 | [XMAS DEAL] [New Edition] Jethro [SC213V2] Fli... | Jethro | 79.99 | 5 | Bought for my mom! She loves it! | 8.0 | 1 |
| 6 | 2016 Latest Mini6 Small Android 5.1 Smart Mobi... | Phone Baby | 79.95 | 5 | This little phone is great compact and easy to... | 1.0 | 1 |
| 7 | 3 Pack Replacement Belt Clip Holster for Otter... | OtterBox | 17.95 | 4 | Works great. | 0.0 | 1 |
| 8 | 3 Pack Replacement Belt Clip Holster for Otter... | OtterBox | 17.95 | 5 | not as thick as my old one but it will do! | 0.0 | 1 |
| 20 | 5.0" Cell Phones Unlocked Android 5.1 MTK6580 ... | JUNING | 89.99 | 2 | It was slow, but worked fine. However after on... | 0.0 | 0 |
| 21 | 5.0" Elephone P6000 MTK6732 64-bit Quad Core 2... | Elephone | 161.06 | 2 | No 4g with ATT just 2g | 0.0 | 0 |
import matplotlib.pyplot as plt
sentiment_count = df["sentiment"].value_counts()
plt.pie(sentiment_count, labels=sentiment_count.index,
autopct='%1.1f%%', shadow=True, startangle=140)
plt.show()
print("Number of + reviews: {}".format(df[df["sentiment"]==1].count()[0]))
print("Number of - reviews: {}".format(df[df["sentiment"]==0].count()[0]))
Number of + reviews: 11524 Number of - reviews: 3852
We have used the Wordclouds package to get a quick overview of most recurrent words in the text corpus
from wordcloud import WordCloud
from wordcloud import STOPWORDS
pos_reviews = df[df["sentiment"]==1]
txt = " ".join(review.lower() for review in pos_reviews["Reviews"])
wordcloud = WordCloud().generate(txt)
plt.imshow(wordcloud, interpolation="bilinear")
plt.axis("off")
plt.show()
neg_reviews = df[df["sentiment"]==0]
txt = " ".join(tweet.lower() for tweet in neg_reviews["Reviews"])
wordcloud = WordCloud().generate(txt)
plt.imshow(wordcloud, interpolation="bilinear")
plt.axis("off")
plt.show()
import re #REGEX
def to_lowercase(Reviews):
Reviews = Reviews.lower()
return Reviews
def word_repetition(Reviews):
Reviews = re.sub(r'(.)\1+', r'\1\1', Reviews)
return Reviews
def punct_repetition(Reviews, default_replace=""):
Reviews = re.sub(r'[\?\.\!]+(?=[\?\.\!])', default_replace, Reviews)
return Reviews
import contractions
print(contractions.contractions_dict)
{"I'm": 'I am', "I'm'a": 'I am about to', "I'm'o": 'I am going to', "I've": 'I have', "I'll": 'I will', "I'll've": 'I will have', "I'd": 'I would', "I'd've": 'I would have', 'Whatcha': 'What are you', "amn't": 'am not', "ain't": 'are not', "aren't": 'are not', "'cause": 'because', "can't": 'cannot', "can't've": 'cannot have', "could've": 'could have', "couldn't": 'could not', "couldn't've": 'could not have', "daren't": 'dare not', "daresn't": 'dare not', "dasn't": 'dare not', "didn't": 'did not', 'didn’t': 'did not', "don't": 'do not', 'don’t': 'do not', "doesn't": 'does not', "e'er": 'ever', "everyone's": 'everyone is', 'finna': 'fixing to', 'gimme': 'give me', "gon't": 'go not', 'gonna': 'going to', 'gotta': 'got to', "hadn't": 'had not', "hadn't've": 'had not have', "hasn't": 'has not', "haven't": 'have not', "he've": 'he have', "he's": 'he is', "he'll": 'he will', "he'll've": 'he will have', "he'd": 'he would', "he'd've": 'he would have', "here's": 'here is', "how're": 'how are', "how'd": 'how did', "how'd'y": 'how do you', "how's": 'how is', "how'll": 'how will', "isn't": 'is not', "it's": 'it is', "'tis": 'it is', "'twas": 'it was', "it'll": 'it will', "it'll've": 'it will have', "it'd": 'it would', "it'd've": 'it would have', 'kinda': 'kind of', "let's": 'let us', 'luv': 'love', "ma'am": 'madam', "may've": 'may have', "mayn't": 'may not', "might've": 'might have', "mightn't": 'might not', "mightn't've": 'might not have', "must've": 'must have', "mustn't": 'must not', "mustn't've": 'must not have', "needn't": 'need not', "needn't've": 'need not have', "ne'er": 'never', "o'": 'of', "o'clock": 'of the clock', "ol'": 'old', "oughtn't": 'ought not', "oughtn't've": 'ought not have', "o'er": 'over', "shan't": 'shall not', "sha'n't": 'shall not', "shalln't": 'shall not', "shan't've": 'shall not have', "she's": 'she is', "she'll": 'she will', "she'd": 'she would', "she'd've": 'she would have', "should've": 'should have', "shouldn't": 'should not', "shouldn't've": 'should not have', "so've": 'so have', "so's": 'so is', "somebody's": 'somebody is', "someone's": 'someone is', "something's": 'something is', 'sux': 'sucks', "that're": 'that are', "that's": 'that is', "that'll": 'that will', "that'd": 'that would', "that'd've": 'that would have', 'em': 'them', "there're": 'there are', "there's": 'there is', "there'll": 'there will', "there'd": 'there would', "there'd've": 'there would have', "these're": 'these are', "they're": 'they are', "they've": 'they have', "they'll": 'they will', "they'll've": 'they will have', "they'd": 'they would', "they'd've": 'they would have', "this's": 'this is', "those're": 'those are', "to've": 'to have', 'wanna': 'want to', "wasn't": 'was not', "we're": 'we are', "we've": 'we have', "we'll": 'we will', "we'll've": 'we will have', "we'd": 'we would', "we'd've": 'we would have', "weren't": 'were not', "what're": 'what are', "what'd": 'what did', "what've": 'what have', "what's": 'what is', "what'll": 'what will', "what'll've": 'what will have', "when've": 'when have', "when's": 'when is', "where're": 'where are', "where'd": 'where did', "where've": 'where have', "where's": 'where is', "which's": 'which is', "who're": 'who are', "who've": 'who have', "who's": 'who is', "who'll": 'who will', "who'll've": 'who will have', "who'd": 'who would', "who'd've": 'who would have', "why're": 'why are', "why'd": 'why did', "why've": 'why have', "why's": 'why is', "will've": 'will have', "won't": 'will not', "won't've": 'will not have', "would've": 'would have', "wouldn't": 'would not', "wouldn't've": 'would not have', "y'all": 'you all', "y'all're": 'you all are', "y'all've": 'you all have', "y'all'd": 'you all would', "y'all'd've": 'you all would have', "you're": 'you are', "you've": 'you have', "you'll've": 'you shall have', "you'll": 'you will', "you'd": 'you would', "you'd've": 'you would have', 'jan.': 'january', 'feb.': 'february', 'mar.': 'march', 'apr.': 'april', 'jun.': 'june', 'jul.': 'july', 'aug.': 'august', 'sep.': 'september', 'oct.': 'october', 'nov.': 'november', 'dec.': 'december', 'I’m': 'I am', 'I’m’a': 'I am about to', 'I’m’o': 'I am going to', 'I’ve': 'I have', 'I’ll': 'I will', 'I’ll’ve': 'I will have', 'I’d': 'I would', 'I’d’ve': 'I would have', 'amn’t': 'am not', 'ain’t': 'are not', 'aren’t': 'are not', '’cause': 'because', 'can’t': 'cannot', 'can’t’ve': 'cannot have', 'could’ve': 'could have', 'couldn’t': 'could not', 'couldn’t’ve': 'could not have', 'daren’t': 'dare not', 'daresn’t': 'dare not', 'dasn’t': 'dare not', 'doesn’t': 'does not', 'e’er': 'ever', 'everyone’s': 'everyone is', 'gon’t': 'go not', 'hadn’t': 'had not', 'hadn’t’ve': 'had not have', 'hasn’t': 'has not', 'haven’t': 'have not', 'he’ve': 'he have', 'he’s': 'he is', 'he’ll': 'he will', 'he’ll’ve': 'he will have', 'he’d': 'he would', 'he’d’ve': 'he would have', 'here’s': 'here is', 'how’re': 'how are', 'how’d': 'how did', 'how’d’y': 'how do you', 'how’s': 'how is', 'how’ll': 'how will', 'isn’t': 'is not', 'it’s': 'it is', '’tis': 'it is', '’twas': 'it was', 'it’ll': 'it will', 'it’ll’ve': 'it will have', 'it’d': 'it would', 'it’d’ve': 'it would have', 'let’s': 'let us', 'ma’am': 'madam', 'may’ve': 'may have', 'mayn’t': 'may not', 'might’ve': 'might have', 'mightn’t': 'might not', 'mightn’t’ve': 'might not have', 'must’ve': 'must have', 'mustn’t': 'must not', 'mustn’t’ve': 'must not have', 'needn’t': 'need not', 'needn’t’ve': 'need not have', 'ne’er': 'never', 'o’': 'of', 'o’clock': 'of the clock', 'ol’': 'old', 'oughtn’t': 'ought not', 'oughtn’t’ve': 'ought not have', 'o’er': 'over', 'shan’t': 'shall not', 'sha’n’t': 'shall not', 'shalln’t': 'shall not', 'shan’t’ve': 'shall not have', 'she’s': 'she is', 'she’ll': 'she will', 'she’d': 'she would', 'she’d’ve': 'she would have', 'should’ve': 'should have', 'shouldn’t': 'should not', 'shouldn’t’ve': 'should not have', 'so’ve': 'so have', 'so’s': 'so is', 'somebody’s': 'somebody is', 'someone’s': 'someone is', 'something’s': 'something is', 'that’re': 'that are', 'that’s': 'that is', 'that’ll': 'that will', 'that’d': 'that would', 'that’d’ve': 'that would have', 'there’re': 'there are', 'there’s': 'there is', 'there’ll': 'there will', 'there’d': 'there would', 'there’d’ve': 'there would have', 'these’re': 'these are', 'they’re': 'they are', 'they’ve': 'they have', 'they’ll': 'they will', 'they’ll’ve': 'they will have', 'they’d': 'they would', 'they’d’ve': 'they would have', 'this’s': 'this is', 'those’re': 'those are', 'to’ve': 'to have', 'wasn’t': 'was not', 'we’re': 'we are', 'we’ve': 'we have', 'we’ll': 'we will', 'we’ll’ve': 'we will have', 'we’d': 'we would', 'we’d’ve': 'we would have', 'weren’t': 'were not', 'what’re': 'what are', 'what’d': 'what did', 'what’ve': 'what have', 'what’s': 'what is', 'what’ll': 'what will', 'what’ll’ve': 'what will have', 'when’ve': 'when have', 'when’s': 'when is', 'where’re': 'where are', 'where’d': 'where did', 'where’ve': 'where have', 'where’s': 'where is', 'which’s': 'which is', 'who’re': 'who are', 'who’ve': 'who have', 'who’s': 'who is', 'who’ll': 'who will', 'who’ll’ve': 'who will have', 'who’d': 'who would', 'who’d’ve': 'who would have', 'why’re': 'why are', 'why’d': 'why did', 'why’ve': 'why have', 'why’s': 'why is', 'will’ve': 'will have', 'won’t': 'will not', 'won’t’ve': 'will not have', 'would’ve': 'would have', 'wouldn’t': 'would not', 'wouldn’t’ve': 'would not have', 'y’all': 'you all', 'y’all’re': 'you all are', 'y’all’ve': 'you all have', 'y’all’d': 'you all would', 'y’all’d’ve': 'you all would have', 'you’re': 'you are', 'you’ve': 'you have', 'you’ll’ve': 'you shall have', 'you’ll': 'you will', 'you’d': 'you would', 'you’d’ve': 'you would have'}
def fix_contractions(Reviews):
Reviews = contractions.fix(Reviews)
return Reviews
import nltk
from nltk.tokenize import word_tokenize
nltk.download('punkt')
[nltk_data] Downloading package punkt to [nltk_data] C:\Users\Arvin\AppData\Roaming\nltk_data... [nltk_data] Package punkt is already up-to-date!
True
import string
print(string.punctuation)
!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
from nltk.corpus import stopwords
nltk.download('stopwords')
[nltk_data] Downloading package stopwords to [nltk_data] C:\Users\Arvin\AppData\Roaming\nltk_data... [nltk_data] Package stopwords is already up-to-date!
True
stop_words = set(stopwords.words('english'))
print(stop_words)
{'y', "you'd", "hadn't", "wouldn't", 'yourselves', 'ours', 'against', 'further', 'each', 'as', 'than', 'until', 'hasn', 'after', 'because', 'over', 'being', 'here', 'at', 'too', 'ourselves', 'both', 'did', 'shouldn', 'his', "isn't", 'needn', 'll', 'theirs', 'no', 'them', 'but', 'didn', 'myself', 'in', 'that', 'not', 'so', 'any', 've', "shouldn't", 'him', 'doesn', 'can', 'himself', 'our', 'while', 'this', "that'll", 'am', 'where', 'weren', 'more', "you've", 'when', 'above', 'had', 'from', 're', 'who', 'those', 'few', "hasn't", 'couldn', 'to', 'such', 'won', 'same', 'and', 'just', 'don', 'we', 'will', "doesn't", 'doing', 'if', 'these', "she's", 'there', 'yourself', 'its', "haven't", 'itself', 'mustn', 's', 'into', 'an', 'me', "don't", 'once', 'was', 'have', 'a', 'all', 'most', 'mightn', "needn't", "aren't", 'i', 'which', 'some', 'on', 'under', 'their', 'before', "should've", 'd', 'of', 'up', "you're", 'they', 'why', 'are', 'by', 'should', 'were', "mustn't", 'or', 'with', "it's", 'having', 'yours', 'is', 'hadn', 'the', 'during', 'wasn', 'hers', 'out', 'ma', 'wouldn', 'off', "won't", 't', 'she', 'what', 'through', 'it', 'for', 'has', 'does', 'do', 'he', 'very', 'themselves', "weren't", 'about', 'be', 'down', 'now', 'then', 'again', 'o', 'm', 'aren', 'isn', 'how', 'own', "mightn't", 'her', "wasn't", 'whom', 'only', 'my', 'other', 'below', 'between', "couldn't", "didn't", 'nor', 'herself', 'been', "you'll", 'ain', 'shan', 'your', 'you', 'haven', "shan't"}
def custom_tokenize(Reviews,
keep_punct = False,
keep_alnum = False,
keep_stop = False):
token_list = word_tokenize(Reviews)
if not keep_punct:
token_list = [token for token in token_list
if token not in string.punctuation]
if not keep_alnum:
token_list = [token for token in token_list if token.isalpha()]
if not keep_stop:
stop_words = set(stopwords.words('english'))
stop_words.discard('not')
token_list = [token for token in token_list if not token in stop_words]
return token_list
Testing the function with a random review
Reviews = "these are 5 different words!"
print("Review tokens: {}".format(custom_tokenize(Reviews,
keep_punct=True,
keep_alnum=True,
keep_stop=True)))
print("Review tokens: {}".format(custom_tokenize(Reviews, keep_stop=True)))
print("Review tokens: {}".format(custom_tokenize(Reviews, keep_alnum=True)))
Review tokens: ['these', 'are', '5', 'different', 'words', '!'] Review tokens: ['these', 'are', 'different', 'words'] Review tokens: ['5', 'different', 'words']
Importing the different libraries and modules used for stemming
from nltk.stem.snowball import SnowballStemmer
tokens = ["manager", "management", "managing"] #Example for testing function
#Defining stemmers directly using NLTK
snowball_stemmer = SnowballStemmer('english')
Creating a stem_tokens function that takes the list of tokens as input and returns a list of stemmed tokens
def stem_tokens(tokens, stemmer):
token_list = []
for token in tokens:
token_list.append(stemmer.stem(token))
return token_list
Testing out our stemmer function
print("Snowball stems: {}".format(stem_tokens(tokens, snowball_stemmer)))
Snowball stems: ['manag', 'manag', 'manag']
from nltk.stem import WordNetLemmatizer
from nltk.corpus import wordnet
nltk.download('wordnet')
[nltk_data] Downloading package wordnet to [nltk_data] C:\Users\Arvin\AppData\Roaming\nltk_data... [nltk_data] Package wordnet is already up-to-date!
True
tokens = ["international", "companies", "had", "interns"]
word_type = {"international": wordnet.ADJ,
"companies": wordnet.NOUN,
"had": wordnet.VERB,
"interns": wordnet.NOUN
}
lemmatizer = WordNetLemmatizer()
def lemmatize_tokens(tokens, word_type, lemmatizer):
token_list = []
for token in tokens:
token_list.append(lemmatizer.lemmatize(token, word_type[token]))
return token_list
print("Review lemma: {}".format(
lemmatize_tokens(tokens, word_type, lemmatizer)))
Review lemma: ['international', 'company', 'have', 'intern']
def process_review(Reviews, verbose=False):
if verbose: print("Initial tweet: {}".format(review))
## Word Features
Reviews = to_lowercase(Reviews) # lower case
Reviews = fix_contractions(Reviews) # replace contractions
Reviews = punct_repetition(Reviews) # replace punctuation repetition
Reviews = word_repetition(Reviews) # replace word repetition
if verbose: print("Post Word processing review: {}".format(Reviews))
## Tokenization & Stemming
tokens = custom_tokenize(Reviews, keep_alnum=False, keep_stop=False) # tokenize
stemmer = SnowballStemmer("english") # define stemmer
stem = stem_tokens(tokens, stemmer) # stem tokens
return stem
complex_review = "I feel so LUCKY to have found this used (phone to us & not used hard at all), phone on line from someone who upgraded and sold this one. My Son liked his old one that finally fell apart after 2.5+ years and didn't want an upgrade!! Thank you Seller, we really appreciate it & your honesty re: said used phone.I recommend this seller very highly & would but from them again!!"
print(process_review(complex_review, verbose=False))
['feel', 'lucki', 'found', 'use', 'phone', 'us', 'not', 'use', 'hard', 'phone', 'line', 'someon', 'upgrad', 'sold', 'one', 'son', 'like', 'old', 'one', 'final', 'fell', 'apart', 'year', 'not', 'want', 'upgrad', 'thank', 'seller', 'realli', 'appreci', 'honesti', 'said', 'use', 'recommend', 'seller', 'high', 'would']
pip install -U scikit-learn
Requirement already satisfied: scikit-learn in c:\users\arvin\anaconda3\lib\site-packages (0.24.2) Requirement already satisfied: numpy>=1.13.3 in c:\users\arvin\anaconda3\lib\site-packages (from scikit-learn) (1.20.2) Requirement already satisfied: scipy>=0.19.1 in c:\users\arvin\anaconda3\lib\site-packages (from scikit-learn) (1.6.2) Requirement already satisfied: joblib>=0.11 in c:\users\arvin\anaconda3\lib\site-packages (from scikit-learn) (1.0.1) Requirement already satisfied: threadpoolctl>=2.0.0 in c:\users\arvin\anaconda3\lib\site-packages (from scikit-learn) (2.1.0) Note: you may need to restart the kernel to use updated packages.
df["tokens"] = df["Reviews"].apply(process_review)
df.head(10)
| Product Name | Brand Name | Price | Rating | Reviews | Review Votes | sentiment | tokens | |
|---|---|---|---|---|---|---|---|---|
| 0 | "CLEAR CLEAN ESN" Sprint EPIC 4G Galaxy SPH-D7... | Samsung | 199.99 | 4 | Great phone to replace my lost phone. The only... | 0.0 | 1 | [great, phone, replac, lost, phone, thing, vol... |
| 2 | "CLEAR CLEAN ESN" Sprint EPIC 4G Galaxy SPH-D7... | Samsung | 199.99 | 4 | The battery was old & had been over used becau... | 0.0 | 1 | [batteri, old, use, bare, hold, charg, otherwi... |
| 3 | "CLEAR CLEAN ESN" Sprint EPIC 4G Galaxy SPH-D7... | Samsung | 199.99 | 1 | I purchased this phone in December as a christ... | 19.0 | 0 | [purchas, phone, decemb, christma, present, so... |
| 4 | "CLEAR CLEAN ESN" Sprint EPIC 4G Galaxy SPH-D7... | Samsung | 199.99 | 1 | Just... not good. The phone has great screen r... | 0.0 | 0 | [not, good, phone, great, screen, resolut, sto... |
| 5 | [XMAS DEAL] [New Edition] Jethro [SC213V2] Fli... | Jethro | 79.99 | 5 | Bought for my mom! She loves it! | 8.0 | 1 | [bought, mom, love] |
| 6 | 2016 Latest Mini6 Small Android 5.1 Smart Mobi... | Phone Baby | 79.95 | 5 | This little phone is great compact and easy to... | 1.0 | 1 | [littl, phone, great, compact, easi, use, love] |
| 7 | 3 Pack Replacement Belt Clip Holster for Otter... | OtterBox | 17.95 | 4 | Works great. | 0.0 | 1 | [work, great] |
| 8 | 3 Pack Replacement Belt Clip Holster for Otter... | OtterBox | 17.95 | 5 | not as thick as my old one but it will do! | 0.0 | 1 | [not, thick, old, one] |
| 20 | 5.0" Cell Phones Unlocked Android 5.1 MTK6580 ... | JUNING | 89.99 | 2 | It was slow, but worked fine. However after on... | 0.0 | 0 | [slow, work, fine, howev, week, would, not, ch... |
| 21 | 5.0" Elephone P6000 MTK6732 64-bit Quad Core 2... | Elephone | 161.06 | 2 | No 4g with ATT just 2g | 0.0 | 0 | [att] |
X = df["tokens"].tolist()
y = df["sentiment"].tolist()
from sklearn.feature_extraction.text import TfidfVectorizer
Create a fit_tfidf function used to build the TF-IDF vectorizer with the corpus tokens (X)
def fit_tfidf(review_corpus):
tf_vect = TfidfVectorizer(preprocessor=lambda x: x,
tokenizer=lambda x: x)
tf_vect.fit(review_corpus)
return tf_vect
tf_vect = fit_tfidf(X)
tf_mtx = tf_vect.transform(X)
C:\Users\Arvin\anaconda3\lib\site-packages\sklearn\feature_extraction\text.py:489: UserWarning: The parameter 'token_pattern' will not be used since 'tokenizer' is not None'
warnings.warn("The parameter 'token_pattern' will not be used"
ft = tf_vect.get_feature_names()
print("There are {} features in this corpus".format(len(ft)))
print(ft)
There are 10040 features in this corpus ['aac', 'aat', 'ab', 'abandon', 'abandonado', 'abbrevi', 'abc', 'abd', 'abesolu', 'abil', 'abili', 'abirthday', 'abit', 'abl', 'abnorm', 'abort', 'abou', 'abouth', 'abras', 'abrir', 'abroad', 'abrupt', 'absent', 'absoleto', 'absolut', 'absolutament', 'absolutley', 'absorb', 'absorpt', 'absoult', 'absoulti', 'absout', 'absulout', 'absurd', 'absutley', 'abund', 'abus', 'abuss', 'abysm', 'ac', 'aca', 'acabado', 'acabo', 'acabó', 'academi', 'acc', 'acced', 'acceler', 'acceleromet', 'accent', 'accept', 'acces', 'acceseri', 'acceso', 'accesori', 'accesorio', 'access', 'accessari', 'accesscamera', 'accessibilitybtnotif', 'accessor', 'accessori', 'accessoriescon', 'accessoriesth', 'accesstil', 'accid', 'accident', 'accion', 'accommod', 'accompani', 'accomplish', 'accord', 'account', 'accs', 'accsesori', 'acct', 'accumul', 'accur', 'accuraci', 'accuratecam', 'accustom', 'ace', 'acelera', 'acept', 'aceptò', 'acer', 'acertada', 'acessori', 'achiev', 'achill', 'acknowledg', 'acostumbr', 'acotacion', 'acount', 'acquir', 'acr', 'acrobat', 'across', 'acryl', 'act', 'actal', 'action', 'activ', 'activado', 'activast', 'activatei', 'activateinternetmenu', 'activeroot', 'actor', 'actual', 'actualicen', 'actualizacion', 'actualizado', 'actualizar', 'actualment', 'acur', 'acura', 'ad', 'adam', 'adapt', 'adapta', 'adaptador', 'adaptar', 'adapterto', 'adapto', 'adaptor', 'adaway', 'adb', 'add', 'addict', 'addit', 'addl', 'address', 'addresseedit', 'adecuado', 'adecúa', 'adelant', 'adema', 'ademá', 'adept', 'adequ', 'adhes', 'adia', 'adicion', 'adicional', 'adit', 'adjac', 'adjust', 'admin', 'administr', 'admir', 'admit', 'admitir', 'adn', 'ado', 'adob', 'ador', 'adoro', 'adquirirlo', 'adreno', 'adrian', 'adroid', 'aduana', 'adult', 'advanc', 'advantag', 'adventur', 'adversari', 'advert', 'advertis', 'advic', 'advis', 'adw', 'adwar', 'aer', 'aesthet', 'af', 'afectado', 'affect', 'affili', 'affliat', 'afford', 'afghanistan', 'aficionado', 'aford', 'aforement', 'afraid', 'africa', 'african', 'afriend', 'aftemarket', 'afteral', 'aftermarket', 'afternoon', 'afternooni', 'afterward', 'afyer', 'againthank', 'agarra', 'agarrar', 'age', 'agencia', 'agenda', 'agent', 'aggrav', 'aggreg', 'agian', 'agift', 'ago', 'agrad', 'agradec', 'agradeceria', 'agradecido', 'agradesco', 'agradezco', 'agrado', 'agre', 'agreement', 'agress', 'ah', 'ahead', 'ahem', 'ahh', 'ahold', 'ahora', 'ahorrando', 'ahv', 'aid', 'aim', 'air', 'airbnb', 'airborn', 'airlin', 'airplan', 'airpod', 'airport', 'airvoic', 'airwatch', 'aiz', 'ajust', 'ajusta', 'aka', 'akin', 'akku', 'akward', 'al', 'ala', 'alarm', 'albeit', 'album', 'alcatel', 'alcenel', 'alcohol', 'aldiko', 'alert', 'alex', 'algo', 'alguien', 'alguna', 'alguno', 'alia', 'align', 'alik', 'alisonsel', 'alittl', 'aliv', 'all', 'alleg', 'allevi', 'alley', 'allfriend', 'alli', 'allin', 'allit', 'alloc', 'allot', 'allow', 'allreadi', 'allround', 'allstep', 'alltel', 'allthousand', 'almacenan', 'almost', 'almsot', 'aloha', 'alon', 'along', 'alongsid', 'alot', 'aloud', 'alow', 'alpha', 'alphabet', 'alphanumer', 'alreadi', 'alright', 'also', 'alsoexcel', 'alt', 'alter', 'altern', 'altho', 'although', 'althought', 'althouth', 'althouvh', 'alto', 'altogeth', 'altogh', 'altough', 'aluminium', 'aluminum', 'alway', 'amaaz', 'amaiz', 'amamzon', 'amando', 'amaxon', 'amaz', 'amazebal', 'amazi', 'amazin', 'amazingth', 'amazon', 'amazonhorr', 'amazoni', 'amazonian', 'amber', 'ambient', 'ambl', 'amd', 'amen', 'america', 'american', 'amig', 'amigo', 'amit', 'amlo', 'amol', 'amold', 'amolsarva', 'among', 'amongst', 'amost', 'amount', 'amp', 'ampl', 'ampliament', 'ampm', 'amswer', 'amt', 'amveri', 'amzer', 'amzon', 'amágen', 'américa', 'an', 'anal', 'analog', 'analyz', 'anayl', 'ancient', 'and', 'anda', 'andfor', 'andi', 'andit', 'ando', 'andoid', 'andorid', 'andriod', 'androhid', 'android', 'androidoveral', 'androit', 'andth', 'anem', 'angl', 'angola', 'angri', 'angrygrr', 'anim', 'anker', 'anna', 'annihil', 'announc', 'annoy', 'ano', 'anod', 'anoth', 'anounc', 'anoy', 'answer', 'ant', 'antena', 'antenna', 'anterior', 'anther', 'anti', 'anticip', 'antiguament', 'antiguo', 'antiqu', 'antivirus', 'antutu', 'anvil', 'anxieti', 'anxious', 'anybodi', 'anyday', 'anyht', 'anymor', 'anymorei', 'anyon', 'anyonecan', 'anyth', 'anythign', 'anytim', 'anyway', 'anywher', 'aomeon', 'aosp', 'ap', 'apaga', 'apagar', 'apago', 'apar', 'aparato', 'apariencia', 'apart', 'apathet', 'apeciali', 'apena', 'aperatur', 'apertur', 'apex', 'apk', 'aplic', 'aplicacion', 'aplicación', 'apn', 'apo', 'apolog', 'apon', 'apostroph', 'apow', 'apoyo', 'app', 'appal', 'appar', 'appeal', 'appear', 'appendag', 'apper', 'appl', 'applaud', 'appli', 'applic', 'applicaion', 'applicant', 'appoint', 'appreci', 'apprehens', 'approach', 'appropri', 'approv', 'approx', 'approxim', 'appsmemori', 'appstalk', 'appstor', 'appt', 'appworld', 'aprec', 'aprecia', 'aprendiendo', 'april', 'aproach', 'aprox', 'aqua', 'aquel', 'aqui', 'aquí', 'ar', 'arab', 'arabia', 'arabian', 'architect', 'archiv', 'area', 'areal', 'arena', 'argentina', 'argetina', 'argh', 'argu', 'arguabl', 'aris', 'ariund', 'ariv', 'arm', 'armi', 'armor', 'armorflex', 'arnt', 'around', 'arrang', 'array', 'arrgghh', 'arriba', 'arriv', 'arrivalrear', 'arround', 'arrow', 'arsenal', 'art', 'arthriti', 'articl', 'articul', 'articulo', 'artifact', 'artist', 'artiv', 'artsi', 'artículo', 'ascend', 'asco', 'asecond', 'asegurado', 'asegurec', 'aseguren', 'asesoren', 'asewom', 'asham', 'ashland', 'ashokashok', 'asi', 'asia', 'asian', 'asid', 'ask', 'asleep', 'asmart', 'aspect', 'aspecto', 'asphalt', 'ass', 'assembl', 'assess', 'asset', 'assign', 'assist', 'associ', 'assum', 'assur', 'asterisk', 'astound', 'astro', 'asum', 'asurion', 'asus', 'aswel', 'así', 'atat', 'ate', 'atencion', 'atent', 'atentament', 'atentio', 'atento', 'atfer', 'atlant', 'atlanta', 'atlas', 'atleast', 'atm', 'atnt', 'atom', 'atrial', 'atribut', 'atrium', 'atroci', 'att', 'attach', 'attempt', 'attend', 'attens', 'attent', 'attentivelyjesus', 'attest', 'attgophon', 'attorney', 'attract', 'attribut', 'audibl', 'audifono', 'audio', 'audiophil', 'audit', 'audífono', 'aug', 'august', 'aun', 'aunqu', 'aunt', 'aunti', 'auqu', 'auricularhello', 'ausgezeichnet', 'australasia', 'australia', 'australiaweb', 'austria', 'authent', 'author', 'auto', 'autofocus', 'autolight', 'autom', 'automail', 'automat', 'automaticallykeyboard', 'autonomi', 'autostart', 'aux', 'auxbeam', 'auxilari', 'avail', 'availbl', 'avant', 'avast', 'avatar', 'averag', 'averagespe', 'averi', 'avertis', 'avg', 'avi', 'avid', 'avoid', 'avu', 'aw', 'await', 'awak', 'awar', 'awasom', 'awat', 'away', 'awe', 'aweosm', 'awesom', 'awesome', 'awful', 'awhil', 'awkward', 'awsom', 'axept', 'axom', 'axon', 'ayer', 'ayuda', 'ayudado', 'ayye', 'az', 'azz', 'año', 'aún', 'b', 'babi', 'babysitt', 'bacc', 'back', 'backbon', 'backconnectivityth', 'backglass', 'background', 'backlight', 'backlit', 'backpack', 'backplat', 'backsid', 'backspac', 'backup', 'backupstak', 'backward', 'backwith', 'backyard', 'bacon', 'bad', 'badand', 'badd', 'badon', 'badth', 'bag', 'baggi', 'bahama', 'bahamian', 'baila', 'bait', 'baja', 'bajarl', 'bajo', 'bake', 'baker', 'balanc', 'balck', 'ball', 'ballist', 'ballpark', 'bamboo', 'banana', 'banco', 'band', 'banda', 'bandwagon', 'bandwidth', 'bandwith', 'bang', 'bangin', 'bangladesh', 'bank', 'bankrupt', 'banner', 'bar', 'barato', 'barbado', 'barbara', 'barbri', 'barcelona', 'barcod', 'bare', 'barebon', 'bargain', 'baromet', 'basa', 'base', 'basebal', 'baseband', 'baselin', 'basement', 'bash', 'basi', 'basic', 'basica', 'basicali', 'basico', 'bass', 'bastant', 'basura', 'bat', 'bataria', 'batch', 'bateri', 'bateria', 'baterri', 'batería', 'bath', 'batt', 'batter', 'batterey', 'batteri', 'batterissu', 'batterygreat', 'batterylif', 'batterymicro', 'batteryphon', 'batteryquick', 'batteryth', 'batteryther', 'battl', 'baught', 'bay', 'bazel', 'bb', 'bbc', 'bbe', 'bbm', 'bbrok', 'bc', 'bck', 'bday', 'bdsj', 'beabeauti', 'beabl', 'beach', 'beacus', 'beam', 'bean', 'bear', 'bearabl', 'beast', 'beat', 'beatabl', 'beaten', 'beati', 'beauti', 'beautif', 'beautifi', 'beautiful', 'beautifullov', 'beauty', 'bec', 'becam', 'becausenit', 'becom', 'becon', 'becous', 'becuas', 'becus', 'bed', 'bedor', 'bedroom', 'bee', 'beef', 'beefi', 'beep', 'beer', 'beez', 'beezley', 'befast', 'beforehand', 'beg', 'began', 'beggar', 'beggin', 'begin', 'beginn', 'behalf', 'behav', 'behavior', 'behaviour', 'behind', 'behold', 'bejewel', 'belang', 'beleiv', 'belief', 'believ', 'beliv', 'belkin', 'bell', 'bella', 'belli', 'bello', 'bellow', 'belong', 'belov', 'belt', 'bem', 'bemoan', 'ben', 'benchmark', 'bend', 'benefici', 'benefit', 'benign', 'benmark', 'bennefit', 'bent', 'benz', 'benzen', 'beor', 'berceus', 'bermuda', 'berri', 'bes', 'besid', 'best', 'bestbuy', 'bestfriend', 'bet', 'beta', 'beter', 'beterr', 'betray', 'better', 'betteri', 'betterthan', 'beuti', 'beutiful', 'bewar', 'beyond', 'beyound', 'bezel', 'bezelverdict', 'bf', 'bff', 'bhow', 'bi', 'bias', 'bibl', 'bicycl', 'bid', 'bien', 'bienthank', 'big', 'bigger', 'biggest', 'biggi', 'bight', 'bigshould', 'bijan', 'bike', 'bill', 'billion', 'bin', 'bingo', 'biometr', 'bionic', 'bird', 'birthday', 'bis', 'bit', 'bite', 'bitter', 'bizarr', 'bla', 'blacberri', 'black', 'blackberri', 'blackdo', 'blackout', 'blackscreen', 'blackthi', 'bladder', 'blade', 'blah', 'blaha', 'blakcberri', 'blame', 'blanca', 'blanco', 'blank', 'blankpassword', 'blankus', 'blast', 'blaster', 'blatant', 'blaze', 'bleed', 'blemish', 'blend', 'blender', 'bless', 'blew', 'blind', 'bling', 'blink', 'blinkfe', 'blinki', 'blitz', 'blnk', 'bloat', 'bloatwar', 'bloatwear', 'blob', 'block', 'blockag', 'blocker', 'blocki', 'blog', 'bloomberg', 'bloqueado', 'blotch', 'blow', 'blowd', 'blown', 'blowout', 'blu', 'blue', 'blueberri', 'bluedot', 'blueit', 'bluejean', 'bluelight', 'bluer', 'bluetek', 'bluethoot', 'bluetooth', 'bluetoth', 'bluff', 'bluish', 'blur', 'bluri', 'blurr', 'blurri', 'blus', 'blutek', 'blutekusa', 'bluth', 'blutooth', 'blü', 'bnx', 'board', 'boast', 'boat', 'boatload', 'boca', 'bodi', 'bog', 'boght', 'bogota', 'bogus', 'boh', 'boil', 'bokeh', 'bola', 'bold', 'bolder', 'bolsillo', 'bolt', 'bomb', 'bombard', 'bomber', 'bon', 'bond', 'bone', 'bonito', 'bonker', 'bonus', 'boo', 'book', 'booklet', 'bookmark', 'boom', 'boombox', 'boomsound', 'boost', 'booster', 'boot', 'booth', 'bootload', 'bootloop', 'border', 'borderlin', 'bore', 'bork', 'born', 'borranron', 'borrow', 'bosom', 'boss', 'boston', 'bothar', 'bother', 'bothersom', 'boton', 'botten', 'bottl', 'bottom', 'bough', 'bought', 'boughten', 'bougth', 'boulder', 'bounc', 'bound', 'bout', 'bouy', 'box', 'boxand', 'boxcas', 'boy', 'boyfriend', 'bracket', 'brag', 'brain', 'brainer', 'brake', 'bran', 'brand', 'brandon', 'brasil', 'brave', 'bravo', 'brazen', 'brazil', 'brazilian', 'bread', 'breadth', 'break', 'breaker', 'breakfast', 'breakup', 'breast', 'breath', 'breathtak', 'breed', 'breedfurth', 'breez', 'brick', 'bridg', 'brief', 'briefli', 'brigh', 'bright', 'brighten', 'brighter', 'brightest', 'brigth', 'brigther', 'brilliant', 'bring', 'british', 'brittl', 'bro', 'broad', 'broadcast', 'brochur', 'broke', 'broken', 'broker', 'bronz', 'brother', 'brough', 'brought', 'brougth', 'brown', 'brows', 'browser', 'brush', 'brushoff', 'bs', 'bsae', 'bsod', 'bsrcelluar', 'bt', 'btc', 'btw', 'bubbl', 'bubblewrap', 'buck', 'buckdont', 'bucket', 'buckl', 'bud', 'buddi', 'budg', 'budget', 'buen', 'buena', 'buenicimo', 'buenisimo', 'bueno', 'buffer', 'bug', 'buggi', 'buggiest', 'bugl', 'build', 'built', 'buis', 'bulcki', 'bulg', 'bulk', 'bulki', 'bulkier', 'bull', 'bullet', 'bulletin', 'bum', 'bummer', 'bump', 'bumper', 'bunch', 'bundl', 'bunk', 'bunkb', 'burden', 'buri', 'burla', 'burn', 'burner', 'burnt', 'burst', 'burt', 'bus', 'busca', 'buscando', 'busi', 'busin', 'bust', 'buster', 'butcannot', 'bute', 'butoth', 'butt', 'butter', 'butteri', 'buttom', 'button', 'buttonpl', 'buttonsfor', 'buttri', 'butuh', 'buutt', 'buy', 'buyer', 'buyeryour', 'buyspri', 'buzz', 'by', 'bye', 'byod', 'byop', 'bypass', 'bzz', 'básic', 'básica', 'c', 'ca', 'cab', 'cabl', 'cableleath', 'cablesinc', 'cabo', 'cach', 'cad', 'cada', 'cae', 'caind', 'caja', 'cake', 'cal', 'calcul', 'calculatorbatteri', 'calend', 'calendar', 'cali', 'calib', 'calibr', 'calidad', 'calificacion', 'calificación', 'calificada', 'calificar', 'califico', 'california', 'calk', 'call', 'callcamerai', 'caller', 'calor', 'calori', 'cam', 'camara', 'cambio', 'camcord', 'came', 'camer', 'camera', 'camerabad', 'cameracon', 'cameraconsfeel', 'camerafingerprint', 'camerai', 'camerastoragereli', 'cameratouch', 'cameron', 'camo', 'camora', 'camp', 'camper', 'camra', 'can', 'canada', 'canadian', 'canalizando', 'cancel', 'candi', 'candid', 'candybar', 'cane', 'canon', 'canot', 'cap', 'capabilit', 'capabilityear', 'capabilitypro', 'capabl', 'capac', 'capacidad', 'capacit', 'capacitv', 'capacityth', 'capacitywhen', 'capit', 'capsul', 'captiv', 'captur', 'capácidad', 'car', 'caraca', 'caracteristica', 'característica', 'carcasa', 'card', 'cardboard', 'cardcom', 'cardgood', 'cardi', 'cardinteri', 'cardoveral', 'cardsand', 'cardthi', 'care', 'career', 'careful', 'caregiv', 'careless', 'carga', 'cargador', 'caribbean', 'carmin', 'carniv', 'caro', 'carolina', 'carpet', 'carri', 'carriag', 'carribean', 'carrier', 'cart', 'carton', 'cartridg', 'casa', 'case', 'casecon', 'caseheadsetphoneand', 'caseless', 'casem', 'casene', 'caseth', 'cash', 'cashier', 'casi', 'casino', 'casio', 'caso', 'cast', 'casual', 'cat', 'cataract', 'catastroph', 'catch', 'categori', 'caught', 'caus', 'caution', 'cautious', 'cave', 'caveat', 'cavern', 'cayo', 'cc', 'cd', 'cdin', 'cdma', 'cds', 'cearful', 'ceas', 'cel', 'celebr', 'cell', 'cella', 'cellar', 'cellfon', 'celli', 'cellpgin', 'cellphon', 'celluar', 'cellul', 'cellular', 'celphon', 'celsius', 'celu', 'celular', 'celuloar', 'cement', 'cent', 'center', 'centigrad', 'centimet', 'centr', 'central', 'centuri', 'ceo', 'cerca', 'certain', 'certifi', 'cetrain', 'chace', 'chacha', 'chager', 'chain', 'chair', 'chalk', 'challeng', 'chamber', 'chameleon', 'champ', 'champagn', 'champion', 'chanc', 'chand', 'chang', 'changer', 'channel', 'chao', 'charact', 'characterist', 'charcoal', 'charg', 'chargecamera', 'chargei', 'charger', 'chargerallow', 'chargersthird', 'chargerth', 'chargingfastest', 'chargingkeyboardbeauti', 'chargingperformanceperform', 'charli', 'charm', 'chart', 'chase', 'chat', 'chatg', 'chatterjeeupd', 'cheap', 'cheapdual', 'cheaper', 'cheapest', 'cheapi', 'cheapli', 'cheapo', 'cheapoveral', 'cheapp', 'cheapstylishsound', 'cheat', 'cheater', 'check', 'checkblack', 'checkk', 'checkout', 'cheek', 'cheep', 'cheer', 'cheesi', 'chemic', 'chenag', 'chest', 'chever', 'chew', 'chicago', 'chicken', 'chief', 'chiefli', 'chiinnaa', 'child', 'childhood', 'children', 'chile', 'chilean', 'chili', 'china', 'chinavas', 'chines', 'chiness', 'chinsi', 'chintzi', 'chip', 'chipset', 'chirp', 'chk', 'chocol', 'choetech', 'choic', 'choix', 'choke', 'chondroitin', 'choos', 'chooser', 'chop', 'choppi', 'chord', 'chose', 'chosen', 'chpear', 'christi', 'christma', 'christmasand', 'christoph', 'chrome', 'chromebook', 'chromecast', 'chromium', 'chrstmas', 'chubbiestechso', 'chubbietech', 'chuck', 'chug', 'chunck', 'chunk', 'chunki', 'chunkier', 'chup', 'chévere', 'cid', 'cierto', 'cigarett', 'cigarret', 'cincinnati', 'cinco', 'cinder', 'cindi', 'circa', 'circl', 'circuit', 'circuitri', 'circumfer', 'circumst', 'circumstanti', 'citadel', 'citi', 'citizen', 'ciuld', 'ckassic', 'claim', 'clam', 'clamshel', 'clarifi', 'clariti', 'clark', 'claro', 'clash', 'class', 'classi', 'classic', 'classifi', 'clay', 'clean', 'cleaner', 'clear', 'clearanc', 'clearcal', 'clearer', 'clearest', 'clearlygreat', 'clearphon', 'clearsold', 'clearsound', 'clerk', 'clever', 'click', 'clicki', 'client', 'clientei', 'clientela', 'cliff', 'climb', 'clip', 'clitchi', 'clock', 'clockwork', 'clockworkmod', 'clog', 'clone', 'close', 'closer', 'closest', 'closet', 'closur', 'cloth', 'cloud', 'cloudi', 'club', 'clue', 'clueintern', 'clumsey', 'clumsi', 'clunki', 'clutter', 'cmda', 'cmos', 'cms', 'cnet', 'cnn', 'cnpgd', 'co', 'coach', 'coast', 'coat', 'cobertura', 'cobran', 'cobraron', 'cobtiuesli', 'cocoa', 'code', 'coffe', 'coffin', 'cogio', 'coil', 'coin', 'coincid', 'cold', 'coldfust', 'collag', 'collar', 'colleagu', 'collect', 'colleg', 'collin', 'collis', 'colocar', 'colocarl', 'coloco', 'colombia', 'coloni', 'coloqu', 'coloqué', 'color', 'colorado', 'colour', 'com', 'comando', 'comapni', 'comatos', 'combat', 'combin', 'combo', 'comcast', 'come', 'comeback', 'comedi', 'comencé', 'coment', 'comentari', 'comentario', 'comento', 'comenzó', 'comerci', 'comfi', 'comfort', 'comfortableit', 'comftabl', 'comgratul', 'comic', 'command', 'commando', 'commend', 'comment', 'commentari', 'commerc', 'commerci', 'commit', 'commitmentsoveral', 'common', 'communic', 'communitaion', 'communiti', 'communitoin', 'commut', 'como', 'comoad', 'comodo', 'compact', 'compani', 'compania', 'companion', 'companynow', 'compar', 'comparacion', 'comparada', 'comparis', 'comparison', 'compart', 'compass', 'compassoveral', 'compat', 'compati', 'compatu', 'compañia', 'compear', 'compens', 'compet', 'competit', 'competitor', 'complacidad', 'complacido', 'complain', 'complaint', 'compleat', 'complement', 'complet', 'completo', 'complex', 'compli', 'compliant', 'complic', 'compliment', 'compon', 'comporto', 'compos', 'compound', 'compr', 'compra', 'comprado', 'comprador', 'compramo', 'compran', 'comprar', 'comprarlo', 'compraron', 'comprehens', 'compren', 'compress', 'compris', 'compro', 'compromis', 'compromiso', 'compré', 'comput', 'computadora', 'comsupt', 'comtact', 'comun', 'comunicativo', 'comunidad', 'con', 'conaid', 'concept', 'concern', 'concis', 'conclud', 'conclus', 'conclusión', 'concret', 'condens', 'condetin', 'condicion', 'condición', 'condit', 'conditionon', 'condiçõ', 'condom', 'condtion', 'cone', 'conect', 'conectada', 'conectado', 'conectando', 'conectar', 'conectars', 'conexion', 'conexión', 'confer', 'confess', 'confiabl', 'confid', 'configur', 'configuracion', 'configuración', 'configurar', 'configuraron', 'configurars', 'confirm', 'confisc', 'conflict', 'conform', 'confort', 'confus', 'congela', 'congelado', 'congelan', 'congratul', 'congratulecion', 'conk', 'connect', 'connectivitycon', 'connector', 'conoc', 'conocida', 'conocimiento', 'conquer', 'conquest', 'conract', 'conscienc', 'conscienti', 'conscious', 'consecut', 'consensus', 'consequ', 'conserv', 'consid', 'consider', 'considera', 'considero', 'consist', 'consl', 'consol', 'constal', 'constant', 'constitut', 'constraint', 'construct', 'consult', 'consum', 'consumpt', 'contact', 'contactedt', 'contacto', 'contain', 'contatec', 'contempl', 'contend', 'content', 'contenta', 'contento', 'contesten', 'context', 'contidion', 'contien', 'contin', 'contini', 'continu', 'continuen', 'continuo', 'continuum', 'contol', 'contra', 'contract', 'contractor', 'contractu', 'contradictori', 'contrari', 'contrast', 'contrat', 'contratar', 'contribut', 'control', 'convencio', 'conveni', 'convenientgood', 'convent', 'convers', 'convert', 'convertor', 'convey', 'convict', 'convien', 'convinc', 'convoy', 'cooki', 'cool', 'cooler', 'coolest', 'coont', 'cooper', 'coordin', 'copi', 'copilot', 'copl', 'copper', 'cord', 'core', 'corelon', 'corn', 'corner', 'cornersth', 'corneta', 'cornin', 'corp', 'corpor', 'correct', 'correctament', 'corregido', 'correo', 'correspond', 'correspondient', 'corrol', 'corros', 'corrsp', 'corrupt', 'cortana', 'corto', 'cos', 'cosa', 'cose', 'cosmet', 'cosmo', 'cosotoso', 'cost', 'costa', 'costum', 'cotton', 'couch', 'couchon', 'coud', 'cough', 'could', 'couldi', 'couldmak', 'couldnot', 'cound', 'count', 'counter', 'counterfeit', 'counterintuit', 'counterpart', 'countless', 'countri', 'countrybuy', 'coupl', 'courier', 'cours', 'court', 'courteous', 'courtesi', 'cous', 'cousin', 'cover', 'coverag', 'covet', 'cow', 'cowork', 'cpu', 'cpus', 'crack', 'crackl', 'cradl', 'craftsmanship', 'craigslist', 'cram', 'cramp', 'crank', 'craoy', 'crap', 'crappi', 'crappier', 'crappiest', 'crapwar', 'crash', 'crashbesid', 'crashedtook', 'crashpow', 'crave', 'crazi', 'craziest', 'creak', 'cream', 'creami', 'creat', 'creation', 'creativ', 'credenti', 'credit', 'creep', 'creimo', 'creo', 'creía', 'cri', 'cricket', 'crimin', 'crippl', 'crisi', 'crisp', 'crispi', 'crispier', 'crispli', 'cristal', 'criteria', 'critic', 'critiqu', 'critis', 'crocodhil', 'crook', 'cross', 'crowd', 'crqck', 'crsp', 'crucial', 'crud', 'cruel', 'cruis', 'crummi', 'crunchyrol', 'crush', 'crusher', 'crystal', 'cs', 'csc', 'cscreen', 'csl', 'cspire', 'csr', 'ct', 'cting', 'cual', 'cualidad', 'cualquier', 'cuando', 'cuanto', 'cuba', 'cube', 'cubierta', 'cubot', 'cudnt', 'cue', 'cuenta', 'cuidado', 'cultur', 'cumbersom', 'cumpl', 'cumplida', 'cumplio', 'cumplir', 'cumplió', 'cup', 'cupl', 'curacao', 'curb', 'curios', 'curious', 'curl', 'currenc', 'current', 'curs', 'cursor', 'curtious', 'curtsey', 'curv', 'curvatur', 'cushion', 'cust', 'custom', 'customis', 'customiz', 'customizablegreat', 'cut', 'cute', 'cuter', 'cutter', 'cuz', 'cv', 'cyan', 'cyanogenmod', 'cyber', 'cycl', 'cynic', 'cámara', 'câmera', 'cómodo', 'da', 'daba', 'dac', 'dad', 'dado', 'daemonbas', 'daes', 'dafe', 'dail', 'daili', 'dairi', 'daisi', 'dalla', 'daller', 'dalvik', 'dam', 'damag', 'damn', 'damnest', 'dampen', 'damper', 'danana', 'dang', 'danger', 'dann', 'dar', 'dare', 'daria', 'dark', 'darker', 'darkest', 'darn', 'das', 'dash', 'dashboard', 'dat', 'data', 'databas', 'datai', 'datajust', 'date', 'dato', 'daugher', 'daughter', 'david', 'day', 'daycar', 'dayday', 'daydear', 'daydec', 'daylight', 'dayne', 'daysbad', 'daysso', 'dayswith', 'dayth', 'daytim', 'dayum', 'dazzl', 'dañada', 'dañado', 'dañadosus', 'daño', 'dañolo', 'dbm', 'dc', 'de', 'deactiv', 'dead', 'deadlin', 'deaf', 'deal', 'dealbreak', 'dealer', 'dealerl', 'dealfish', 'dealscali', 'dealt', 'dear', 'death', 'debat', 'debbi', 'debe', 'deberia', 'deberian', 'debería', 'debic', 'debido', 'debio', 'debit', 'debo', 'debri', 'debut', 'dec', 'decad', 'deceit', 'deceiv', 'decemb', 'decent', 'decepcion', 'decepcionant', 'decepción', 'deceppción', 'decept', 'decid', 'decidirc', 'decir', 'decirgracia', 'decis', 'deck', 'declin', 'deco', 'decod', 'deconectarlo', 'decor', 'decreas', 'decía', 'ded', 'dedic', 'deduct', 'deed', 'deem', 'deep', 'deeper', 'deepli', 'deer', 'def', 'default', 'defcon', 'defeat', 'defebd', 'defect', 'defectedvideo', 'defein', 'defend', 'defens', 'defer', 'defet', 'deffect', 'deffin', 'deffinat', 'deffinit', 'defi', 'defiant', 'defici', 'defictt', 'defin', 'definatley', 'definet', 'definit', 'defintin', 'defraud', 'defray', 'defunct', 'dega', 'degrad', 'degre', 'dejaron', 'dejo', 'del', 'delawar', 'delay', 'delet', 'deleveri', 'deliber', 'delic', 'delicada', 'delight', 'delin', 'deliv', 'deliveri', 'deliveryy', 'dell', 'dellock', 'delov', 'deltamobil', 'delusion', 'delux', 'dem', 'dema', 'demand', 'demasiado', 'demis', 'demo', 'demograph', 'demomm', 'demon', 'demonstr', 'demora', 'demá', 'deni', 'denial', 'denim', 'dens', 'densiti', 'dent', 'dentro', 'depart', 'departur', 'depen', 'depend', 'deplet', 'deplor', 'deploy', 'deposit', 'depot', 'deprec', 'depress', 'depth', 'desbloqueado', 'desbloquearlo', 'desbloquedo', 'descargar', 'descent', 'descompenso', 'describ', 'describen', 'describianlo', 'descript', 'descriptioncounterfeit', 'descriptor', 'descrito', 'descriv', 'desctipt', 'desd', 'dese', 'desean', 'desech', 'desembolsar', 'desempeño', 'deserv', 'desia', 'design', 'designperfect', 'desir', 'desit', 'desk', 'desktop', 'despachado', 'despacio', 'despair', 'desper', 'despido', 'despis', 'despit', 'despond', 'despu', 'despué', 'destin', 'destino', 'destroy', 'desventaja', 'detach', 'detail', 'detall', 'detassl', 'detect', 'detector', 'deter', 'deterior', 'determin', 'detial', 'detract', 'detriment', 'dev', 'devast', 'develop', 'devic', 'devicemi', 'devicenet', 'deviceon', 'devicesnewest', 'devicewast', 'devis', 'devolución', 'devolv', 'devolverlo', 'devot', 'dhcp', 'dhiraagu', 'dhl', 'di', 'dia', 'diadvantag', 'diagnost', 'diagon', 'diagonosi', 'diagram', 'dial', 'dialect', 'dialer', 'diall', 'dialysi', 'diamet', 'diamond', 'dice', 'diced', 'dicen', 'dicha', 'dicho', 'diciéndom', 'dictat', 'dictionari', 'didi', 'didnot', 'die', 'diego', 'diehard', 'difer', 'diff', 'differ', 'differeng', 'differenti', 'difficult', 'difficultand', 'difficulti', 'diffrent', 'diffus', 'dificil', 'dificultad', 'difrenc', 'dig', 'digi', 'digicel', 'digit', 'digitar', 'digitel', 'digitelfunciona', 'digo', 'digress', 'dije', 'dijeron', 'dilemma', 'dilig', 'diliverd', 'dim', 'dime', 'dimens', 'dimmer', 'dimpl', 'din', 'dindt', 'dinero', 'dineroi', 'ding', 'dinki', 'dinosaur', 'dint', 'dio', 'dip', 'diplay', 'direccion', 'direct', 'directament', 'directo', 'dirt', 'dirti', 'dirtproof', 'diría', 'dis', 'disabl', 'disadvantag', 'disagre', 'disap', 'disapiont', 'disapoint', 'disappear', 'disappoi', 'disappoin', 'disappoint', 'disappointedbecaus', 'disappointeddisappth', 'disappointedi', 'disappointedphon', 'disappoit', 'disassembl', 'disast', 'disatisfac', 'disatisfi', 'disburs', 'disc', 'discharg', 'disclaim', 'disclos', 'disclosur', 'discolor', 'discombobul', 'disconnect', 'discont', 'discontinu', 'discord', 'discount', 'discourag', 'discov', 'discoveri', 'discreet', 'discret', 'discrib', 'discript', 'discuss', 'discust', 'disench', 'diseno', 'disfigur', 'disgust', 'disgustin', 'dishonest', 'disir', 'disk', 'dislik', 'dismal', 'dismay', 'dismiss', 'disney', 'disord', 'disori', 'disparag', 'dispens', 'dispit', 'display', 'displaycon', 'displeas', 'dispos', 'dispositivo', 'disppoint', 'disput', 'disregar', 'disregard', 'disrupt', 'diss', 'dissapoint', 'dissapointedi', 'dissapont', 'dissappoint', 'dissatisfact', 'dissatisfi', 'dissent', 'dissuad', 'distanc', 'distancia', 'distant', 'distinct', 'distinto', 'distort', 'distract', 'distraught', 'distress', 'distribu', 'distribución', 'distribuidor', 'distribut', 'distributor', 'distrust', 'disturb', 'ditch', 'ditto', 'diva', 'dive', 'divers', 'divin', 'divorc', 'dl', 'dlh', 'dling', 'dlsr', 'dns', 'doabl', 'doc', 'dock', 'doctor', 'document', 'dodg', 'dodgi', 'doe', 'doesent', 'doesnot', 'doest', 'dog', 'doggi', 'dolbi', 'doll', 'dollar', 'dolli', 'dome', 'domest', 'dominican', 'donat', 'dond', 'done', 'donot', 'dooblou', 'doodad', 'doodl', 'doom', 'door', 'dope', 'dorado', 'dorki', 'dormant', 'dorsn', 'dos', 'dose', 'dosent', 'dot', 'doubl', 'doubletwist', 'doubt', 'dowload', 'dowmload', 'down', 'downal', 'downer', 'downfal', 'downgrad', 'download', 'downloadedsometim', 'downloadingani', 'downlow', 'downright', 'downscreen', 'downsid', 'downsidesquick', 'downtown', 'downward', 'doy', 'doze', 'dozen', 'dr', 'drag', 'dragon', 'drain', 'drainag', 'drama', 'dramat', 'drastic', 'draw', 'drawback', 'drawer', 'drawn', 'dread', 'dream', 'dress', 'dri', 'drift', 'drill', 'drink', 'drive', 'driver', 'drm', 'droid', 'drone', 'drool', 'droop', 'drop', 'dropbox', 'dropdown', 'drope', 'droproof', 'drove', 'drower', 'drown', 'drs', 'drug', 'drum', 'drummond', 'drywal', 'dslr', 'dslrs', 'dts', 'du', 'dual', 'duarbl', 'duck', 'duct', 'dud', 'duda', 'dude', 'due', 'duel', 'dug', 'dull', 'dum', 'dumb', 'dumbphon', 'dummi', 'dump', 'dun', 'dunk', 'dunno', 'duo', 'duplic', 'dura', 'durabl', 'durablecon', 'durat', 'durationi', 'durationit', 'durn', 'duro', 'dust', 'dutch', 'duti', 'dvd', 'dwell', 'dynam', 'dysfunct', 'dytona', 'día', 'días', 'dólare', 'e', 'ea', 'eager', 'eagl', 'ear', 'earbud', 'eardrum', 'earli', 'earlier', 'earn', 'earphon', 'earpiec', 'earpod', 'earring', 'earth', 'eas', 'easi', 'easier', 'easierand', 'easiest', 'easili', 'easilyth', 'east', 'eastern', 'easypeasi', 'eat', 'eaten', 'eather', 'ebay', 'ebook', 'ec', 'ecaudor', 'ecel', 'ecelent', 'eceryth', 'echo', 'eclips', 'ecloseout', 'econom', 'economi', 'economico', 'ecpect', 'ecspeci', 'ecstat', 'ect', 'ecuador', 'ecxel', 'ecxelent', 'ed', 'edg', 'edgeyo', 'edgi', 'edit', 'editor', 'edof', 'edsel', 'eduardo', 'eeryth', 'eff', 'effect', 'effici', 'effort', 'effortless', 'eficient', 'eg', 'egg', 'egypt', 'eh', 'ehh', 'ehom', 'eight', 'eighti', 'either', 'eject', 'ejecutivo', 'eklat', 'el', 'elaps', 'elbow', 'eldar', 'elder', 'ele', 'elección', 'electr', 'electro', 'electron', 'electronica', 'electronico', 'electrónica', 'electrónico', 'eled', 'eleg', 'elegancia', 'elegant', 'element', 'elementari', 'eleph', 'elephon', 'eletron', 'elev', 'elig', 'elimin', 'eliminado', 'elit', 'ella', 'elli', 'ellison', 'ello', 'elong', 'els', 'elsewher', 'eltesorodelcielo', 'email', 'embalagem', 'embarass', 'embargo', 'embarrass', 'embed', 'embellish', 'emblem', 'emboss', 'embrass', 'embroid', 'emeg', 'emei', 'emensli', 'emerg', 'emergi', 'emir', 'emit', 'emoji', 'emoticon', 'empacado', 'empaquetado', 'empezo', 'emphas', 'emphasi', 'emphat', 'employ', 'employe', 'empresa', 'empti', 'emptor', 'emui', 'emul', 'en', 'enabl', 'encanta', 'encanto', 'encas', 'enclos', 'encod', 'encontr', 'encount', 'encourag', 'encrypt', 'encuentro', 'end', 'enderstern', 'endless', 'endors', 'endur', 'enemi', 'energi', 'eng', 'engag', 'engañado', 'engaño', 'engañosa', 'engend', 'engin', 'england', 'english', 'enhanc', 'enjoy', 'enlarg', 'enlong', 'enorm', 'enough', 'enought', 'enoughto', 'enseguida', 'ensquar', 'ensur', 'entend', 'enter', 'enterpris', 'entertain', 'enthusiasm', 'enthusiast', 'enthusiastsverdictknow', 'entic', 'entir', 'entitl', 'entonc', 'entr', 'entrada', 'entratar', 'entrega', 'entregado', 'entrego', 'entri', 'env', 'envi', 'envia', 'enviado', 'envian', 'enviar', 'enviaron', 'envidiarl', 'envien', 'envio', 'environ', 'environmentsth', 'envisag', 'envié', 'envió', 'envx', 'envío', 'epic', 'epilept', 'episod', 'epsilion', 'eq', 'equal', 'equat', 'equip', 'equipmet', 'equipo', 'equipoy', 'equival', 'equivil', 'equpo', 'era', 'eras', 'ere', 'ergonom', 'ergonomicsrecommend', 'eri', 'eric', 'ericson', 'ericsson', 'erlier', 'ernesto', 'errand', 'errat', 'erriccson', 'error', 'es', 'esa', 'escal', 'escap', 'escog', 'escribir', 'ese', 'esn', 'eso', 'esp', 'espacio', 'españold', 'espeak', 'especail', 'especi', 'especialist', 'especifiacion', 'especifica', 'especificacion', 'espect', 'espectacular', 'esperaba', 'esperado', 'esperando', 'esperaria', 'esperen', 'espero', 'esperé', 'espextativasi', 'espeñold', 'espn', 'espoo', 'esposa', 'essay', 'essenc', 'essenti', 'est', 'esta', 'estaba', 'estaban', 'establecido', 'establish', 'estacion', 'estado', 'estadotodo', 'estafa', 'estafado', 'estafador', 'estafadora', 'estan', 'estar', 'estaremo', 'estat', 'esthet', 'estim', 'estimado', 'estipulado', 'esto', 'estou', 'estoy', 'estra', 'estrella', 'estropeado', 'estuch', 'estudiant', 'estuvo', 'está', 'et', 'eta', 'etc', 'etern', 'ethernet', 'ethic', 'eu', 'euinternet', 'eur', 'euro', 'europ', 'european', 'europeo', 'eval', 'evalu', 'evan', 'evdo', 'eve', 'eveeveryth', 'even', 'event', 'eventhough', 'eventu', 'ever', 'evergreen', 'everi', 'everith', 'everlast', 'evernot', 'everso', 'evert', 'everth', 'everybodi', 'everyday', 'everynth', 'everyon', 'everyrh', 'everyt', 'everyth', 'everythingi', 'everythini', 'everythjng', 'everytim', 'everyway', 'everywher', 'evey', 'eveyon', 'eveyth', 'eveytim', 'evid', 'evo', 'evolut', 'evolv', 'evryth', 'evt', 'ex', 'exacerb', 'exact', 'exactali', 'exactament', 'exacti', 'exacto', 'exagger', 'examin', 'exampl', 'exceed', 'excel', 'excelent', 'excelenteproducto', 'excelenyt', 'excelet', 'excellen', 'excellent', 'excellet', 'excelletn', 'excelnt', 'excenl', 'excent', 'except', 'excess', 'exchang', 'excit', 'exclam', 'exclent', 'exclus', 'excurs', 'excus', 'exe', 'execel', 'execelent', 'execut', 'exel', 'exelent', 'exellen', 'exelnt', 'exhaust', 'exhibit', 'exhilar', 'exhiler', 'exhorto', 'exijo', 'exist', 'existantcustom', 'existantgo', 'existia', 'exit', 'exito', 'expact', 'expand', 'expandabiltiy', 'expans', 'expeci', 'expect', 'expectationtsexcel', 'expectativa', 'expectedi', 'expectedth', 'expedit', 'expens', 'exper', 'experi', 'experia', 'experienc', 'experiencia', 'experinc', 'expert', 'expet', 'expext', 'expir', 'explain', 'explan', 'explanatori', 'explicacion', 'explico', 'explod', 'explor', 'explot', 'exponenti', 'export', 'expos', 'exposur', 'expreienc', 'expresión', 'expreso', 'express', 'exspens', 'ext', 'extemen', 'extend', 'extens', 'extent', 'exterior', 'extern', 'extort', 'extra', 'extract', 'extran', 'extrang', 'extranjero', 'extraordinari', 'extraordinaria', 'extraordinay', 'extravag', 'extream', 'extrem', 'extrrnal', 'exvel', 'exyno', 'eye', 'eyelash', 'eyesight', 'eyeth', 'eyewear', 'ez', 'f', 'fabric', 'fabricado', 'fabricant', 'fabul', 'fabuloso', 'face', 'facebook', 'faceless', 'facetim', 'facil', 'facilit', 'fact', 'factor', 'factori', 'factura', 'fade', 'fail', 'failur', 'faint', 'fair', 'faith', 'fake', 'fakeberri', 'fall', 'fallar', 'fallen', 'fals', 'falsli', 'falta', 'faltaba', 'faltan', 'falto', 'fame', 'famili', 'familiar', 'famous', 'fan', 'fanat', 'fanboy', 'fanci', 'fantasi', 'fantast', 'fantist', 'far', 'farc', 'fare', 'farm', 'farp', 'farr', 'fart', 'farther', 'fascin', 'fascinado', 'fashion', 'fast', 'fastbatteri', 'fastcas', 'faster', 'fastest', 'fasti', 'fastidio', 'fastreali', 'fastso', 'fastsync', 'fat', 'father', 'fatigu', 'fault', 'faulti', 'faund', 'fave', 'favor', 'favorit', 'favour', 'favourit', 'fb', 'fear', 'fearless', 'feasibl', 'feat', 'feather', 'featur', 'featurecon', 'featuresbiggest', 'featuresth', 'februari', 'feburari', 'feburauri', 'fecal', 'fecha', 'fed', 'feder', 'fedex', 'fedora', 'fee', 'feed', 'feedback', 'feedbackhigh', 'feel', 'feet', 'feew', 'felcitacion', 'felicitaccion', 'feliz', 'fell', 'fellow', 'felt', 'fenc', 'ferrari', 'fester', 'fetch', 'fewer', 'fewest', 'fex', 'fgs', 'fhd', 'fi', 'fianc', 'fiance', 'fiancé', 'fiasco', 'fiber', 'fickl', 'fidd', 'fiddl', 'fidel', 'field', 'fierc', 'fifteen', 'fifth', 'fifti', 'fight', 'figo', 'figur', 'file', 'fill', 'film', 'filter', 'fin', 'final', 'finali', 'financ', 'financi', 'find', 'finder', 'fine', 'finei', 'finer', 'finest', 'fineth', 'finger', 'fingernail', 'fingerprint', 'fingertip', 'finicki', 'finish', 'finland', 'finley', 'finnali', 'finnicki', 'finnish', 'fio', 'fiqur', 'fir', 'fire', 'firefight', 'firefox', 'firend', 'firephon', 'firewal', 'firework', 'firm', 'firmwar', 'first', 'firt', 'firtt', 'fish', 'fist', 'fit', 'fitbit', 'fitment', 'fitnessth', 'five', 'fix', 'fixabl', 'fixer', 'fixi', 'fl', 'flabbergast', 'flac', 'flack', 'flad', 'flag', 'flagrant', 'flagship', 'flake', 'flap', 'flash', 'flashi', 'flashlight', 'flat', 'flavor', 'flaw', 'flawless', 'flawlessi', 'flawlesslook', 'flawlesslyther', 'fleck', 'fleksi', 'flew', 'flex', 'flexibl', 'flexislim', 'fli', 'flick', 'flicker', 'flight', 'flimsi', 'flip', 'flipcas', 'flipov', 'float', 'flood', 'floor', 'floorboard', 'flop', 'florida', 'flounder', 'flow', 'floweri', 'floyd', 'fluent', 'fluid', 'fluiditi', 'fluido', 'fluke', 'flung', 'flush', 'flute', 'flyer', 'fm', 'fmobi', 'fo', 'foam', 'focus', 'foe', 'fogi', 'foid', 'fold', 'folder', 'foley', 'folk', 'folleto', 'folli', 'follow', 'followingsolutionhowev', 'follw', 'fon', 'fond', 'fone', 'font', 'foobar', 'food', 'fool', 'foolish', 'foot', 'footbal', 'footprint', 'foray', 'forc', 'forcommun', 'ford', 'fore', 'forecast', 'foreground', 'foreign', 'foremost', 'forese', 'forest', 'forev', 'forewarn', 'forget', 'forgot', 'forgotten', 'foriegn', 'fork', 'form', 'forma', 'formal', 'format', 'former', 'formi', 'formid', 'formula', 'formular', 'forov', 'forth', 'forthcom', 'forti', 'fortun', 'forum', 'forward', 'fot', 'foto', 'fought', 'foul', 'foulbrood', 'found', 'four', 'foursquar', 'fourth', 'foward', 'fps', 'fr', 'fraction', 'fractur', 'fragil', 'fragment', 'frail', 'frame', 'framework', 'francisco', 'frank', 'fraud', 'fraudul', 'fray', 'freak', 'freakin', 'freakish', 'freckl', 'fred', 'free', 'freebi', 'freed', 'freedom', 'freedompop', 'freeken', 'freeway', 'freewir', 'freez', 'freezestart', 'french', 'frequenc', 'frequencycheck', 'frequent', 'fresh', 'freshman', 'freze', 'frezz', 'fri', 'friday', 'fridg', 'friend', 'friendlycon', 'frigg', 'friggin', 'frighten', 'frill', 'frilli', 'fring', 'frist', 'frize', 'frizz', 'frodo', 'frog', 'frommi', 'fron', 'front', 'frontal', 'frontier', 'frost', 'frowni', 'froyo', 'froze', 'frozen', 'frugal', 'frustat', 'frustrat', 'ft', 'fuciona', 'fucnciono', 'fuction', 'fudg', 'fue', 'fuera', 'fueron', 'fui', 'fuji', 'fulfil', 'full', 'fullest', 'fullfil', 'fulli', 'fumbl', 'fume', 'fun', 'funciana', 'funcion', 'funciona', 'funcionado', 'funcionalidad', 'funcionamiento', 'funcionando', 'funcionar', 'funcionaria', 'funcionaron', 'funciono', 'funcionou', 'funcionó', 'function', 'functionsamol', 'funcual', 'funda', 'funddo', 'fundo', 'funki', 'funni', 'funsiona', 'funtion', 'further', 'furthermor', 'furthest', 'fuse', 'fusion', 'fuss', 'fussi', 'futur', 'futura', 'futuro', 'fuz', 'fuze', 'fuzz', 'fuzzi', 'fué', 'fyi', 'fyith', 'fácil', 'g', 'gadget', 'gain', 'galapad', 'galaxi', 'galaxia', 'galaxyblu', 'galazi', 'galego', 'galexi', 'gallaxi', 'galleri', 'gallon', 'galor', 'gama', 'gambl', 'game', 'gamepadth', 'gamer', 'gamescom', 'gamesth', 'gamut', 'gap', 'garantia', 'garantía', 'garbag', 'garbl', 'garcia', 'garmin', 'garner', 'garrettr', 'garvenlak', 'gas', 'gash', 'gather', 'gaug', 'gave', 'gb', 'gba', 'gbrealli', 'gci', 'gd', 'gear', 'geat', 'geek', 'geekbench', 'geeki', 'geez', 'gel', 'gem', 'gemini', 'gen', 'generacion', 'general', 'generalcon', 'generalment', 'generat', 'generic', 'generous', 'genial', 'geniun', 'genius', 'gent', 'gental', 'gentl', 'gentleman', 'genuin', 'geohot', 'georgeta', 'gere', 'german', 'germani', 'gerri', 'gestur', 'gesutr', 'get', 'getitnow', 'getpeek', 'getpeeka', 'gevey', 'gf', 'ghana', 'ghost', 'ghz', 'gi', 'giant', 'gibberish', 'gie', 'gif', 'gifi', 'gift', 'gig', 'giga', 'gigabyt', 'gigahertz', 'gigant', 'giggl', 'gime', 'gimmick', 'gimmicki', 'gingerbread', 'ginorm', 'gione', 'gir', 'girar', 'girl', 'girlfriend', 'gish', 'gitch', 'github', 'give', 'given', 'gizmo', 'gizmotrad', 'glad', 'glam', 'glanc', 'glare', 'glass', 'glicki', 'glitch', 'glitchest', 'glitchi', 'glitzi', 'global', 'globali', 'glonass', 'glori', 'glorifi', 'glorious', 'glossi', 'glove', 'glow', 'glu', 'glucosamin', 'glue', 'gmail', 'gmap', 'gmi', 'gms', 'gmt', 'gnex', 'go', 'goal', 'goat', 'god', 'godaddi', 'goddaught', 'godsend', 'goe', 'goid', 'goin', 'gold', 'golden', 'golf', 'golp', 'gone', 'goo', 'goob', 'good', 'goodand', 'goodbonbueno', 'goodbut', 'goodby', 'goodcamera', 'goodexcept', 'goodfront', 'goodgoodbut', 'goodi', 'goodpleas', 'goodpow', 'goof', 'goofbal', 'goofi', 'goog', 'googd', 'googl', 'googlemap', 'googleplay', 'googlepreinstal', 'goord', 'gophon', 'gorgeous', 'gorilla', 'gorrilla', 'gosh', 'gosmart', 'gostei', 'got', 'gothru', 'goto', 'gotten', 'goug', 'govern', 'gprs', 'gps', 'gpsthat', 'gpswork', 'gpu', 'grab', 'gracia', 'graciass', 'graciastengo', 'graciess', 'gracious', 'grade', 'grader', 'gradual', 'graduat', 'graffiti', 'grain', 'graini', 'gram', 'grammar', 'gran', 'grand', 'grandad', 'grandaught', 'granddaught', 'grandfath', 'grandioso', 'grandkid', 'grandma', 'grandmoth', 'grandpa', 'grandpar', 'grandson', 'graneficiencia', 'granit', 'grannyand', 'grant', 'grante', 'graphic', 'graphit', 'grasp', 'grass', 'grat', 'gratament', 'grate', 'grati', 'graviti', 'gray', 'grea', 'greas', 'greasi', 'great', 'greatcal', 'greatcon', 'greatconssim', 'greater', 'greatest', 'greathello', 'greatish', 'greatscreen', 'greatt', 'greatth', 'greatthank', 'greattook', 'greattouchscreen', 'greec', 'green', 'greenifi', 'greet', 'greetingi', 'gres', 'grest', 'grey', 'greysold', 'grid', 'grief', 'grieta', 'grill', 'grimi', 'grin', 'grind', 'grip', 'gripe', 'grippi', 'gripspeedcamerafeaturesoveral', 'grooveip', 'gross', 'grossley', 'ground', 'group', 'groupcool', 'grow', 'grown', 'grps', 'grr', 'grumbl', 'gs', 'gsm', 'gt', 'gtalk', 'gthe', 'guam', 'guarante', 'guaranti', 'guard', 'guardian', 'guarente', 'guatemala', 'gucci', 'gud', 'guess', 'guest', 'guff', 'guid', 'guidelin', 'guinda', 'gummi', 'gun', 'gunk', 'gunmet', 'gunna', 'guru', 'gusta', 'gustaria', 'gusto', 'gut', 'gutter', 'guy', 'gvs', 'gx', 'gyga', 'gym', 'gyro', 'gyroscop', 'gzone', 'gémini', 'h', 'ha', 'haber', 'habia', 'habilitada', 'habit', 'habitu', 'hablar', 'hace', 'hacer', 'hacerl', 'hack', 'haff', 'haga', 'hah', 'haha', 'hahaha', 'hahahaha', 'haibucuo', 'haifa', 'hair', 'hairdryer', 'hairlin', 'haiti', 'half', 'halfway', 'hall', 'halleluja', 'halter', 'halv', 'hamburg', 'hammer', 'hamper', 'han', 'hand', 'handcent', 'handfre', 'handheld', 'handi', 'handicap', 'handl', 'handlebar', 'handset', 'handsfre', 'handsnow', 'handsom', 'handwrit', 'hang', 'hangout', 'hank', 'happen', 'happend', 'happi', 'happier', 'happili', 'haptic', 'harass', 'hard', 'harddriv', 'harder', 'hardest', 'hardi', 'hardley', 'hardtop', 'hardwar', 'hare', 'harley', 'harm', 'harsh', 'harshest', 'hasbatteri', 'hasbro', 'hasel', 'hassel', 'hassl', 'hasta', 'hastenth', 'hat', 'hate', 'hater', 'hav', 'havasu', 'have', 'havelifetim', 'havin', 'hawaii', 'hay', 'haya', 'haywir', 'hazard', 'hazzard', 'hazzl', 'hd', 'hdmi', 'hdr', 'hdtv', 'hdx', 'head', 'headach', 'headlight', 'headphon', 'headset', 'health', 'healthi', 'heap', 'hear', 'heard', 'heart', 'heartach', 'heartbeat', 'heartili', 'heat', 'heatsink', 'heav', 'heavehn', 'heavi', 'heavier', 'heaviest', 'heavili', 'heb', 'hebrew', 'hecha', 'hecho', 'heck', 'heed', 'heel', 'hefti', 'heftier', 'heheh', 'height', 'hek', 'held', 'hell', 'hella', 'hello', 'helloi', 'hellp', 'help', 'helpless', 'helpulf', 'hemano', 'henc', 'herefor', 'herei', 'hermoso', 'hernandez', 'hero', 'hes', 'hesit', 'het', 'hetro', 'hey', 'hi', 'hiccup', 'hice', 'hichup', 'hiciera', 'hicist', 'hidden', 'hide', 'hifi', 'hig', 'high', 'highend', 'higher', 'highest', 'highlight', 'hight', 'hightech', 'highupd', 'highway', 'hihg', 'hike', 'hill', 'hinder', 'hing', 'hint', 'hip', 'hire', 'histori', 'hit', 'hitch', 'hk', 'hmm', 'ho', 'hoarder', 'hobbi', 'hog', 'hoiur', 'hola', 'hold', 'holder', 'hole', 'holi', 'holiday', 'holland', 'holster', 'homag', 'home', 'homebrew', 'homelin', 'homepag', 'homescreen', 'homework', 'homm', 'honesli', 'honest', 'honesti', 'hong', 'honor', 'hood', 'hoodwink', 'hook', 'hoop', 'hoopla', 'hoot', 'hootsuit', 'hope', 'hopeless', 'hopper', 'hora', 'horizont', 'horn', 'horobl', 'horrend', 'horrib', 'horribl', 'horriblephon', 'horrid', 'horrifi', 'horrobl', 'horror', 'hors', 'horsepow', 'hospit', 'host', 'hostil', 'hot', 'hotel', 'hotkey', 'hotmail', 'hotshould', 'hotspot', 'hott', 'hotter', 'hour', 'hourscurr', 'hourswith', 'hous', 'houston', 'hover', 'howard', 'howev', 'howto', 'howtoroot', 'hp', 'hr', 'hrs', 'hsdpa', 'hspa', 'hsppi', 'htc', 'htcs', 'htcwell', 'html', 'http', 'https', 'huawei', 'hub', 'hubbi', 'hubiera', 'hubo', 'hudg', 'hue', 'huge', 'hugewel', 'huh', 'hulk', 'hulu', 'hum', 'human', 'humid', 'humong', 'humor', 'hump', 'hund', 'hundr', 'hung', 'hungri', 'hunt', 'hurri', 'hurt', 'husband', 'huug', 'huwaei', 'huzz', 'hw', 'hybrid', 'hype', 'i', 'ia', 'iam', 'iba', 'ibsid', 'ic', 'ice', 'iceland', 'icellphon', 'ici', 'icloud', 'iclud', 'icon', 'iconc', 'iconia', 'icould', 'id', 'idaho', 'idc', 'idea', 'ideal', 'ident', 'identif', 'identifi', 'ideolog', 'idid', 'idioma', 'idiosyncrasi', 'idiot', 'idk', 'idl', 'ido', 'idol', 'ie', 'ieav', 'iem', 'iemi', 'ien', 'iffi', 'ifyou', 'ignor', 'igrann', 'igual', 'ihad', 'iheartradio', 'ii', 'iif', 'iit', 'ike', 'ill', 'illinoi', 'illiter', 'illumin', 'illustr', 'ilogico', 'iluso', 'im', 'imaf', 'imag', 'imagen', 'imagin', 'imagino', 'imbed', 'ime', 'imei', 'imessag', 'imho', 'imi', 'imit', 'imitación', 'immacul', 'immatur', 'immedi', 'immediat', 'immens', 'immideat', 'immin', 'impact', 'impair', 'impati', 'impec', 'impecc', 'imped', 'impercept', 'imperfect', 'imping', 'implement', 'impli', 'implic', 'import', 'important', 'impos', 'imposibletodo', 'imposs', 'impract', 'impresionant', 'impreso', 'impress', 'imprint', 'improp', 'improv', 'improvis', 'impuls', 'in', 'inabl', 'inaccur', 'inact', 'inadequ', 'inadvert', 'inaud', 'inbox', 'inbuilt', 'inc', 'incarn', 'incas', 'incept', 'incess', 'inch', 'incid', 'incident', 'incl', 'inclin', 'includ', 'incluia', 'incluido', 'inclus', 'incluso', 'incluy', 'incom', 'incomodo', 'incompar', 'incompat', 'incompet', 'incomplet', 'incomprehens', 'incomvenient', 'inconsist', 'inconspicu', 'inconveni', 'inconvenienc', 'inconvenient', 'inconvi', 'incorpor', 'incorrect', 'increas', 'incred', 'increibl', 'increment', 'incur', 'inde', 'indecipher', 'independ', 'indestruct', 'index', 'indi', 'india', 'indian', 'indiano', 'indic', 'indicado', 'indigi', 'indiqu', 'indispens', 'indistinguish', 'individu', 'individualit', 'indonesia', 'indonesian', 'indoor', 'induct', 'industri', 'ineffectu', 'ineffici', 'inexpens', 'inexperi', 'inexperienc', 'infact', 'infam', 'infanc', 'infatu', 'infect', 'inferior', 'inflat', 'influenc', 'info', 'inform', 'informa', 'información', 'informationgreat', 'informo', 'infrar', 'infrequ', 'infuri', 'ing', 'ingl', 'ingléswa', 'ingress', 'inher', 'inherit', 'inhibit', 'inicial', 'inigual', 'init', 'initi', 'ink', 'inki', 'inkpad', 'inlaw', 'inlet', 'inmediat', 'inmediato', 'inmejor', 'inmers', 'inner', 'innoc', 'innov', 'inntim', 'innumer', 'inonc', 'inop', 'inoper', 'inopportun', 'inov', 'inpress', 'inprov', 'input', 'inquietud', 'inquir', 'inquiri', 'insan', 'insensit', 'insert', 'inset', 'insid', 'insignia', 'insist', 'inspect', 'inspir', 'inspit', 'instabl', 'instagram', 'instal', 'instala', 'instalada', 'instalar', 'instalarl', 'instalen', 'instanc', 'instant', 'instantan', 'instead', 'instinct', 'institut', 'instruct', 'instrument', 'instrumenti', 'insuffi', 'insuffici', 'insul', 'insult', 'insur', 'insurd', 'insólito', 'int', 'intack', 'intact', 'integr', 'intel', 'intelig', 'inteligent', 'intellectu', 'intellig', 'intend', 'intens', 'intent', 'intentar', 'inter', 'interact', 'interchang', 'interest', 'interet', 'interf', 'interfac', 'interfacecamera', 'interfaz', 'interfer', 'interim', 'interior', 'intermediari', 'intermitt', 'intern', 'interna', 'internationali', 'internet', 'internetcorn', 'internetthi', 'interpret', 'interrupt', 'interst', 'intervencion', 'intial', 'intimid', 'intl', 'intoler', 'intouch', 'intrigu', 'intro', 'introduc', 'intrud', 'intrus', 'intstal', 'intuit', 'invalid', 'invalu', 'invas', 'inventan', 'inventori', 'invertido', 'invest', 'investig', 'invis', 'invit', 'invoic', 'invoiceord', 'invok', 'involv', 'inward', 'io', 'ion', 'iot', 'ip', 'ipad', 'ipartstor', 'iphon', 'iphoneno', 'ipod', 'ipon', 'ipsand', 'ir', 'irak', 'ireland', 'iren', 'iri', 'irish', 'iroam', 'iron', 'irrelev', 'irremov', 'irrepar', 'irrespect', 'irrespons', 'irresponsabilidad', 'irrit', 'irulu', 'ise', 'ish', 'isjust', 'island', 'isnot', 'iso', 'isol', 'isopropyl', 'israel', 'issu', 'issuesveri', 'isync', 'itali', 'italian', 'itat', 'itdeliv', 'iteam', 'item', 'iter', 'iterim', 'ith', 'ithi', 'ithought', 'iti', 'itif', 'itit', 'itouch', 'itpro', 'itregard', 'itsecond', 'itslef', 'itt', 'itun', 'itveri', 'itś', 'ius', 'iv', 'iwant', 'iwatch', 'iwth', 'iy', 'izquierdo', 'j', 'ja', 'jack', 'jacket', 'jackpot', 'jailbreak', 'jailbroken', 'jajaja', 'jam', 'jamaica', 'jamaicaso', 'jame', 'jan', 'janeiro', 'janki', 'januari', 'japan', 'japanes', 'java', 'jave', 'javelin', 'jawbon', 'jayn', 'jazz', 'jbl', 'jdi', 'jealous', 'jean', 'jeep', 'jelli', 'jellybean', 'jenni', 'jerki', 'jerold', 'jerri', 'jersey', 'jest', 'jesus', 'jet', 'jiam', 'jim', 'jimmi', 'jist', 'jitterbug', 'jitteri', 'jnform', 'job', 'joe', 'joetestedthat', 'joget', 'john', 'joiku', 'joke', 'jold', 'jolt', 'jonathan', 'jose', 'joseph', 'josh', 'jostl', 'journal', 'joy', 'joycel', 'joystick', 'jp', 'jpg', 'jpn', 'jr', 'judg', 'judgement', 'juego', 'juggernaught', 'juggl', 'juguet', 'juic', 'jule', 'juli', 'jumbl', 'jump', 'junctur', 'june', 'jungl', 'junk', 'junker', 'junki', 'juri', 'jus', 'juse', 'justament', 'justic', 'justifi', 'jvc', 'k', 'kali', 'kansa', 'karat', 'karen', 'karma', 'kat', 'katspeak', 'kayak', 'kcal', 'keen', 'keep', 'keeper', 'keeran', 'keerkeer', 'kelt', 'ken', 'kentucki', 'kenya', 'kept', 'kernel', 'kewler', 'key', 'keybaord', 'keyboard', 'keyboardworst', 'keypad', 'keystrok', 'keyword', 'kick', 'kickstand', 'kid', 'kie', 'kik', 'kill', 'killer', 'kilocalori', 'kilometraj', 'kim', 'kina', 'kind', 'kindl', 'kinet', 'king', 'kingo', 'kingroot', 'kingston', 'kink', 'kiosk', 'kirin', 'kiryat', 'kit', 'kitchen', 'kitkat', 'kitti', 'kk', 'klutz', 'km', 'kms', 'knee', 'knew', 'knife', 'kno', 'knock', 'knockoff', 'know', 'knowledg', 'known', 'knowth', 'knox', 'kocaso', 'kolbi', 'kong', 'konw', 'kool', 'korea', 'korean', 'kosovo', 'kowloon', 'kp', 'krazer', 'krzr', 'ksl', 'kt', 'kudo', 'kuwait', 'kwirk', 'ky', 'kyocera', 'l', 'la', 'lab', 'label', 'labl', 'laboratori', 'labyrinth', 'lacer', 'lack', 'lacklust', 'lacklustr', 'ladder', 'laden', 'ladi', 'lado', 'lag', 'lagandroid', 'laggi', 'laggin', 'laggy', 'lagi', 'lagyou', 'laid', 'lair', 'lake', 'lame', 'lamentablement', 'lamp', 'lan', 'land', 'landlin', 'landlord', 'landscap', 'languag', 'lanyard', 'lap', 'lapiz', 'laps', 'laptop', 'larg', 'largeif', 'larger', 'largest', 'las', 'laser', 'last', 'lastest', 'lastin', 'lastpass', 'lat', 'latch', 'late', 'latenc', 'later', 'latest', 'latex', 'latin', 'latino', 'latinoamerica', 'latinoamerican', 'latter', 'lattitud', 'laugh', 'laughabl', 'laughter', 'launch', 'launcher', 'law', 'lawn', 'lawnmow', 'lay', 'layer', 'layman', 'layout', 'lazi', 'lblahblah', 'lblha', 'lcd', 'le', 'lead', 'leader', 'leagu', 'leak', 'lean', 'leaner', 'leap', 'lear', 'leari', 'learn', 'learnt', 'leas', 'least', 'leather', 'leatherlik', 'leav', 'led', 'lee', 'leer', 'leeri', 'left', 'leg', 'legaci', 'legal', 'legibl', 'legit', 'legitim', 'lego', 'leica', 'leido', 'leisur', 'lemfo', 'lemon', 'lemonad', 'len', 'lend', 'lengh', 'length', 'lengthi', 'lenguaj', 'lenovo', 'lens', 'lent', 'lenta', 'lento', 'leona', 'les', 'less', 'lessen', 'lesser', 'lesson', 'lest', 'let', 'letdown', 'letra', 'letter', 'levanta', 'levantava', 'level', 'lever', 'lexington', 'leyendo', 'lg', 'lglg', 'lgs', 'liabil', 'liber', 'liberado', 'liberia', 'liberti', 'libiano', 'libr', 'librari', 'libya', 'licens', 'lick', 'lid', 'lie', 'lieu', 'life', 'lifeawesom', 'lifeha', 'lifei', 'lifelast', 'lifelin', 'lifelog', 'lifeproff', 'lifeproof', 'lifesav', 'lifespan', 'lifestyl', 'lifethos', 'lifetim', 'lifevivo', 'lifey', 'lift', 'ligera', 'ligero', 'light', 'lighten', 'lighter', 'lightest', 'lightingscreen', 'lightn', 'lightsroot', 'lightweight', 'ligth', 'like', 'likeit', 'liki', 'likj', 'lil', 'lime', 'limit', 'limitando', 'limitant', 'lindo', 'line', 'linea', 'linear', 'liner', 'lineup', 'linger', 'link', 'linkedin', 'linoleum', 'lint', 'linux', 'lio', 'lip', 'liquid', 'list', 'listen', 'lit', 'lite', 'liter', 'lithium', 'litter', 'littk', 'littl', 'littlworng', 'live', 'liveabl', 'liviano', 'livid', 'lk', 'llamada', 'llamar', 'llc', 'llega', 'llegaban', 'llegada', 'llegado', 'llegan', 'llegar', 'llegaron', 'llego', 'llegu', 'lleguo', 'llegó', 'lleva', 'llevar', 'lleve', 'lmao', 'ln', 'lo', 'load', 'loader', 'loberado', 'local', 'locat', 'lock', 'lockd', 'lockdown', 'locker', 'lockup', 'lodg', 'loe', 'log', 'logarithm', 'logic', 'login', 'logist', 'logo', 'lol', 'loland', 'lolipop', 'lolli', 'lollipop', 'london', 'lone', 'long', 'longer', 'longest', 'longev', 'loo', 'look', 'lookalik', 'looker', 'lookout', 'loop', 'loos', 'looser', 'loov', 'lorecomiendo', 'los', 'lose', 'loss', 'lossless', 'lost', 'lot', 'lote', 'lotr', 'lotsof', 'lotus', 'loud', 'loudd', 'louder', 'loudest', 'loudspeak', 'loui', 'loung', 'lousi', 'lovabl', 'love', 'lover', 'lovesaid', 'lovin', 'low', 'lower', 'lowest', 'loweveryth', 'lowlight', 'loyal', 'loyalist', 'loyalti', 'lozeng', 'ls', 'lte', 'ltebatteri', 'luce', 'lucia', 'luck', 'lucki', 'luckili', 'luddit', 'luego', 'luff', 'lug', 'lugar', 'lumi', 'lumia', 'lumina', 'lumix', 'lunar', 'lunch', 'lust', 'luster', 'luv', 'luvin', 'luxuri', 'luz', 'lwp', 'lye', 'lyft', 'lync', 'lyric', 'línea', 'lóve', 'mac', 'macbook', 'macedonian', 'machin', 'maci', 'macro', 'mad', 'madden', 'made', 'madrid', 'magapu', 'magazin', 'magic', 'magnet', 'magnetomet', 'magnif', 'magnifi', 'magnific', 'mah', 'mai', 'mail', 'mailbox', 'mailismo', 'main', 'mainstream', 'maintain', 'maj', 'majest', 'major', 'make', 'makebsur', 'maker', 'mal', 'mala', 'maldiv', 'male', 'malfunct', 'mali', 'malisimo', 'mall', 'malo', 'malwar', 'mama', 'man', 'manag', 'manageri', 'mand', 'mandar', 'mandaron', 'mandatori', 'manejar', 'manejo', 'manera', 'maneuver', 'mangl', 'mango', 'manhol', 'mani', 'maniac', 'manifest', 'manila', 'manipul', 'manipularlo', 'manner', 'mano', 'mansilla', 'manten', 'manu', 'manual', 'manualexact', 'manualso', 'manuel', 'manufactor', 'manufactur', 'manufacutr', 'manía', 'map', 'mapquest', 'mapsamong', 'mar', 'maracaibo', 'maravilla', 'maravilloso', 'marca', 'march', 'margin', 'marin', 'mark', 'market', 'marketin', 'marketplac', 'markup', 'marri', 'marriag', 'marriaga', 'marshmallow', 'marshmallowif', 'marshmellow', 'mart', 'martin', 'martirio', 'marvel', 'marvelth', 'mas', 'masef', 'mash', 'mashmallow', 'masquerad', 'mass', 'massag', 'massiv', 'masstechtron', 'master', 'mastercard', 'masterpeic', 'match', 'matchth', 'mate', 'mater', 'materi', 'math', 'matrix', 'matt', 'matter', 'matur', 'max', 'maxim', 'maximo', 'maximum', 'maximun', 'maxiumum', 'maxthon', 'maxx', 'may', 'mayb', 'mayo', 'mayor', 'maze', 'mb', 'mbps', 'mcgiver', 'md', 'mdr', 'mean', 'meaniatur', 'meant', 'meantim', 'meanwhil', 'measur', 'meati', 'mechan', 'med', 'media', 'mediant', 'mediapad', 'mediatek', 'medic', 'mediocr', 'mediocrecamera', 'mediocrescreen', 'medit', 'medium', 'mee', 'meego', 'meet', 'meg', 'mega', 'megabyt', 'megapixel', 'meh', 'mei', 'meid', 'mejor', 'mejorado', 'mejorar', 'melt', 'melta', 'mem', 'member', 'memo', 'memor', 'memori', 'memoria', 'memorycamera', 'memorystick', 'men', 'menciona', 'mencionado', 'meni', 'menno', 'meno', 'mensaj', 'mensajeria', 'ment', 'mental', 'mention', 'menu', 'menus', 'menusi', 'menú', 'meo', 'mercado', 'mercancia', 'merced', 'merchandis', 'merchant', 'merci', 'mere', 'merg', 'mes', 'mesd', 'mese', 'meso', 'mess', 'messag', 'messagingmenu', 'messeng', 'messi', 'messup', 'met', 'meta', 'metal', 'meter', 'metert', 'method', 'meto', 'metodo', 'metric', 'metro', 'metropc', 'metrotub', 'metrowest', 'mex', 'mexican', 'mexico', 'mfg', 'mhl', 'mhz', 'mi', 'miami', 'mian', 'mic', 'mica', 'mice', 'mico', 'micro', 'microcard', 'microcomput', 'microfib', 'microphon', 'microsd', 'microsdxc', 'microsim', 'microsimcard', 'microsoft', 'microssdhc', 'microusb', 'mid', 'middl', 'midnight', 'midscal', 'midst', 'midway', 'might', 'mighti', 'mightytext', 'migrat', 'mike', 'mild', 'mile', 'mileag', 'militari', 'millenium', 'millimet', 'million', 'millwright', 'milspec', 'mimgn', 'min', 'mind', 'mine', 'minecraft', 'miner', 'mini', 'minihttp', 'minim', 'minimalist', 'minimum', 'minitur', 'minor', 'minsoo', 'mint', 'minth', 'mintu', 'minus', 'minut', 'minuto', 'mio', 'miracast', 'miracl', 'mirco', 'mirror', 'mis', 'miscellan', 'mischiev', 'miser', 'misfit', 'misfortun', 'mishap', 'misinform', 'misl', 'mislead', 'misleadingno', 'misma', 'mismatch', 'mismo', 'misplac', 'misrepres', 'misrepresent', 'miss', 'mission', 'missionari', 'mistak', 'mistaken', 'mistyp', 'misunderstand', 'misus', 'mitig', 'mix', 'mixtur', 'mixup', 'mkv', 'mm', 'mms', 'mmsc', 'mmsserver', 'mo', 'mobik', 'mobil', 'mobildelta', 'mobilefront', 'mobilesfront', 'mobileuncl', 'moblil', 'mod', 'mode', 'modeapl', 'modecon', 'model', 'modelo', 'modem', 'moder', 'modern', 'modest', 'modif', 'modifi', 'modificationsnotesth', 'modo', 'modul', 'modular', 'moistur', 'mojo', 'mold', 'moldi', 'moldova', 'moleskin', 'molesto', 'mom', 'moment', 'momentarili', 'momento', 'mon', 'monday', 'money', 'moneyaft', 'moneyca', 'moneypleas', 'moneyworth', 'monica', 'monitor', 'mono', 'monopoli', 'monopolistmi', 'monster', 'month', 'monthit', 'monthsal', 'monthsbatteryi', 'monthsi', 'monthsth', 'monthsunlock', 'montón', 'monuth', 'mood', 'moodi', 'moon', 'mophi', 'mor', 'moreearpiec', 'moreintegr', 'moreov', 'morn', 'mos', 'most', 'mostro', 'mot', 'moterola', 'moth', 'mother', 'motherboard', 'motion', 'motiv', 'motivo', 'moto', 'motog', 'motor', 'motorcycl', 'motorola', 'motorolla', 'mount', 'mountain', 'mountin', 'mous', 'mousepad', 'mouth', 'move', 'movement', 'mover', 'movi', 'moviestar', 'movil', 'movilnet', 'movistar', 'mow', 'mp', 'mpcs', 'mph', 'mpx', 'mr', 'mrs', 'ms', 'msd', 'msg', 'msgaccount', 'msgs', 'msm', 'mths', 'mtn', 'mtp', 'much', 'mucha', 'mucho', 'muchtuch', 'muck', 'mud', 'muddi', 'muerta', 'muev', 'muffl', 'mujer', 'multi', 'multiband', 'multilanguag', 'multilenguaj', 'multilevel', 'multimedia', 'multipl', 'multipli', 'multipoint', 'multipurpos', 'multitask', 'multitud', 'mum', 'mundial', 'mundo', 'mura', 'murder', 'museum', 'mushroom', 'music', 'musica', 'musici', 'musicyou', 'muss', 'must', 'muster', 'mute', 'mutual', 'muuy', 'muve', 'muy', 'muybueno', 'mvc', 'mvno', 'myriad', 'myspac', 'mysteri', 'mytouch', 'mywit', 'más', 'máximo', 'mérida', 'móvil', 'n', 'naa', 'nada', 'nag', 'nail', 'nake', 'naked', 'nam', 'name', 'namesak', 'nanni', 'nano', 'nanogenarian', 'nari', 'narrow', 'nas', 'nasti', 'natcom', 'nation', 'nativ', 'natur', 'naught', 'nav', 'naveg', 'navega', 'navegacion', 'naveh', 'navi', 'navig', 'navteq', 'naysay', 'nd', 'ndroid', 'near', 'nearbi', 'nearer', 'nearest', 'neat', 'necesari', 'necesario', 'necesidad', 'necesita', 'necess', 'necessari', 'necessarili', 'necessit', 'neck', 'neckloop', 'necsario', 'ned', 'need', 'needeasi', 'neededprocessor', 'needi', 'needl', 'needless', 'needsand', 'neethrohd', 'neez', 'neg', 'negat', 'negativi', 'neglect', 'neglig', 'negocio', 'negoti', 'negro', 'negtiv', 'neic', 'neighbor', 'neighbourhood', 'neither', 'neo', 'neon', 'nephew', 'nerd', 'nerv', 'nervous', 'nes', 'net', 'netflix', 'nethomepag', 'nethunt', 'netwok', 'network', 'networki', 'networksaccord', 'neuro', 'neutral', 'never', 'neverheless', 'nevertheless', 'new', 'newborn', 'newer', 'newest', 'newli', 'news', 'newsfe', 'newstand', 'newtrend', 'next', 'nextbit', 'nextbook', 'nexus', 'neywork', 'nfc', 'nfcmost', 'nfcwas', 'nfs', 'ngp', 'ni', 'nice', 'nicer', 'nicerblu', 'nicethank', 'niceti', 'nich', 'nick', 'nicley', 'niec', 'nifti', 'niftiest', 'nigeria', 'night', 'nightmar', 'nightstand', 'nighttim', 'nightvis', 'nigun', 'niguna', 'niic', 'nike', 'nikkon', 'nikon', 'nimbl', 'nimbuzz', 'nine', 'nineti', 'ningun', 'ninguna', 'ninguno', 'ningún', 'nit', 'nitidez', 'nitpick', 'nix', 'nj', 'nlp', 'nn', 'nnice', 'noaccess', 'noah', 'nobl', 'nobodi', 'nodobi', 'nois', 'noiseand', 'noisi', 'nok', 'noka', 'nokai', 'nokia', 'nokiamap', 'nole', 'nome', 'nomin', 'non', 'none', 'nonessenti', 'nonetheless', 'nonexist', 'nonexistenta', 'nonfunct', 'nonremov', 'nonsens', 'nonstop', 'noo', 'noon', 'noot', 'nope', 'norm', 'normal', 'north', 'norway', 'nos', 'noscratch', 'nosotro', 'nostalgia', 'not', 'nota', 'notabl', 'notat', 'notch', 'note', 'notebook', 'notepad', 'noteworthi', 'notfif', 'notget', 'noth', 'nothin', 'nothingh', 'nothingvto', 'notiabl', 'notic', 'noticia', 'notif', 'notifi', 'notificaba', 'notim', 'notion', 'notn', 'notno', 'noto', 'notori', 'nougat', 'nov', 'nova', 'novedad', 'novelti', 'novemb', 'nowaday', 'nowher', 'noww', 'nsosotro', 'nt', 'nubia', 'nueva', 'nuevo', 'nuisanc', 'number', 'numbersmemori', 'numer', 'nunca', 'nurs', 'nut', 'nuthin', 'nutshel', 'nw', 'ny', 'nyc', 'nz', 'oaki', 'oakland', 'ob', 'obiusli', 'object', 'oblig', 'obligatori', 'oblong', 'obnoxi', 'obscen', 'obscur', 'observ', 'observacion', 'obsess', 'obsolet', 'obstacl', 'obtain', 'obtendrán', 'obtengo', 'obtrus', 'obvious', 'ocas', 'occas', 'occasion', 'occupi', 'occur', 'occurr', 'ocean', 'oct', 'octa', 'octacor', 'octan', 'octob', 'ocurr', 'od', 'odd', 'oder', 'odor', 'oem', 'oemforcheap', 'ofan', 'ofcourc', 'ofcours', 'oferta', 'ofertado', 'oferto', 'off', 'offend', 'offens', 'offer', 'offic', 'offici', 'offlin', 'offno', 'offshor', 'offspr', 'offwat', 'ofrecida', 'ofrecía', 'often', 'ofth', 'oh', 'ohh', 'ohio', 'ohon', 'oil', 'ojosaludo', 'ok', 'okay', 'okey', 'old', 'older', 'ole', 'oleophob', 'olf', 'omg', 'on', 'onboard', 'ondata', 'one', 'onedr', 'onedrop', 'onenot', 'oneplus', 'oneself', 'onetouch', 'ongo', 'onh', 'onki', 'onlin', 'onlydraw', 'onnth', 'ono', 'onoli', 'onon', 'ontario', 'onth', 'onto', 'onward', 'oo', 'oob', 'oober', 'oogl', 'ooh', 'oohh', 'ooma', 'oop', 'ooz', 'op', 'opaqu', 'opcion', 'opción', 'open', 'opengl', 'oper', 'opera', 'operador', 'operadora', 'operadoradora', 'operateworth', 'operatingredi', 'operationdu', 'operativa', 'operativo', 'opertun', 'opinio', 'opinion', 'opinon', 'opon', 'oportunidad', 'opportun', 'oppos', 'opposit', 'opt', 'optic', 'optim', 'optimist', 'optimum', 'optimus', 'option', 'optionscon', 'optionsdo', 'optionssoftwar', 'optionsworth', 'optionto', 'optus', 'orang', 'orbit', 'ord', 'order', 'orderd', 'orderinst', 'ordinari', 'oregon', 'org', 'organ', 'organiz', 'orgin', 'orher', 'orient', 'origen', 'origin', 'original', 'originalbewar', 'orlando', 'orphan', 'os', 'osbad', 'ose', 'osea', 'ota', 'otg', 'other', 'othera', 'otherwis', 'otra', 'otro', 'otter', 'otterbox', 'ottrbox', 'ou', 'ought', 'ounc', 'ouput', 'oustand', 'out', 'outag', 'outback', 'outbox', 'outcom', 'outdat', 'outdon', 'outdoor', 'outer', 'outfit', 'outgo', 'outher', 'outing', 'outlast', 'outlet', 'outlin', 'outlook', 'outonc', 'outperform', 'output', 'outrag', 'outright', 'outset', 'outshin', 'outsid', 'outstand', 'outta', 'outter', 'outterbox', 'outweigh', 'oveal', 'oven', 'over', 'overag', 'overal', 'overboard', 'overcom', 'overdr', 'overexpos', 'overh', 'overhaul', 'overhead', 'overheat', 'overjoy', 'overkil', 'overlaid', 'overlap', 'overlay', 'overload', 'overlook', 'overnight', 'overpr', 'overpric', 'overr', 'oversatur', 'overse', 'oversea', 'oversear', 'oversight', 'overtim', 'overus', 'overview', 'overwhelm', 'overwrit', 'ovi', 'ow', 'owe', 'owen', 'own', 'owner', 'ownership', 'oxygen', 'oz', 'p', 'pa', 'pace', 'paciencia', 'pacif', 'pack', 'packag', 'packet', 'pad', 'pagar', 'page', 'pageplus', 'pagepluscellular', 'pagina', 'pagu', 'pai', 'paid', 'pain', 'painless', 'paint', 'painter', 'pair', 'pais', 'pak', 'pakistan', 'palabra', 'pale', 'palm', 'palmtop', 'paltri', 'pan', 'panason', 'pandora', 'panel', 'pangea', 'panic', 'panick', 'panoram', 'panorama', 'pant', 'pantalla', 'pantech', 'panthi', 'paper', 'paperi', 'paperweight', 'paperwork', 'paquet', 'par', 'para', 'parad', 'paragraph', 'paralizado', 'paralyz', 'paramet', 'paranoid', 'paraphras', 'parcel', 'pare', 'parec', 'parecido', 'pareciera', 'parent', 'pari', 'park', 'parkinson', 'part', 'partak', 'parti', 'partial', 'particip', 'particular', 'particulari', 'partit', 'partner', 'partnership', 'paso', 'pass', 'passabl', 'passeng', 'passport', 'password', 'past', 'patch', 'patent', 'path', 'pathet', 'pathway', 'patienc', 'patient', 'patrol', 'pattern', 'paus', 'pavement', 'pax', 'pay', 'paycheck', 'paye', 'payg', 'paygo', 'payment', 'paypal', 'paí', 'pc', 'pcs', 'pda', 'pdf', 'pdt', 'peac', 'peach', 'peak', 'pearl', 'pebbl', 'pecfect', 'peculiar', 'peddl', 'pedi', 'pedido', 'pediel', 'pedomet', 'peek', 'peel', 'peep', 'peer', 'peerfect', 'pefect', 'pegado', 'peic', 'pen', 'pena', 'penalti', 'pencil', 'pend', 'penetr', 'penni', 'pensar', 'penta', 'peool', 'peopl', 'peoplein', 'peor', 'peppi', 'pequeña', 'pequeño', 'per', 'percent', 'percentag', 'percept', 'perch', 'percib', 'perdi', 'perdí', 'perect', 'perfec', 'perfeccion', 'perfecct', 'perfect', 'perfecta', 'perfectament', 'perfectionist', 'perfecto', 'perfeita', 'perfet', 'perfic', 'perfom', 'perform', 'performac', 'performancespecificationsdesignqualitymoto', 'performanceth', 'perfrct', 'perfum', 'perhap', 'period', 'perk', 'perman', 'permiss', 'permit', 'permiten', 'pero', 'perod', 'perplex', 'persist', 'person', 'persona', 'personalizada', 'personnel', 'perspect', 'pertain', 'pertect', 'perturb', 'peru', 'pervious', 'pesa', 'pesado', 'pesar', 'peski', 'peso', 'petit', 'petti', 'pfone', 'pgb', 'pgd', 'ph', 'phablet', 'phantom', 'phase', 'phd', 'phenomen', 'phenomin', 'philadelphia', 'philippin', 'philosophi', 'phine', 'phkne', 'phn', 'phne', 'pho', 'phobe', 'phoe', 'phoen', 'phome', 'phon', 'phone', 'phoneblet', 'phonebook', 'phonecan', 'phonei', 'phoneit', 'phoneless', 'phonenic', 'phonenot', 'phonepretti', 'phonepro', 'phonerun', 'phonesdu', 'phoneshop', 'phonesi', 'phoneswifi', 'phonet', 'phonetak', 'phonethank', 'phoneto', 'phoneveri', 'phonewith', 'phoney', 'photo', 'photodj', 'photograph', 'photographerus', 'photographi', 'photon', 'photosha', 'photoshop', 'photosohop', 'photosstandard', 'phrase', 'physic', 'physyc', 'piano', 'pic', 'picasa', 'picayunish', 'pice', 'pick', 'picki', 'pictur', 'picturemil', 'picturesoften', 'pide', 'pidio', 'piec', 'piggi', 'piggyback', 'pila', 'pile', 'pimp', 'pimpl', 'pin', 'pinch', 'ping', 'pink', 'pinkard', 'pinki', 'pinkish', 'pinterest', 'piss', 'pitch', 'pitfal', 'piti', 'pix', 'pixal', 'pixel', 'pixi', 'pixl', 'pizza', 'pl', 'place', 'placement', 'placer', 'plagu', 'plain', 'plan', 'plane', 'planet', 'plant', 'plantron', 'plasma', 'plaster', 'plastic', 'plasticki', 'plataforma', 'plate', 'platelet', 'platform', 'platfrom', 'platinum', 'play', 'playback', 'player', 'playingdo', 'playlist', 'playstat', 'playstor', 'playtim', 'plea', 'pleansant', 'pleas', 'pleasant', 'pleasur', 'plenament', 'plenti', 'plex', 'plexiglass', 'pli', 'plier', 'pliz', 'ploy', 'pls', 'pluck', 'plug', 'plugabl', 'plugin', 'plum', 'plumb', 'plumber', 'plung', 'plus', 'plusaft', 'plz', 'pm', 'pma', 'pnonecov', 'poca', 'pocibl', 'pocket', 'pocketcannot', 'pocketcon', 'pocketdo', 'poco', 'pod', 'podcast', 'podemo', 'poder', 'podria', 'podrían', 'podía', 'podían', 'poepl', 'poetic', 'point', 'pointer', 'pointless', 'pointther', 'poke', 'pokemon', 'pokémon', 'polar', 'polaroid', 'pole', 'polic', 'polici', 'polish', 'polit', 'polka', 'pollut', 'polycarbon', 'ponad', 'ponder', 'pone', 'poner', 'poni', 'pooff', 'pooh', 'pool', 'poop', 'poor', 'pop', 'popul', 'popular', 'popup', 'por', 'porch', 'pore', 'porn', 'porno', 'pornstar', 'porqu', 'porquem', 'porrt', 'porsch', 'port', 'portabl', 'portal', 'portion', 'portrait', 'portray', 'portug', 'portugues', 'pos', 'pose', 'poseen', 'posh', 'posibl', 'posit', 'positivo', 'possess', 'possibl', 'post', 'postag', 'postal', 'poster', 'postiv', 'potenti', 'pouch', 'pound', 'powder', 'powelemon', 'power', 'poweramp', 'powerdown', 'powerful', 'powerhous', 'powerpoint', 'powersav', 'powervr', 'pp', 'ppi', 'ppiimprov', 'ppl', 'ppopoor', 'practic', 'practico', 'prada', 'prais', 'pray', 'prazo', 'pre', 'preced', 'precept', 'precio', 'precious', 'precis', 'preciso', 'predat', 'predecessor', 'predict', 'predomet', 'pref', 'prefac', 'prefect', 'prefecto', 'prefer', 'preferencia', 'prefix', 'preform', 'pregunta', 'preinstal', 'preistal', 'preload', 'prematur', 'premio', 'premis', 'premium', 'premiun', 'preocupacion', 'preown', 'prepaid', 'prepar', 'prepay', 'presal', 'presenc', 'present', 'presentaciòn', 'presentación', 'presento', 'presentó', 'preserv', 'preset', 'presid', 'presionarla', 'press', 'pressur', 'pressv', 'prestacion', 'prestado', 'prestan', 'prestigio', 'presto', 'presum', 'preteen', 'pretend', 'pretens', 'pretti', 'prettymuch', 'prevent', 'previament', 'preview', 'previous', 'prevista', 'previsto', 'pri', 'price', 'priceani', 'pricehowev', 'priceless', 'pricelov', 'pricepro', 'pricequalitydu', 'pricestrong', 'pricetak', 'pricey', 'prici', 'pricier', 'pride', 'primari', 'primarili', 'prime', 'primera', 'primerament', 'primero', 'primit', 'princip', 'print', 'printer', 'prior', 'priorit', 'prioriti', 'priorti', 'prise', 'prism', 'pristin', 'prius', 'priv', 'privaci', 'privat', 'prive', 'privet', 'privileg', 'prize', 'prl', 'pro', 'proababl', 'proactiv', 'prob', 'probabilidad', 'probabl', 'probado', 'probali', 'probarlo', 'probe', 'probkem', 'probl', 'problelm', 'problem', 'problema', 'problemat', 'problemseveryth', 'problemsit', 'problemunlok', 'problemwith', 'probé', 'procedur', 'proceed', 'procesador', 'process', 'processor', 'processorfingerprint', 'processornic', 'processorpurchas', 'processorth', 'proctect', 'produc', 'product', 'productarr', 'productgo', 'producti', 'productno', 'producto', 'productu', 'producut', 'produto', 'profesion', 'profess', 'profession', 'profil', 'profit', 'program', 'programa', 'programm', 'progress', 'progucto', 'prohibit', 'project', 'projector', 'prolbem', 'prolli', 'prolong', 'prombl', 'promblem', 'promis', 'prommis', 'promo', 'promot', 'prompt', 'promptlysel', 'promsi', 'promt', 'prone', 'prong', 'pronounc', 'pronta', 'pronto', 'pronunci', 'proof', 'prop', 'propens', 'proper', 'properl', 'propert', 'properti', 'propia', 'propitiatori', 'proportionatedit', 'proposit', 'proprietari', 'proprieti', 'pros', 'prosa', 'proscan', 'prosesado', 'prosesar', 'prosgood', 'prosgreat', 'proshot', 'prospect', 'protección', 'protect', 'protector', 'protectorhead', 'protectorne', 'protectorth', 'protocol', 'protrud', 'proud', 'provd', 'prove', 'proveedor', 'proven', 'provid', 'prowess', 'proxi', 'proxim', 'proxima', 'prudact', 'prudect', 'pruduct', 'pruebo', 'ps', 'psp', 'psych', 'pt', 'ptp', 'pts', 'ptsd', 'pu', 'pub', 'public', 'publicación', 'publicidad', 'publish', 'puchas', 'pude', 'pue', 'pued', 'pueda', 'pueden', 'puerta', 'puerto', 'puffin', 'pulanna', 'pull', 'puls', 'pulsat', 'pump', 'punch', 'punctual', 'punctuat', 'puni', 'punish', 'punto', 'puntual', 'puppi', 'purcha', 'purchars', 'purchas', 'purchasepro', 'pure', 'purest', 'puretalk', 'pureview', 'purg', 'purpl', 'purpos', 'purs', 'purshas', 'puschas', 'puse', 'push', 'put', 'putter', 'puttinf', 'puzzlement', 'pw', 'párese', 'q', 'qa', 'qaud', 'qauliti', 'qc', 'qhd', 'qi', 'qik', 'qnx', 'qq', 'qr', 'quad', 'quadband', 'quadcor', 'quadroot', 'quaili', 'quailti', 'quak', 'qualcom', 'qualcomm', 'qualifi', 'qualithi', 'qualiti', 'qualitybett', 'qualitybluetoothwificon', 'qualitybright', 'qualitycon', 'qualitygood', 'qualityhorr', 'qualityi', 'qualityno', 'qualityth', 'qualityvideoscon', 'qualm', 'quantiti', 'quantum', 'quarter', 'quasi', 'quattro', 'que', 'qued', 'queda', 'quedaba', 'quedado', 'quedaron', 'queja', 'querti', 'question', 'questionnair', 'queue', 'quibbl', 'quick', 'quickcharg', 'quicker', 'quicknship', 'quickoffic', 'quicksupport', 'quien', 'quier', 'quiera', 'quiero', 'quiet', 'quieter', 'quik', 'quintero', 'quirk', 'quirki', 'quisiera', 'quit', 'quitan', 'quitar', 'quock', 'quot', 'quti', 'qué', 'qwerti', 'r', 'race', 'radar', 'radiat', 'radio', 'radius', 'rage', 'rail', 'rain', 'rainbow', 'rais', 'rait', 'ram', 'ramblr', 'ramdom', 'ramth', 'ran', 'randi', 'random', 'rang', 'rant', 'ranura', 'rap', 'rapid', 'rapida', 'rapidez', 'rapido', 'rapport', 'rare', 'raro', 'raspi', 'rat', 'rate', 'rather', 'ratio', 'rational', 'rato', 'rave', 'raw', 'ray', 'rayado', 'razer', 'razon', 'razor', 'razr', 'rbeen', 'rca', 'reach', 'reachabl', 'reaciv', 'react', 'reaction', 'reactiv', 'read', 'readabl', 'reader', 'readi', 'readili', 'readyseem', 'reaffirm', 'reai', 'real', 'realabilityiam', 'reali', 'realic', 'realidad', 'realis', 'realist', 'realiti', 'realiz', 'realizar', 'realizd', 'reall', 'realli', 'reallt', 'reallu', 'reallyy', 'realm', 'realment', 'realti', 'reappear', 'rear', 'rearrang', 'reason', 'reassembl', 'reassur', 'rebat', 'reboot', 'rebootit', 'rebound', 'rebrand', 'rebuilt', 'reburnish', 'recal', 'recalcul', 'recalibr', 'recalienta', 'recamend', 'recap', 'recbi', 'reccomend', 'reccommend', 'receav', 'recebi', 'receipt', 'receiv', 'recel', 'recellulartoo', 'recent', 'recepcion', 'recepción', 'recept', 'recess', 'recharg', 'recibi', 'recibido', 'recibio', 'recibir', 'recibirlo', 'recientement', 'reciev', 'reciew', 'recip', 'recipi', 'reciv', 'reckless', 'reclaim', 'reclamo', 'reclarmar', 'recogn', 'recognis', 'recognit', 'recogniz', 'recom', 'recomen', 'recomend', 'recomendación', 'recomendado', 'recomendadoo', 'recomendando', 'recomenden', 'recomienda', 'recomiendo', 'recomiento', 'recommand', 'recommen', 'recommend', 'recommendedor', 'recommendedpoor', 'recommendedroduct', 'recommod', 'recondit', 'reconfigur', 'reconfirm', 'reconnect', 'reconocio', 'reconsid', 'reconstruido', 'record', 'recours', 'recov', 'recoveri', 'recptacl', 'recreat', 'rectangular', 'rectifi', 'recubr', 'recuerden', 'recur', 'recycl', 'red', 'reddit', 'rede', 'redempt', 'redesign', 'redetect', 'redicul', 'redid', 'redirect', 'redneck', 'redownload', 'redraw', 'reduc', 'reduct', 'redund', 'redunkul', 'redwood', 'reebot', 'reed', 'reel', 'reembolsaron', 'reenabl', 'refabricado', 'refaund', 'refer', 'referb', 'referbish', 'referbush', 'refib', 'refin', 'refirbish', 'reflash', 'reflect', 'reflex', 'refocus', 'reformado', 'reformat', 'refrain', 'refresh', 'refubish', 'refund', 'refundmi', 'refurb', 'refurbhish', 'refurbish', 'refurbrish', 'refurv', 'refus', 'regain', 'regala', 'regar', 'regard', 'regardless', 'regardssincer', 'region', 'regist', 'registrart', 'regladh', 'regrad', 'regrest', 'regret', 'regretslov', 'regrett', 'regular', 'rehash', 'reimburs', 'reinado', 'reinforc', 'reinicia', 'reiniciar', 'reiniciarlo', 'reinsert', 'reinstal', 'reinstat', 'reintegr', 'reintegren', 'reintegro', 'reject', 'rekt', 'relat', 'relationship', 'relax', 'relay', 'releas', 'releativli', 'releg', 'relentless', 'relev', 'reli', 'reliabl', 'relianc', 'relief', 'reliev', 'religion', 'reliz', 'rellay', 'relli', 'reload', 'reluct', 'remain', 'remaind', 'remak', 'remanfactur', 'remanufactur', 'remap', 'remark', 'remedi', 'rememb', 'remind', 'reminderto', 'reminisc', 'remmbolsado', 'remors', 'remot', 'remoto', 'remount', 'remov', 'remyi', 'render', 'rendit', 'rene', 'renew', 'renoir', 'rent', 'reo', 'reorder', 'reorgan', 'reorient', 'rep', 'repackag', 'repaid', 'repair', 'repairand', 'repairman', 'repairoveral', 'repar', 'reparacion', 'reparado', 'reparar', 'repeat', 'repetit', 'repito', 'repla', 'replac', 'replenish', 'repli', 'replica', 'repo', 'report', 'repotenciado', 'repres', 'represent', 'reproduct', 'reprogram', 'republ', 'repuesto', 'repurchas', 'reput', 'reqd', 'request', 'requier', 'requiero', 'requir', 'requisit', 'res', 'resal', 'rescind', 'rescu', 'reseal', 'research', 'resect', 'resel', 'resend', 'reserv', 'reset', 'resetea', 'reseña', 'resid', 'residu', 'resign', 'resili', 'resist', 'resiten', 'resiz', 'resold', 'resolucion', 'resolut', 'resolutionit', 'resolutionoveral', 'resolutionpackag', 'resolutionth', 'resolv', 'reson', 'resort', 'resourc', 'respandor', 'respect', 'respecto', 'respodido', 'respon', 'respond', 'respondió', 'respons', 'responsabilidad', 'responsiblei', 'responsivekeyboard', 'responsiveth', 'respuesta', 'rest', 'restar', 'restart', 'restat', 'restaur', 'resto', 'restock', 'restor', 'restrict', 'result', 'resulta', 'resulto', 'resum', 'retail', 'retain', 'rethink', 'retina', 'retir', 'retomar', 'retract', 'retri', 'retriev', 'retro', 'retrospect', 'returd', 'return', 'returnso', 'returnung', 'retyp', 'reus', 'reveal', 'reveiw', 'revel', 'revers', 'revert', 'review', 'reviewdisplay', 'reviewsbut', 'reviewtagsuggest', 'reviewwith', 'revis', 'revisando', 'revisar', 'revisit', 'reviv', 'reviw', 'revolut', 'revolution', 'revolutionari', 'revolv', 'revu', 'reward', 'rewiew', 'rewrit', 'rgbwbl', 'rhidon', 'rhyme', 'rhythmic', 'rhytm', 'rica', 'rice', 'rich', 'richer', 'rico', 'rid', 'ridden', 'ride', 'ridg', 'ridicul', 'rig', 'right', 'rigor', 'rigth', 'rim', 'ring', 'ringer', 'ringk', 'ringkl', 'rington', 'rinogear', 'rio', 'rip', 'ripoff', 'rippl', 'rise', 'risk', 'riski', 'rita', 'rite', 'ritgh', 'rival', 'river', 'rma', 'road', 'roam', 'rob', 'robin', 'robot', 'robust', 'rock', 'rocker', 'rocket', 'rode', 'rodger', 'roger', 'roi', 'rokz', 'role', 'roll', 'roller', 'rolyg', 'rom', 'roman', 'rome', 'roof', 'room', 'roommat', 'root', 'rootabl', 'rosado', 'rose', 'roshan', 'ross', 'rota', 'rotat', 'rotten', 'rough', 'rougher', 'round', 'rourk', 'rout', 'router', 'routin', 'row', 'rpg', 'rpoducto', 'rss', 'rt', 'rub', 'rubber', 'rubberi', 'rubberish', 'rubbish', 'rude', 'rudimentari', 'ruff', 'rug', 'rugbi', 'ruin', 'ruiz', 'rule', 'rumor', 'run', 'runaround', 'rundown', 'runn', 'runtim', 'rural', 'rush', 'russian', 'rusti', 'rápida', 'rápido', 'réplace', 'sa', 'saber', 'sabria', 'sacaron', 'sacramento', 'sacrif', 'sacrific', 'sad', 'saddl', 'safari', 'safe', 'safepric', 'safer', 'safeti', 'said', 'saidyou', 'sail', 'sailor', 'saint', 'sake', 'sakroot', 'salari', 'salazar', 'sale', 'salen', 'salesman', 'salido', 'salio', 'saller', 'salt', 'saludo', 'salut', 'salvador', 'sam', 'sampl', 'samsun', 'samsung', 'samsunggalaxi', 'samung', 'san', 'sandisk', 'sandwich', 'sanecchiaro', 'sank', 'sansung', 'santa', 'sanyo', 'sap', 'sar', 'sat', 'satan', 'satellit', 'satiesfi', 'satifi', 'satisfac', 'satisfact', 'satisfactori', 'satisfação', 'satisfecha', 'satisfecho', 'satisfi', 'satisfiedi', 'sattelit', 'satur', 'saturday', 'sauc', 'saudi', 'save', 'savedvth', 'saver', 'savi', 'savng', 'savor', 'savvi', 'saw', 'say', 'sayingdo', 'saysth', 'sc', 'scab', 'scale', 'scam', 'scan', 'scanner', 'scarc', 'scard', 'scare', 'scari', 'scaveng', 'sceen', 'scenario', 'scene', 'sceneri', 'sceptic', 'scetchi', 'schedul', 'scheme', 'schlesing', 'school', 'schooler', 'scissor', 'scof', 'scoff', 'scorch', 'score', 'scotch', 'scour', 'scrach', 'scracht', 'scrambl', 'scrap', 'scrape', 'scratch', 'scratchi', 'scrath', 'scream', 'scree', 'screem', 'screen', 'screenbut', 'screenclear', 'screencon', 'screend', 'screendual', 'screeni', 'screenif', 'screenlong', 'screennic', 'screensav', 'screenshot', 'scren', 'screw', 'screwdriv', 'scribbl', 'scrime', 'scrimp', 'script', 'scroll', 'scrtch', 'scrub', 'sctratch', 'scuf', 'scuff', 'sd', 'sdcard', 'sdhc', 'sdk', 'se', 'sea', 'seahawk', 'seal', 'sealer', 'seam', 'seamless', 'search', 'season', 'seat', 'seattl', 'sec', 'seccond', 'secod', 'second', 'secondari', 'secondhand', 'secreen', 'secret', 'secretari', 'section', 'sector', 'secur', 'sedentari', 'see', 'seek', 'seem', 'seemless', 'seen', 'sefer', 'seg', 'segment', 'segun', 'segura', 'seguro', 'sei', 'seleccion', 'select', 'selectel', 'seler', 'selet', 'self', 'selfconci', 'selfi', 'selfish', 'sell', 'sellada', 'sellado', 'seller', 'sellerc', 'selli', 'sellig', 'selv', 'semana', 'semant', 'semest', 'semi', 'send', 'sender', 'senial', 'senior', 'sens', 'sensat', 'sensei', 'senser', 'sensibl', 'sensit', 'sensoer', 'sensor', 'sent', 'sentenc', 'sep', 'separ', 'separt', 'sept', 'septemb', 'ser', 'sera', 'seravila', 'serf', 'seri', 'seria', 'serial', 'seriedad', 'seriesthi', 'serious', 'seriusli', 'serrious', 'serv', 'server', 'servic', 'serviceit', 'servicio', 'servía', 'sesent', 'session', 'set', 'setback', 'setit', 'settingsclock', 'settl', 'settlement', 'setup', 'setupsinc', 'seven', 'seventh', 'sever', 'sexi', 'sexier', 'sexist', 'señal', 'sf', 'sgh', 'sgx', 'sh', 'shabbi', 'shade', 'shadi', 'shadow', 'shake', 'shaki', 'shalem', 'shall', 'sham', 'shame', 'shami', 'shanghai', 'shape', 'shard', 'share', 'shari', 'sharp', 'sharper', 'sharpest', 'sharri', 'shat', 'shatter', 'shazam', 'shealth', 'sheen', 'sheep', 'sheer', 'sheet', 'sheisti', 'shelf', 'shell', 'shelv', 'shenanigan', 'shenzhen', 'sheri', 'shi', 'shield', 'shift', 'shill', 'shine', 'shini', 'ship', 'shipe', 'shipment', 'shipper', 'shippingcon', 'shippment', 'shipyard', 'shir', 'shirt', 'shlew', 'shock', 'shocker', 'shoddi', 'shoe', 'shoot', 'shooter', 'shop', 'shopbest', 'shopebest', 'shopper', 'shore', 'short', 'shortag', 'shortcom', 'shortcut', 'shorten', 'shorter', 'shortfal', 'shot', 'shotti', 'shoulder', 'shout', 'shove', 'show', 'shower', 'shown', 'showpiec', 'shqipe', 'shred', 'shrink', 'shrug', 'sht', 'shuck', 'shuffl', 'shuld', 'shure', 'shut', 'shutdown', 'shute', 'shutoff', 'shutter', 'si', 'sibl', 'sick', 'side', 'sidekick', 'sideload', 'sideway', 'sido', 'siempr', 'sient', 'siento', 'siga', 'sigan', 'sigh', 'sight', 'sign', 'signal', 'signaland', 'signatur', 'signifi', 'signific', 'siguient', 'sii', 'silenc', 'silent', 'silicon', 'silki', 'sill', 'silli', 'silver', 'sim', 'simcard', 'simcom', 'simdevil', 'simeon', 'similar', 'similiar', 'simm', 'simmega', 'simmobil', 'simon', 'simpl', 'simpler', 'simplest', 'simpleton', 'simpli', 'simplic', 'simplifi', 'simplist', 'simthat', 'simul', 'simultan', 'sin', 'sinc', 'sincard', 'sincer', 'sincerelli', 'sing', 'singapor', 'singl', 'sink', 'sino', 'sip', 'sipper', 'siquiera', 'sir', 'siren', 'siri', 'sirv', 'sirva', 'sirvio', 'sis', 'sisit', 'sissi', 'sistem', 'sistema', 'sister', 'sit', 'site', 'situat', 'six', 'sixteen', 'size', 'sizeabl', 'sizefast', 'sizeui', 'sk', 'skateboard', 'skeptic', 'sketch', 'sketchi', 'sketchyintern', 'skew', 'skeynpard', 'skid', 'skill', 'skimp', 'skimpd', 'skin', 'skinni', 'skip', 'skr', 'skreen', 'sku', 'skull', 'sky', 'skype', 'skyrocket', 'slack', 'slacker', 'slam', 'slang', 'slap', 'slavic', 'sleak', 'sleek', 'sleekdid', 'sleeker', 'sleep', 'sleet', 'sleev', 'slept', 'slew', 'sli', 'slice', 'slick', 'slicker', 'slid', 'slide', 'slider', 'sligh', 'slight', 'slighter', 'slightest', 'slike', 'slim', 'slimlin', 'slimmer', 'slip', 'slipperi', 'slit', 'sliver', 'slogan', 'slop', 'sloppi', 'sloppier', 'slot', 'slotkeyboard', 'slouch', 'slow', 'slower', 'slowi', 'slowli', 'slowphon', 'slowwer', 'slr', 'sluggish', 'slum', 'slush', 'sm', 'smack', 'small', 'smaller', 'smallest', 'smallish', 'smalpon', 'smarphon', 'smart', 'smarter', 'smartglass', 'smarthphon', 'smartphon', 'smartwatch', 'smartwear', 'smash', 'smasung', 'smear', 'smell', 'smh', 'smile', 'smiley', 'smitten', 'smmall', 'smoke', 'smolth', 'smooth', 'smoother', 'smoothest', 'smoothiphon', 'smoothlyscreen', 'smoothstream', 'smoth', 'sms', 'smsrtphone', 'smudg', 'snafu', 'snag', 'snake', 'snap', 'snapchat', 'snapdragon', 'snappi', 'snappier', 'snappieraft', 'snappiest', 'snapshot', 'snapspe', 'snazzi', 'snd', 'snes', 'sno', 'snob', 'snooz', 'snow', 'snowproof', 'snuff', 'snug', 'soak', 'sobr', 'sobretodo', 'soc', 'soccer', 'social', 'socket', 'soduku', 'sofar', 'sofewar', 'soft', 'softbank', 'soften', 'softer', 'softkey', 'softwar', 'softwarei', 'sofwar', 'soim', 'soit', 'sol', 'sola', 'solament', 'sold', 'soldto', 'sole', 'solicit', 'solicitado', 'solicitadoenvia', 'solid', 'solidth', 'solo', 'solstic', 'solucion', 'solut', 'solv', 'solvedmultimedia', 'solw', 'some', 'somebodi', 'someday', 'somehow', 'someim', 'someon', 'someonels', 'someplac', 'somet', 'someth', 'sometim', 'somewhat', 'somewher', 'somin', 'son', 'song', 'soni', 'sonido', 'sonyericsson', 'soo', 'soon', 'sooner', 'soonersoft', 'soonest', 'soonfor', 'sop', 'sophist', 'soport', 'sore', 'sorprend', 'sorprendió', 'sorpresa', 'sorpris', 'sorri', 'sort', 'soso', 'sot', 'soul', 'sound', 'soundand', 'soundbar', 'soundth', 'sount', 'sour', 'sourc', 'south', 'southamerica', 'southeast', 'southern', 'southwest', 'sovideo', 'soy', 'sp', 'space', 'spacevideoconfer', 'spade', 'spain', 'spam', 'spanish', 'spank', 'spankin', 'spare', 'spareal', 'spark', 'spawn', 'spaz', 'spazz', 'speak', 'speakeer', 'speaker', 'speakerextrem', 'speakerphon', 'speakout', 'spec', 'speci', 'special', 'specialist', 'specialti', 'specif', 'specifi', 'speck', 'spect', 'spectacular', 'spectat', 'spectrum', 'specul', 'speech', 'speed', 'speedi', 'speediest', 'speedili', 'speedtest', 'speicher', 'spelbr', 'spell', 'spen', 'spend', 'spent', 'spi', 'spidgen', 'spiel', 'spigen', 'spike', 'spin', 'spiral', 'spite', 'splash', 'splendid', 'split', 'splurg', 'spoil', 'spoke', 'spoken', 'sponsor', 'spontan', 'spontaneusli', 'spooler', 'sporad', 'sport', 'spot', 'spotifi', 'spotless', 'spotti', 'spous', 'spout', 'spport', 'spraker', 'spread', 'spring', 'sprinit', 'sprint', 'spuriousclaim', 'spybook', 'spywar', 'sq', 'sqame', 'squad', 'squar', 'squaretrad', 'squeez', 'squint', 'sratch', 'sse', 'sship', 'ssid', 'ssuperb', 'st', 'stabil', 'stabl', 'stack', 'staff', 'stage', 'stain', 'stainless', 'stale', 'stalk', 'stall', 'stallion', 'stamina', 'stamp', 'stand', 'standalon', 'standard', 'standbi', 'standby', 'standit', 'stapl', 'star', 'stare', 'starkey', 'starsi', 'starsproduct', 'starsth', 'starsupd', 'start', 'startac', 'starter', 'startup', 'starv', 'stat', 'state', 'statement', 'statesid', 'static', 'statici', 'station', 'status', 'stay', 'stayi', 'stayz', 'std', 'stead', 'steadi', 'steal', 'stealth', 'steam', 'steel', 'steep', 'steer', 'stellar', 'stem', 'step', 'stephani', 'stereo', 'steve', 'steward', 'sti', 'stick', 'sticker', 'sticki', 'stiff', 'stifl', 'stil', 'still', 'stillnumb', 'stink', 'stinker', 'stipul', 'stitch', 'sto', 'stock', 'stocki', 'stole', 'stolen', 'stollen', 'stone', 'stood', 'stop', 'stope', 'stopper', 'stoppingok', 'stopwatch', 'storag', 'storagethat', 'store', 'storefront', 'stori', 'storm', 'strach', 'straigh', 'straight', 'straighten', 'straightforward', 'straighttalk', 'strain', 'strait', 'straittalk', 'strand', 'strang', 'stranger', 'strangest', 'strap', 'strategi', 'straw', 'stray', 'streak', 'stream', 'streamer', 'street', 'strend', 'strengh', 'strenght', 'strength', 'strengthen', 'stress', 'stretch', 'strict', 'strike', 'string', 'strip', 'stripe', 'stroke', 'strong', 'stronger', 'strongest', 'strorag', 'struck', 'structur', 'struggl', 'stubborn', 'stuck', 'student', 'studi', 'studio', 'studk', 'stuff', 'stumbl', 'stump', 'stun', 'stunk', 'stupid', 'sturdi', 'sturdier', 'stutter', 'style', 'stylecan', 'styli', 'stylish', 'stylist', 'stylus', 'stylusi', 'su', 'sub', 'subaru', 'subdu', 'subfold', 'subject', 'submenus', 'submerg', 'submit', 'submittingand', 'suboptim', 'subpar', 'subscrib', 'subscript', 'subsequ', 'subsid', 'subsidi', 'subsidiari', 'substandard', 'substanti', 'substitut', 'subtl', 'subtract', 'suburban', 'subvert', 'subway', 'succeed', 'success', 'successor', 'suced', 'sucha', 'suck', 'sucker', 'sucki', 'suckss', 'sudden', 'suena', 'suffer', 'suffic', 'suffici', 'suffoc', 'suggest', 'suicid', 'suit', 'suitabl', 'suitibl', 'sulfat', 'sum', 'suministró', 'summar', 'summari', 'summer', 'summeris', 'sumson', 'sun', 'sunda', 'sunday', 'sundri', 'sunk', 'sunlight', 'sunlightb', 'sunlit', 'sunni', 'sunris', 'sunscreen', 'sunset', 'sunshin', 'supcas', 'super', 'superb', 'supercar', 'supercharg', 'supercool', 'superfast', 'superflu', 'superior', 'superl', 'superslim', 'supervis', 'supervisor', 'supo', 'supon', 'suport', 'supos', 'suposs', 'supper', 'suppli', 'supplier', 'support', 'suppos', 'suppost', 'suprem', 'supris', 'supriz', 'supuesta', 'supurb', 'sure', 'surf', 'surfac', 'surfer', 'surgeri', 'surpass', 'surpris', 'surround', 'surv', 'surviv', 'survivalist', 'survivor', 'sus', 'suspect', 'suspend', 'suspic', 'suspici', 'sustain', 'suv', 'svc', 'sveri', 'sw', 'swab', 'swap', 'swappa', 'sway', 'swear', 'sweat', 'sweden', 'sweet', 'sweeti', 'swell', 'swich', 'swift', 'swiftran', 'swim', 'swindl', 'swing', 'swipe', 'swiss', 'switch', 'swith', 'swivel', 'swollen', 'swoosh', 'swype', 'syc', 'sygic', 'sym', 'symbian', 'symbol', 'symphoni', 'symptom', 'syn', 'sync', 'synch', 'synchron', 'syndrom', 'synthes', 'synthet', 'sys', 'sysem', 'system', 'systemsinc', 'sólo', 'súper', 'tab', 'tabl', 'tablet', 'tack', 'tacki', 'tackl', 'tact', 'tactil', 'tad', 'tag', 'taichung', 'taiwan', 'taiwanes', 'take', 'taken', 'tal', 'tale', 'talk', 'talkback', 'talker', 'talkheavi', 'tall', 'taller', 'tamano', 'tambien', 'también', 'tame', 'tampa', 'tamper', 'tampoco', 'tan', 'tango', 'tank', 'tanto', 'tap', 'tapa', 'tape', 'taper', 'tapethi', 'tard', 'tardado', 'tardi', 'target', 'tarjeta', 'tarnish', 'task', 'tasker', 'tast', 'tat', 'taught', 'tax', 'taylor', 'tbh', 'te', 'tea', 'teach', 'teal', 'team', 'teamview', 'tear', 'teas', 'teaser', 'teather', 'tebddi', 'tec', 'tech', 'techarvard', 'techi', 'techinca', 'technic', 'technician', 'techniqu', 'techno', 'technogeek', 'technolog', 'technomast', 'teclado', 'tecnica', 'tecnico', 'tecnolog', 'tecnologicament', 'ted', 'tedious', 'tee', 'teen', 'teenag', 'teeni', 'tefeno', 'tegnologia', 'tek', 'tel', 'telcel', 'telco', 'telecom', 'telefeono', 'teleffunciona', 'telefon', 'telefonica', 'telefono', 'telefonía', 'telefónica', 'telelefono', 'telemarket', 'telenav', 'telepath', 'telephon', 'televis', 'tell', 'telmex', 'telus', 'teléfono', 'temp', 'temper', 'temperatur', 'temperatureturn', 'templ', 'tempo', 'temporari', 'temporarili', 'tempt', 'ten', 'tend', 'tendenc', 'tendran', 'tenemo', 'tener', 'tenerlo', 'tenga', 'tengan', 'tengo', 'tenia', 'tenido', 'tennesse', 'tenni', 'tennologia', 'tension', 'tentat', 'tenth', 'tepid', 'term', 'termin', 'termino', 'terra', 'terribl', 'terrif', 'terrifi', 'test', 'tester', 'tether', 'teturn', 'tex', 'texa', 'text', 'texter', 'textil', 'textingbbmessengerinternet', 'texto', 'textur', 'textura', 'tf', 'tgem', 'th', 'tha', 'thaanx', 'thabk', 'thai', 'thailand', 'thak', 'thakshello', 'thanactu', 'thank', 'thankful', 'thanksan', 'thanksfiv', 'thanksgiv', 'thankss', 'thankx', 'thankyou', 'thant', 'thanx', 'thas', 'thata', 'thati', 'thatn', 'thatvsay', 'thatwa', 'thay', 'thb', 'thebatteri', 'thee', 'thefirst', 'theft', 'theglorifi', 'theh', 'thembatteri', 'theme', 'themself', 'thend', 'theon', 'theori', 'therebi', 'therefor', 'theregot', 'thereon', 'thermal', 'thermomet', 'these', 'thespe', 'thet', 'thi', 'thick', 'thicker', 'thief', 'thier', 'thiev', 'thigh', 'thin', 'thing', 'thingi', 'think', 'thinner', 'thinnest', 'third', 'thirti', 'thisand', 'thisi', 'thisnon', 'thisphon', 'thisth', 'thiswil', 'thiswond', 'thk', 'thks', 'thl', 'tho', 'thoe', 'thom', 'thorough', 'thorw', 'thou', 'though', 'thoughcharg', 'thought', 'thougth', 'thousand', 'thout', 'thouth', 'thqt', 'thr', 'thread', 'three', 'threesom', 'threw', 'thrid', 'thrill', 'throttl', 'throughout', 'throw', 'thrown', 'thru', 'tht', 'thts', 'thumb', 'thumbprint', 'thursday', 'thus', 'thw', 'thx', 'thxss', 'ti', 'tick', 'ticket', 'tie', 'tiempo', 'tien', 'tienda', 'tienen', 'tier', 'tiger', 'tigerdirect', 'tight', 'tighter', 'tightwad', 'til', 'tile', 'till', 'tilt', 'tim', 'time', 'timebatteri', 'timec', 'timefram', 'timeli', 'timelin', 'timer', 'timet', 'timeveri', 'timezon', 'ting', 'tini', 'tiniest', 'tinker', 'tinni', 'tint', 'tip', 'tipo', 'tipsif', 'tirado', 'tire', 'tireless', 'tit', 'titan', 'titanium', 'titl', 'tittl', 'tj', 'tks', 'tl', 'tldr', 'tle', 'tlf', 'tm', 'tmo', 'tmob', 'tmobil', 'tmobileor', 'tnc', 'toad', 'toast', 'toaster', 'toboth', 'toca', 'toda', 'todavia', 'today', 'toddler', 'todo', 'toe', 'togeth', 'toggl', 'toilet', 'tok', 'told', 'toler', 'toma', 'tomar', 'tomorrow', 'ton', 'tone', 'tongu', 'tonight', 'took', 'tooken', 'tool', 'tooth', 'top', 'topic', 'topnotch', 'torch', 'torchnic', 'tore', 'torn', 'tornado', 'tornillo', 'toronto', 'torqu', 'torrent', 'toru', 'tosit', 'toss', 'tot', 'total', 'totalment', 'touch', 'touchi', 'touchid', 'touchless', 'touchpad', 'touchscreen', 'touchston', 'touchwiz', 'tough', 'tougher', 'toughest', 'tought', 'tour', 'tourist', 'tout', 'tow', 'toward', 'towel', 'tower', 'town', 'toy', 'toyish', 'toyota', 'tpu', 'tr', 'trabaj', 'trabaja', 'trabajaba', 'trabajan', 'trabajando', 'trabajar', 'trabajaría', 'trabajo', 'trac', 'trace', 'traceabl', 'tracfon', 'track', 'trackbal', 'tracker', 'trackfon', 'trackpad', 'tracphon', 'tractor', 'trade', 'trademark', 'tradicion', 'tradit', 'traditionalist', 'traduct', 'trae', 'traen', 'traer', 'traerlo', 'traffic', 'trail', 'trailer', 'train', 'traje', 'trajo', 'transact', 'transcod', 'transfer', 'transferr', 'transform', 'transit', 'translat', 'transluc', 'transmis', 'transmit', 'transpar', 'transport', 'trap', 'trasero', 'trash', 'traslado', 'trasnfer', 'trata', 'tratando', 'traumat', 'trave', 'travel', 'travellingi', 'travelphon', 'travl', 'tray', 'trayecto', 'treat', 'treatment', 'trek', 'tremend', 'tremendo', 'trend', 'treo', 'trepid', 'tres', 'tri', 'trial', 'triangl', 'trick', 'tricki', 'trident', 'trigger', 'trim', 'trinidad', 'trip', 'tripadvisor', 'tripit', 'tripl', 'tripleflex', 'tripod', 'trivial', 'tropic', 'troubl', 'troubleshoot', 'troublesom', 'trough', 'trought', 'trouser', 'trouth', 'truck', 'true', 'trueli', 'truli', 'trulink', 'trulli', 'truncat', 'trune', 'trunk', 'trust', 'trusti', 'trustworthi', 'truth', 'tryin', 'très', 'ts', 'tsf', 'tsum', 'tthe', 'tti', 'tu', 'tub', 'tube', 'tudia', 'tuesday', 'tuff', 'tumbl', 'tundra', 'tune', 'tunein', 'tunnel', 'tupe', 'turbo', 'turd', 'turkey', 'turn', 'turnaround', 'turndown', 'turntabl', 'turquois', 'tus', 'tutori', 'tuve', 'tv', 'tweak', 'tweek', 'tween', 'tweet', 'tweeti', 'tweezer', 'twenti', 'twentyfour', 'twice', 'twin', 'twinc', 'twist', 'twister', 'twitpic', 'twitter', 'twitterpeek', 'two', 'twould', 'twrp', 'tx', 'txt', 'txting', 'ty', 'type', 'typic', 'typingexperi', 'typo', 'técnico', 'uae', 'ub', 'ubelivabk', 'uber', 'ubuntu', 'ud', 'ues', 'uff', 'ugandan', 'ugh', 'ugli', 'ugrad', 'uhd', 'ui', 'uk', 'ultim', 'ultima', 'ultra', 'ultrafast', 'uma', 'umm', 'umpteenth', 'umt', 'un', 'una', 'unabl', 'unaccept', 'unaceppt', 'unalt', 'unapp', 'unattract', 'unaud', 'unauthor', 'unavail', 'unbeat', 'unbeliev', 'unbelievebl', 'unbeliverbl', 'unbet', 'unbias', 'unblock', 'unbox', 'unboxingth', 'unbrand', 'unbreak', 'uncertain', 'uncertainti', 'uncl', 'unclear', 'unclip', 'unclock', 'uncomfort', 'uncommon', 'uncompl', 'uncontrol', 'unconvent', 'uncov', 'uncrown', 'undelet', 'undeliev', 'undeliv', 'under', 'underclock', 'undercov', 'underneath', 'underpin', 'underpow', 'underr', 'undersign', 'understand', 'understat', 'understood', 'underwat', 'underwhelmingthi', 'undesir', 'undo', 'undocu', 'uneccassri', 'unemploy', 'uneven', 'unexpect', 'unexplain', 'unfair', 'unfamiliar', 'unfavor', 'unfinish', 'unfold', 'unforeseen', 'unforgiv', 'unfortun', 'unfortunat', 'unfortunatelli', 'unfortunatley', 'unfound', 'unfreez', 'unfriend', 'unfriendli', 'unglu', 'ungrat', 'unhappi', 'unhelp', 'unhook', 'unibodi', 'unica', 'unico', 'uniform', 'unimpress', 'uninstal', 'unintellig', 'unintend', 'unintent', 'unintuit', 'uniqu', 'unit', 'univers', 'unjustifi', 'unknown', 'unl', 'unlck', 'unlcok', 'unless', 'unlicens', 'unlik', 'unlimit', 'unload', 'unlock', 'unlockedcon', 'unlockedcryst', 'unlockedno', 'unlockedscreen', 'unlockhow', 'unlok', 'unlucki', 'unmanag', 'unmatch', 'unmount', 'unmut', 'unnecessari', 'unnecto', 'unnot', 'unnotic', 'uno', 'unobtrus', 'unoffici', 'unopen', 'unorigin', 'unpack', 'unpair', 'unparallel', 'unplan', 'unplay', 'unpleas', 'unplug', 'unpredicatbl', 'unpredict', 'unprofesion', 'unprofession', 'unread', 'unreason', 'unrecogn', 'unrel', 'unreli', 'unremov', 'unrespons', 'unsaf', 'unsatisfact', 'unsatisfactori', 'unsatisfi', 'unscath', 'unstabl', 'unsteadi', 'unstick', 'unsubsid', 'unsuccesf', 'unsuccess', 'unsung', 'unsupport', 'unsur', 'unsuspect', 'untextur', 'unthink', 'until', 'unto', 'untouch', 'untru', 'unus', 'unusu', 'unvalid', 'unveil', 'unwant', 'unwear', 'unwieldi', 'unwork', 'up', 'upat', 'upcharg', 'upcom', 'updat', 'updatedoveral', 'upfront', 'upgrad', 'upkeep', 'uplift', 'upload', 'upon', 'upper', 'upragrad', 'upright', 'upset', 'upsid', 'upsiz', 'upsveri', 'uptick', 'upto', 'upton', 'upward', 'upword', 'ur', 'urban', 'urg', 'urgenc', 'urgent', 'url', 'urn', 'uruguay', 'us', 'usa', 'usabl', 'usabluetooth', 'usada', 'usado', 'usag', 'usait', 'usan', 'usando', 'usar', 'usara', 'usarlo', 'usb', 'usd', 'use', 'usea', 'useabl', 'useag', 'usedto', 'useful', 'usefulcon', 'usefulth', 'usehad', 'useless', 'user', 'usernam', 'useth', 'usetough', 'useus', 'usewhen', 'usim', 'uso', 'usp', 'usr', 'ust', 'usted', 'usuabl', 'usual', 'usuali', 'usuario', 'ut', 'util', 'utilis', 'utilizado', 'utilizando', 'utilizarlo', 'utilz', 'utliiz', 'utter', 'utub', 'uur', 'uzcategui', 'v', 'va', 'vacat', 'vacay', 'vagu', 'vain', 'vaio', 'vait', 'vale', 'valentin', 'valeri', 'valiant', 'valid', 'valor', 'valu', 'valuabl', 'vamp', 'van', 'vanilla', 'vanish', 'varga', 'vari', 'varia', 'variabl', 'variant', 'variat', 'varieti', 'vario', 'various', 'varyin', 'vast', 'vault', 'vcr', 'vece', 'vedio', 'veer', 'veeri', 'vehicl', 'vehicleotherwis', 'velcro', 'velocidad', 'vemo', 'vendedor', 'vendedpr', 'vender', 'vendido', 'vendieron', 'vendor', 'vendría', 'venezolano', 'venezuela', 'venezuelan', 'venga', 'vengeanc', 'venia', 'vent', 'venta', 'veo', 'ver', 'verbal', 'verbatim', 'verdadera', 'verdaderament', 'verdadero', 'verdict', 'verey', 'veri', 'verif', 'verifi', 'verison', 'verizon', 'veroson', 'verri', 'vers', 'versa', 'versatil', 'versio', 'version', 'versión', 'versus', 'vert', 'vertic', 'verus', 'verygood', 'verykool', 'verzion', 'ves', 'vet', 'vex', 'vey', 'vez', 'vga', 'via', 'viabl', 'viber', 'viborat', 'vibranc', 'vibrant', 'vibrat', 'vibrateth', 'vice', 'victim', 'victor', 'victori', 'vid', 'video', 'videocameraeveruth', 'videoscon', 'videotron', 'vido', 'vien', 'vietnam', 'vietnames', 'view', 'vigor', 'vijay', 'viniera', 'vino', 'vinyl', 'vioc', 'viola', 'vip', 'virgin', 'virginia', 'virtu', 'virtual', 'virus', 'visa', 'visibl', 'vision', 'visit', 'vista', 'visto', 'visual', 'vital', 'vitamin', 'vitriol', 'vius', 'vive', 'vivid', 'vivo', 'vixia', 'vizio', 'vlingo', 'vocal', 'vodafon', 'vodaphon', 'voic', 'voicemai', 'voicemail', 'void', 'voila', 'voip', 'vol', 'volt', 'voltag', 'volum', 'volumen', 'volumn', 'volunt', 'volveria', 'vonag', 'vouch', 'voucher', 'vow', 'voyag', 'vr', 'vri', 'vrzn', 'vs', 'vse', 'vu', 'vuelta', 'vuelv', 'vulner', 'vulnerabl', 'vw', 'vz', 'vzla', 'vznavig', 'vzw', 'w', 'wa', 'waay', 'waayi', 'wac', 'wacht', 'wack', 'wacom', 'wad', 'wade', 'waht', 'waist', 'waistband', 'wait', 'waitin', 'wakala', 'wake', 'walk', 'walkman', 'wall', 'wallah', 'wallet', 'wallpap', 'walmart', 'walt', 'wan', 'wanab', 'wand', 'wander', 'wane', 'want', 'wap', 'war', 'waranti', 'ward', 'ware', 'warehous', 'wari', 'warm', 'warmer', 'warn', 'warp', 'warrant', 'warranti', 'warren', 'warrente', 'warrenti', 'warrior', 'wase', 'wash', 'washer', 'washington', 'wasi', 'wast', 'wat', 'watch', 'water', 'waterproof', 'watertight', 'watertown', 'wath', 'watter', 'wave', 'waver', 'way', 'wayand', 'waz', 'waze', 'wcdma', 'wce', 'weak', 'weaken', 'weaker', 'weakest', 'weaksid', 'weapon', 'wear', 'wearer', 'weari', 'weather', 'web', 'webaccount', 'webcam', 'webo', 'webpag', 'websid', 'websit', 'websurf', 'wed', 'wedg', 'wednesday', 'wedsday', 'week', 'weekend', 'weeksaft', 'weeni', 'weigh', 'weight', 'weighti', 'weightless', 'weird', 'weirdest', 'welcom', 'well', 'wellbuilt', 'welli', 'wellit', 'wellthi', 'wen', 'wene', 'went', 'wep', 'weri', 'west', 'westlaw', 'wet', 'wether', 'wfi', 'whack', 'whacki', 'whastapp', 'whatapp', 'whatch', 'whatev', 'whatnot', 'whatsapp', 'whatsoev', 'whatt', 'whatup', 'wheat', 'wheel', 'whenev', 'wherea', 'wherev', 'whereyou', 'whet', 'whether', 'whichev', 'while', 'whilst', 'whine', 'whip', 'whistl', 'white', 'whitei', 'whith', 'whithin', 'whitish', 'whiz', 'whoa', 'whoever', 'whole', 'wholeheart', 'wholli', 'whomev', 'whop', 'whose', 'whqt', 'wht', 'whwewver', 'wi', 'wich', 'wick', 'wide', 'wider', 'widescreen', 'widespread', 'widget', 'width', 'wif', 'wife', 'wifey', 'wifi', 'wig', 'wigg', 'wiggl', 'wih', 'wihtout', 'wikipedia', 'wil', 'wild', 'wildlif', 'wile', 'will', 'win', 'wind', 'windmobil', 'windo', 'window', 'windshield', 'wine', 'wing', 'winki', 'winn', 'winner', 'winter', 'wipe', 'wire', 'wireless', 'wirelessth', 'wireovia', 'wise', 'wish', 'wishlist', 'wit', 'witch', 'with', 'withani', 'withblu', 'withi', 'within', 'without', 'withouu', 'withstand', 'witti', 'wizard', 'wizz', 'wks', 'wlan', 'wnt', 'wogiz', 'wohoo', 'wok', 'woke', 'wokr', 'wolud', 'wolv', 'woman', 'women', 'wondeful', 'wonder', 'wonderfli', 'wonderful', 'wondersul', 'wonki', 'wood', 'wool', 'woow', 'wor', 'word', 'worder', 'wore', 'worht', 'work', 'worka', 'workabl', 'workaround', 'workbut', 'workcamera', 'workd', 'workday', 'worke', 'worker', 'workhors', 'workingi', 'workmanship', 'workmi', 'workn', 'workscon', 'worksfin', 'workson', 'workth', 'workwil', 'worl', 'world', 'worldsim', 'worldwid', 'worldwild', 'worn', 'worri', 'wors', 'worst', 'wort', 'worth', 'worthi', 'worthless', 'worthwhil', 'worx', 'wos', 'wothout', 'woudl', 'woukd', 'would', 'wound', 'woursh', 'wow', 'wozniak', 'wp', 'wpa', 'wpuld', 'wqs', 'wrap', 'wraparound', 'wrape', 'wrath', 'wreck', 'wright', 'wrinkl', 'wrist', 'wristband', 'wristlet', 'wriststrap', 'write', 'written', 'writtena', 'wrok', 'wroke', 'wrong', 'wrongful', 'wrote', 'wroth', 'wt', 'wtc', 'wtf', 'wth', 'wualaa', 'wud', 'wuithout', 'ww', 'wyom', 'wysiwyg', 'x', 'xa', 'xact', 'xbmc', 'xbox', 'xclariti', 'xd', 'xda', 'xdsc', 'xenon', 'xl', 'xm', 'xmas', 'xoxo', 'xp', 'xperia', 'xpert', 'xpose', 'xpress', 'xpressmus', 'xr', 'xrealiti', 'xtra', 'xtrem', 'xyz', 'xz', 'ya', 'yaa', 'yada', 'yaer', 'yah', 'yahoo', 'yakubu', 'yancel', 'yay', 'yayday', 'ybelic', 'yea', 'yeah', 'yeahh', 'yeahhdar', 'year', 'yearsi', 'yell', 'yellow', 'yelp', 'yemeni', 'yep', 'yepe', 'yes', 'yess', 'yesterday', 'yet', 'yetno', 'yetpricei', 'yetthes', 'yezz', 'yhe', 'yhey', 'yhis', 'yield', 'yiu', 'ymmv', 'yo', 'yoigo', 'york', 'youalso', 'youar', 'youjrc', 'youmoham', 'younadin', 'young', 'younger', 'youngest', 'yourintern', 'yourselv', 'youtub', 'yoy', 'yoyr', 'ypu', 'yr', 'yrs', 'yt', 'yta', 'yup', 'ywsteadi', 'z', 'zagg', 'zambia', 'zapp', 'zeal', 'zealand', 'zedg', 'zeiss', 'zen', 'zena', 'zenfon', 'zenphon', 'zenui', 'zero', 'zip', 'zipcod', 'zippi', 'zizo', 'zl', 'zmax', 'zone', 'zoom', 'zte', 'zu', 'zune', 'éstas', 'éste', 'éxito', 'ítem', 'último', 'única', 'único', 'útil', 'útile', 'über', '좋군']
print(tf_mtx.shape)
(15376, 10040)
tf_mtx.toarray()
array([[0., 0., 0., ..., 0., 0., 0.],
[0., 0., 0., ..., 0., 0., 0.],
[0., 0., 0., ..., 0., 0., 0.],
...,
[0., 0., 0., ..., 0., 0., 0.],
[0., 0., 0., ..., 0., 0., 0.],
[0., 0., 0., ..., 0., 0., 0.]])
new_review = [["I", "hate", "this","phone"]]
tf_vect.transform(new_review).toarray()
array([[0., 0., 0., ..., 0., 0., 0.]])
This function will be used to plot the confusion matrix for the different models we will create
import seaborn as sn
def plot_confusion(cm):
plt.figure(figsize = (5,5))
sn.heatmap(cm, annot=True, cmap="Blues", fmt='.0f')
plt.xlabel("Prediction")
plt.ylabel("True value")
plt.title("Confusion Matrix")
return sn
print(X)
print(y)
[['great', 'phone', 'replac', 'lost', 'phone', 'thing', 'volum', 'button', 'not', 'work', 'still', 'go', 'set', 'adjust', 'job', 'elig', 'upgrad', 'phone'], ['batteri', 'old', 'use', 'bare', 'hold', 'charg', 'otherwis', 'issu', 'phone'], ['purchas', 'phone', 'decemb', 'christma', 'present', 'son', 'call', 'sprint', 'activ', 'phone', 'find', 'esn', 'not', 'clear', 'told', 'come', 'store', 'upon', 'research', 'phone', 'not', 'clear', 'reach', 'compani', 'inform', 'esn', 'not', 'clean', 'told', 'send', 'phone', 'back', 'would', 'send', 'anoth', 'phone', 'ask', 'repres', 'provid', 'esn', 'could', 'call', 'make', 'sure', 'clear', 'told', 'not', 'phone', 'avail', 'guarante', 'would', 'clear', 'known', 'someth', 'wrong', 'receiv', 'second', 'phone', 'turn', 'not', 'clear', 'esn', 'repres', 'sprint', 'inform', 'seller', 'phone', 'awar', 'esn', 'not', 'clear', 'send', 'anoth', 'phone', 'back', 'ask', 'refund', 'phone', 'ship', 'sinc', 'sent', 'two', 'phone', 'not', 'clear', 'esn', 'receiv', 'refund', 'phone', 'yet', 'see', 'refund', 'ship', 'would', 'not', 'suggest', 'buy', 'anyth'], ['not', 'good', 'phone', 'great', 'screen', 'resolut', 'storag', 'low', 'need', 'sd', 'card', 'anyth', 'may', 'clear', 'esn', 'not', 'expect', 'use', 'thing', 'like', 'freedompop'], ['bought', 'mom', 'love'], ['littl', 'phone', 'great', 'compact', 'easi', 'use', 'love'], ['work', 'great'], ['not', 'thick', 'old', 'one'], ['slow', 'work', 'fine', 'howev', 'week', 'would', 'not', 'charg', 'diagonosi', 'charg', 'port', 'defect', 'could', 'not', 'repair', 'may', 'one', 'receiv', 'end', 'return', 'phone'], ['att'], ['not', 'know', 'phone', 'carrier', 'phone', 'not', 'work', 'call', 'call', 'come', 'work', 'mayb', 'time', 'signal', 'terribl', 'sad', 'not', 'use', 'pretti', 'phone', 'return', 'phone'], ['eye', 'candi', 'phone', 'hand', 'candi', 'must', 'see', 'person', 'appreci', 'beauti', 'phone', 'love', 'phone', 'function', 'volum', 'button', 'love', 'phone', 'case', 'love', 'design', 'phone', 'sleek', 'slim', 'fit', 'easili', 'purs', 'come', 'screen', 'protector', 'come', 'jelli', 'phone', 'case', 'pair', 'great', 'bluetooth', 'speaker', 'love', 'connect', 'well', 'wifi', 'give', 'clean', 'crisp', 'screen', 'phone', 'look', 'like', 'cost', 'five', 'hundr', 'dollar', 'afford', 'love', 'color', 'pink', 'new', 'brand', 'great', 'brand', 'look', 'someth', 'high', 'end', 'low', 'price', 'june', 'brand', 'qualiti', 'product', 'love', 'phone', 'give', 'freedom', 'access', 'facebook', 'page', 'twitter', 'instagram', 'social', 'network', 'might', 'sign', 'give', 'freedom', 'talk', 'clear', 'sound', 'drop', 'call', 'got', 'product', 'free', 'discount', 'price', 'unbias', 'honest', 'review', 'not', 'affect', 'feel', 'product', 'love'], ['impress', 'model', 'unlock', 'phone', 'june', 'impress', 'get', 'android', 'phone', 'awesom', 'great', 'featur', 'expens', 'phone', 'work', 'great', 'wifi', 'connect', 'also', 'work', 'great', 'use', 'gsm', 'sim', 'card', 'work', 'smooth', 'fast', 'processor', 'unit', 'quad', 'core', 'fastest', 'cpu', 'found', 'expens', 'smartphon', 'android', 'provid', 'perform', 'stabil', 'updat', 'multipl', 'sim', 'card', 'support', 'hd', 'voic', 'call', 'devic', 'protect', 'secur', 'lost', 'stolen', 'devic', 'factori', 'reset', 'dual', 'unlock', 'sim', 'great', 'person', 'like', 'small', 'busi', 'busi', 'phone', 'number', 'alway', 'separ', 'person', 'number', 'most', 'not', 'talk', 'custom', 'weekend', 'spare', 'time', 'famili', 'anoth', 'thing', 'unlock', 'use', 'compat', 'gsm', 'network', 'work', 'great', 'travel', 'differ', 'camera', 'surpris', 'amaz', 'even', 'though', 'mp', 'front', 'back', 'realli', 'clear', 'seem', 'mp', 'camera', 'mp', 'watch', 'video', 'listen', 'music', 'total', 'respons', 'without', 'hang', 'up', 'experi', 'audio', 'total', 'clear', 'loud', 'last', 'not', 'least', 'love', 'wide', 'touch', 'screen', 'not', 'screen', 'wide', 'crisp', 'decent', 'resolut', 'slim', 'thin', 'lightweight', 'slick', 'product', 'fast', 'respons', 'soft', 'touch', 'realli', 'impress', 'afford', 'everyon', 'i', 'use', 'regular', 'phone', 'coupl', 'day', 'realli', 'love', 'way', 'work', 'appear', 'phone', 'classi', 'handi', 'see', 'imag', 'back', 'cover', 'rough', 'surfac', 'good', 'grip', 'prevent', 'drop', 'packag', 'includ', 'model', 'phone', 'batteri', 'usb', 'cabl', 'power', 'adapt', 'earphon', 'phone', 'color', 'option', 'choos', 'black', 'gold', 'pink', 'white', 'inde', 'impress', 'worth', 'keep', 'handl', 'care', 'high', 'recommend', 'everyon', 'search', 'afford', 'phone', 'work', 'great', 'thank', 'june', 'awesom', 'product', 'got', 'price', 'promot', 'period', 'one', 'deal', 'bless', 'get', 'test', 'effici', 'assess', 'futur', 'buyer', 'make', 'easier', 'other', 'find', 'review', 'may', 'help', 'well', 'not', 'get', 'anyth', 'get', 'good', 'feel', 'help', 'someon', 'way', 'requir', 'seller', 'leav', 'posit', 'remark', 'product', 'thank', 'take', 'time', 'read', 'review'], ['phone', 'look', 'nice', 'note', 'equivil', 'hd', 'screen', 'os', 'android', 'unsur', 'android', 'support', 'devic', 'light', 'duti', 'slight', 'flimsi', 'case', 'need', 'care', 'take', 'could', 'crack', 'also', 'come', 'screen', 'protector', 'take', 'plastic', 'bit', 'front', 'screen', 'protector', 'good', 'go', 'softwar', 'phone', 'work', 'fine', 'wifi', 'bluetooth', 'sim', 'signal', 'spot', 'sim', 'card', 'sd', 'card', 'great', 'intern', 'phone', 'plan', 'go', 'countri', 'camera', 'work', 'fine', 'not', 'super', 'high', 'mp', 'noth', 'worri', 'phone', 'main', 'camera', 'phone', 'fast', 'not', 'troubl', 'run', 'basic', 'app', 'wifi', 'like', 'web', 'browser', 'facebook', 'app', 'basic', 'game', 'seem', 'work', 'fine', 'well', 'run', 'without', 'hitch', 'downsid', 'see', 'outsid', 'not', 'capabl', 'great', 'phone', 'price', 'would', 'love', 'get', 'anoth', 'one', 'seller', 'receiv', 'item', 'discount', 'price', 'exchang', 'honest', 'unbias', 'review'], ['worst', 'phone', 'ever', 'not', 'not', 'find', 'case', 'fall', 'crack', 'not', 'abl', 'use', 'tri', 'sell', 'one', 'machin', 'walmart', 'not', 'even', 'recogn', 'devic', 'not', 'buy'], ['phone', 'month', 'n', 'alreadi', 'stop', 'work', 'could', 'download', 'anyth', 'memori', 'suck', 'not', 'wast', 'time', 'money', 'phone'], ['phone', 'pretti', 'look', 'phone', 'offer', 'slim', 'profil', 'howev', 'still', 'great', 'batteri', 'length', 'qualiti', 'great', 'realli', 'satisfi', 'video', 'sound', 'phone', 'offer', 'say', 'color', 'phone', 'one', 'favorit', 'featur', 'not', 'tacki', 'gold', 'color', 'not', 'appear', 'cheap', 'actual', 'flat', 'yet', 'metal', 'look', 'phone', 'comfort', 'hold', 'definit', 'not', 'heavi', 'batteri', 'sim', 'card', 'slot', 'sd', 'slot', 'easi', 'access', 'use', 'benefici', 'swap', 'batteri', 'often', 'sinc', 'mobil', 'web', 'mani', 'hour', 'day', 'often', 'store', 'photo', 'file', 'sd', 'card', 'work', 'also', 'flip', 'sim', 'card', 'phone', 'work', 'well', 'phone', 'made', 'thing', 'conveni', 'next', 'favorit', 'featur', 'hot', 'spot', 'tether', 'tether', 'often', 'work', 'home', 'life', 'live', 'town', 'internet', 'slow', 'turn', 'tether', 'accomplish', 'task', 'faster', 'use', 'home', 'wifi', 'phone', 'come', 'preload', 'app', 'quick', 'load', 'tab', 'busi', 'person', 'run', 'like', 'featur', 'lifesav', 'often', 'swap', 'back', 'forth', 'four', 'app', 'use', 'mani', 'internet', 'page', 'day', 'long', 'fast', 'tab', 'stop', 'type', 'url', 'incorrect', 'phone', 'help', 'person', 'work', 'life', 'phone', 'hold', 'signal', 'better', 'prepaid', 'phone', 'use', 'batteri', 'life', 'seem', 'last', 'longer', 'well', 'realli', 'enjoy', 'phone', 'i', 'enclos', 'video', 'see', 'featur', 'phone', 'would', 'recommend', 'phone', 'receiv', 'phone', 'free', 'reduc', 'rate', 'exchang', 'honest', 'opinion'], ['phone', 'look', 'nice', 'note', 'equivil', 'hd', 'screen', 'os', 'android', 'unsur', 'android', 'support', 'devic', 'light', 'duti', 'slight', 'flimsi', 'case', 'need', 'care', 'take', 'could', 'crack', 'also', 'come', 'screen', 'protector', 'take', 'plastic', 'bit', 'front', 'screen', 'protector', 'good', 'go', 'softwar', 'phone', 'work', 'fine', 'wifi', 'bluetooth', 'sim', 'signal', 'spot', 'sim', 'card', 'sd', 'card', 'great', 'intern', 'phone', 'plan', 'go', 'countri', 'camera', 'work', 'fine', 'not', 'super', 'high', 'mp', 'noth', 'worri', 'phone', 'main', 'camera', 'phone', 'fast', 'not', 'troubl', 'run', 'basic', 'app', 'wifi', 'like', 'web', 'browser', 'facebook', 'app', 'basic', 'game', 'seem', 'work', 'fine', 'well', 'run', 'without', 'hitch', 'downsid', 'see', 'outsid', 'not', 'capabl', 'great', 'phone', 'price', 'would', 'love', 'get', 'anoth', 'one', 'seller', 'receiv', 'item', 'discount', 'price', 'exchang', 'honest', 'unbias', 'review'], ['phone', 'pretti', 'neat', 'price', 'impress', 'especi', 'unlock', 'use', 'carrier', 'larg', 'sim', 'card', 'phone', 'not', 'support', 'lte', 'internet', 'support', 'mean', 'internet', 'tad', 'slower', 'phone', 'support', 'oper', 'much', 'like', 'phone', 'come', 'contact', 'featur', 'quad', 'core', 'processor', 'ram', 'megapixel', 'front', 'camera', 'megapixel', 'back', 'camera', 'also', 'includ', 'dual', 'flash', 'one', 'front', 'one', 'back', 'pretti', 'impress', 'wifi', 'enabl', 'run', 'wifi', 'home', 'sim', 'card', 'current', 'avail', 'back', 'phone', 'flexibl', 'thin', 'care', 'take', 'back', 'small', 'piec', 'tape', 'batteri', 'connector', 'make', 'sure', 'batteri', 'charg', 'use', 'current', 'case', 'avail', 'phone', 'care', 'handl', 'overal', 'i', 'happi', 'phone', 'everyth', 'need', 'afford', 'altern', 'shop', 'store', 'expens', 'support', 'mani', 'app', 'mobil', 'hotspot', 'youtub', 'facebook', 'email', 'messag', 'bluetooth', 'music', 'pros', 'function', 'wifi', 'data', 'use', 'huge', 'front', 'back', 'quad', 'core', 'come', 'screen', 'protector', 'clear', 'larg', 'font', 'optionscon', 'lack', 'case', 'accessori', 'camera', 'qualiti', 'could', 'support', 'would', 'slight', 'sound', 'distort', 'use', 'speaker', 'way', 'musici', 'would', 'definit', 'repurchas', 'perfect', 'mother', 'use', 'phone', 'work', 'messag', 'receiv', 'item', 'free', 'exchang', 'honest', 'unbias', 'authent', 'review', 'thorough', 'test', 'product', 'review', 'take', 'pride', 'inform', 'potenti', 'custom', 'perk', 'flaw', 'product', 'affili', 'seller', 'not', 'oblig', 'leav', 'posit', 'review'], ['let', 'begin', 'say', 'wonder', 'cellphon', 'impress', 'qualiti', 'featur', 'capabl', 'compar', 'lead', 'smartphon', 'io', 'market', 'today', 'reason', 'price', 'open', 'box', 'contain', 'accessori', 'need', 'cellphon', 'name', 'usb', 'charger', 'manual', 'batteri', 'pack', 'headphon', 'also', 'extra', 'case', 'screen', 'protector', 'normal', 'not', 'includ', 'buy', 'cellphon', 'love', 'dual', 'camera', 'front', 'back', 'smartphon', 'featur', 'would', 'want', 'like', 'camera', 'messag', 'bluetooth', 'capabl', 'wifi', 'clock', 'calcul', 'wallpap', 'calendar', 'email', 'gps', 'fm', 'download', 'ton', 'app', 'play', 'store', 'got', 'white', 'color', 'love', 'light', 'thin', 'download', 'app', 'quick', 'respons', 'touchscreen', 'well', 'receiv', 'smartphon', 'discount', 'honest', 'unbias', 'review', 'review', 'complet', 'base', 'overal', 'person', 'experi', 'use', 'product', 'leav', 'review', 'help', 'custom', 'make', 'good', 'buy', 'decis', 'definit', 'would', 'recommend', 'cellphon', 'excel', 'buy', 'get', 'packag', 'plus', 'unlock', 'use', 'gsm', 'provid', 'not', 'mention', 'also', 'dual', 'sim', 'card', 'slot', 'great', 'coverag', 'i', 'pleas', 'new', 'cellphon', 'definit', 'awesom', 'buy'], ['good'], ['get', 'father', 'law', 'sinc', 'mother', 'law', 'say', 'say', 'not', 'hear', 'rington', 'complain', 'loud', 'good', 'hear', 'love', 'much', 'final', 'not', 'complain', 'not', 'hear', 'anymor', 'complain', 'loud', 'hahaha'], ['phone', 'benefit', 'samsung', 'inflat', 'price', 'love', 'screen', 'size', 'bigger', 'note', 'guy', 'make', 'view', 'better', 'harder', 'find', 'realli', 'cool', 'case', 'well', 'worth', 'lack', 'accesori', 'phone'], ['not', 'buy', 'sturdi', 'phone', 'capabl', 'connect', 'horribl', 'bought', 'tri', 'save', 'end', 'end', 'buy', 'blu', 'phone', 'anyway', 'not', 'get', 'data', 'phone', 'spend', 'extra', 'get', 'blu', 'phone', 'amaz'], ['perfect', 'except', 'need', 'sd', 'card', 'day', 'one', 'intern', 'memori', 'low'], ['not', 'mobil', 'sim', 'card', 'fit', 'insid', 'sim', 'slot', 'say', 'phone', 'also', 'insid', 'mobil', 'phone', 'lie', 'mayb', 'differ', 'type', 'mobil', 'sim', 'card', 'not', 'know', 'mine', 'not', 'fit'], ['bought', 'mani', 'phone', 'model', 'friend', 'use', 'work', 'perfect', 'first', 'month', 'coupl', 'month', 'later', 'problem', 'came', 'mine', 'one', 'use', 'restart', 'phone', 'convers', 'contact', 'applicaion', 'give', 'error', 'close', 'alarm', 'mode', 'not', 'work', 'tri', 'phone', 'call', 'take', 'long', 'beep', 'dial', 'not', 'factori', 'unlock', 'uninstal', 'app', 'not', 'need', 'first', 'model', 'gps', 'work', 'great', 'one', 'not', 'would', 'not', 'recomend', 'model', 'big', 'problem', 'look', 'like', 'model', 'manufactur', 'exclus', 'metro', 'pcs', 'use', 'usa', 'not', 'posibl', 'updat', 'updat', 'avail', 'done', 'root', 'problem', 'updat', 'last', 'problem', 'time'], ['review', 'day', 'pro', 'top', 'bar', 'show', 'quick', 'preview', 'pull', 'show', 'side', 'top', 'bottom', 'fantast', 'upon', 'buy', 'great', 'start', 'download', 'app', 'usual', 'l', 'phone', 'drain', 'averag', 'rate', 'magic', 'drop', 'time', 'drain', 'slowli', 'without', 'magic', 'drop', 'even', 'wifi', 'use', 'spotifi', 'pinterest', 'time', 'good', 'bloatwar', 'avg', 'antivirus', 'facebook', 'twitter', 'chrome', 'drive', 'hangout', 'weather', 'wifi', 'transfer', 'adob', 'reader', 'nfc', 'tag', 'radio', 'wifi', 'display', 'app', 'button', 'not', 'outdat', 'say', 'display', 'meh', 'look', 'good', 'tap', 'screen', 'wake', 'good', 'lay', 'flat', 'not', 'pick', 'press', 'power', 'not', 'need', 'sign', 'password', 'access', 'basic', 'pull', 'phone', 'die', 'app', 'open', 'turn', 'like', 'comput', 'uninstal', 'factori', 'app', 'not', 'run', 'googl', 'delet', 'fb', 'twitter', 'not', 'delet', 'youtub', 'almost', 'song', 'overlap', 'sec', 'know', 'song', 'pick', 'orient', 'not', 'need', 'featur', 'oober', 'guess', 'could', 'work', 'button', 'left', 'volum', 'right', 'weird', 'access', 'certain', 'button', 'wake', 'sleep', 'like', 'camera', 'messag', 'not', 'intuit', 'like', 'lot', 'set', 'option', 'univers', 'set', 'button', 'like', 'main', 'home', 'page', 'like', 'samsung', 'press', 'home', 'button', 'goe', 'last', 'page', 'button', 'instead', 'backward', 'play', 'button', 'back', 'upsid', 'triangl', 'home', 'circl', 'instead', 'hous', 'show', 'open', 'app', 'squar', 'design', 'bug', 'corrol', 'seal', 'button', 'bar', 'take', 'far', 'much', 'space', 'make', 'screen', 'tap', 'text', 'time', 'hrs', 'unbox', 'check', 'music', 'set', 'press', 'song', 'play', 'librari', 'often', 'skip', 'song', 'sometim', 'sometim', 'much', 'six', 'thought', 'mayb', 'file', 'type', 'press', 'backward', 'button', 'next', 'paus', 'not', 'main', 'select', 'play', 'next', 'queue', 'press', 'fast', 'forward', 'play', 'annoy', 'hope', 'put', 'song', 'want', 'playlist', 'solv', 'unless', 'skip', 'accept', 'compar', 'iphon', 'samsung', 'mean', 'realli', 'spoil', 'realli', 'need', 'call', 'text', 'camera', 'use', 'tablet', 'comput', 'app', 'bull', 'would', 'still', 'rather', 'user', 'interfac', 'get', 'need', 'die', 'not', 'turn', 'surviv', 'wks', 'without'], ['devic', 'realli', 'enjoy', 'use', 'everyth', 'pretti', 'good', 'gripe', 'would', 'bubbl', 'icon', 'nitpick', 'inform', 'devic', 'pleas', 'search', 'eric', 'drummond', 'youtub'], ['i', 'zte', 'awe', 'lg', 'iphon', 'idol', 'idol', 'phone', 'slim', 'light', 'perfect', 'size', 'pocket', 'web', 'brows', 'idol', 'larg', 'keep', 'comfort', 'pocket', 'without', 'break', 'screen', 'yellow', 'white', 'like', 'better', 'read', 'screen', 'idol', 'bright', 'bluish', 'white', 'often', 'hurt', 'eye', 'screen', 'reflect', 'remedi', 'matt', 'screen', 'protector', 'batteri', 'mah', 'surpris', 'suffici', 'stream', 'pandora', 'whole', 'day', 'alway', 'thought', 'need', 'mah', 'whole', 'day', 'oper', 'new', 'version', 'android', 'surpris', 'batteri', 'sound', 'phone', 'speaker', 'loud', 'clear', 'depth', 'definit', 'not', 'super', 'bass', 'like', 'big', 'speaker', 'review', 'claim', 'strang', 'ring', 'notif', 'decreas', 'volum', 'headphon', 'plug', 'definit', 'softwar', 'bug', 'alcatel', 'straighten', 'sound', 'speaker', 'good', 'jbl', 'except', 'poor', 'job', 'sound', 'enhanc', 'headphon', 'remov', 'one', 'star', 'cheap', 'earbud', 'less', 'tri', 'idol', 'sound', 'weak', 'bass', 'turn', 'jbl', 'audio', 'effect', 'attempt', 'creat', 'surround', 'sound', 'mid', 'frequenc', 'correspond', 'human', 'voic', 'result', 'decreas', 'clariti', 'muddi', 'sound', 'includ', 'jbl', 'earphon', 'worst', 'bunch', 'tri', 'clear', 'high', 'complet', 'lack', 'bass', 'would', 'not', 'pay', 'even', 'earbud', 'came', 'iphon', 'crystal', 'clariti', 'pump', 'bass', 'bass', 'booster', 'app', 'sound', 'becam', 'accept', 'listen', 'pandora', 'pleasant', 'surpris', 'back', 'mpx', 'apertur', 'camera', 'model', 'automat', 'mode', 'take', 'good', 'pic', 'good', 'light', 'automat', 'not', 'smart', 'enough', 'low', 'light', 'turn', 'manual', 'mode', 'set', 'timer', 'avoid', 'camera', 'shake', 'iso', 'manual', 'set', 'abl', 'get', 'sharp', 'selfi', 'see', 'skin', 'pore', 'without', 'much', 'nois', 'even', 'dim', 'light', 'indoor', 'earli', 'morn', 'cloudi', 'day', 'comparison', 'iphon', 'automat', 'mode', 'rare', 'produc', 'sharp', 'pic', 'dim', 'light', 'like', 'indoor', 'day', 'lg', 'got', 'smear', 'fine', 'detail', 'like', 'eyelash', 'skin', 'pore', 'due', 'agress', 'nois', 'reduct', 'pic', 'get', 'idol', 'come', 'color', 'close', 'eye', 'see', 'slight', 'satur', 'red', 'comparison', 'lg', 'tendenc', 'produc', 'wash', 'bluer', 'term', 'everyday', 'task', 'idol', 'fast', 'version', 'even', 'faster', 'anim', 'close', 'open', 'app', 'slide', 'screen', 'one', 'one', 'version', 'stutter', 'idol', 'slower', 'processor', 'spec', 'control', 'fewer', 'screen', 'pixel', 'better', 'optim', 'rare', 'play', 'game', 'phone', 'not', 'compar', 'two', 'phone', 'depart', 'phone', 'stutter', 'brows', 'desktop', 'version', 'web', 'page', 'like', 'amazon', 'even', 'power', 'desktop', 'comput', 'download', 'imag', 'site', 'program', 'fast', 'phone', 'video', 'processor', 'occasion', 'slight', 'stutter', 'not', 'defray', 'pleasant', 'web', 'brows'], ['excel', 'budget', 'android', 'phone', 'unhappi', 'previous', 'phone', 'time', 'felt', 'like', 'find', 'right', 'phone', 'decent', 'price', 'imposs', 'want', 'lte', 'unlock', 'gsm', 'intern', 'expand', 'storag', 'sd', 'slot', 'need', 'less', 'comfort', 'fit', 'hand', 'wallet', 'found', 'compact', 'phone', 'would', 'work', 'would', 'cost', 'upword', 'use', 'phone', 'fit', 'criteria', 'know', 'decreas', 'size', 'downgrad', 'spec', 'version', 'simpl', 'smartphon', 'user', 'not', 'need', 'top', 'line', 'phone', 'phone', 'lighter', 'better', 'spec', 'old', 'phone', 'happi'], ['phone', 'great', 'smaller', 'phone', 'market', 'time', 'purchas', 'coupl', 'month', 'spec', 'fantast', 'price', 'os', 'liveabl', 'previous', 'phone', 'nexus', 'hope', 'good', 'next', 'coupl', 'year', 'not', 'i', 'not', 'much', 'money', 'win', 'win', 'qualiti', 'product'], ['star', 'phone', 'star', 'price', 'wick', 'fat', 'purpos', 'document', 'edit', 'onlin', 'bank', 'pay', 'bill', 'uber', 'sketch', 'torrent', 'heavi', 'map', 'usag', 'scream', 'i', 'got', 'app', 'instal', 'run', 'simultan', 'without', 'hiccup', 'speed', 'killer', 'thing', 'not', 'heavi', 'game', 'year', 'old', 'minecraft', 'goat', 'simul', 'type', 'game', 'noth', 'press', 'hardwar', 'deal', 'mileag', 'may', 'vari', 'though', 'would', 'not', 'shock', 'handl', 'well', 'enough', 'final', 'note', 'dual', 'front', 'speaker', 'clearest', 'loudest', 'i', 'own', 'phone', 'extern', 'bluetooth', 'speaker', 'switch', 'phone', 'speaker', 'sever', 'peopl', 'not', 'believ', 'boom', 'i', 'never', 'own', 'alcatel', 'never', 'heard', 'amazon', 'search', 'like', 'everi', 'product', 'bought', 'never', 'given', 'dime', 'toward', 'discount', 'free', 'gear', 'hint', 'hint', 'amazon'], ['nice'], ['phone', 'sleek', 'design', 'comfort', 'froze', 'three', 'occas', 'multitask', 'end', 'sever', 'app', 'run', 'make', 'call', 'happen', 'three', 'differ', 'occas', 'one', 'month', 'use', 'phone', 'stolen', 'colleagu', 'love', 'phone', 'want', 'place', 'order', 'sound', 'good', 'loud', 'appropri', 'pictur', 'clear', 'music', 'player', 'turntabl', 'fantast', 'game', 'also', 'fun', 'revers', 'os', 'bomb', 'place', 'anoth', 'order', 'replac', 'miss', 'phone', 'alreadi', 'love', 'volum', 'key', 'camera', 'shutter', 'make', 'take', 'multipl', 'shot', 'much', 'easier', 'conveni', 'camera', 'even', 'activ', 'screen', 'lock', 'without', 'unlock', 'phone', 'final', 'love', 'eye', 'unlock', 'difficult', 'use', 'featur', 'night', 'insuffici', 'light', 'complement', 'anoth', 'option', 'pin', 'code', 'tri', 'lock', 'phone', 'mani', 'time', 'turn', 'never', 'seem', 'get', 'right', 'tri', 'though', 'not', 'much', 'time', 'experi', 'featur', 'phone', 'loos', 'sure', 'spend', 'time', 'next', 'one', 'bad', 'inch', 'singl', 'sim', 'would', 'love', 'dual', 'sim', 'also', 'wish', 'inbuilt', 'radio', 'wireless', 'could', 'play', 'without', 'insert', 'earpiec', 'jack', 'deliveri', 'content', 'got', 'time', 'box', 'contain', 'item', 'outlin', 'amazon', 'new', 'work'], ['not', 'unlock', 'phone', 'return'], ['rare', 'write', 'review', 'believ', 'greater', 'good', 'share', 'experi', 'iphon', 'iphon', 'past', 'reason', 'iphon', 'past', 'reliabl', 'batteri', 'life', 'howev', 'switch', 'anoth', 'phone', 'broke', 'iphon', 'not', 'want', 'pay', 'premium', 'price', 'get', 'anoth', 'phone', 'look', 'option', 'best', 'valu', 'one', 'touch', 'idol', 'hidden', 'gem', 'far', 'extrem', 'happi', 'phone', 'imag', 'qualiti', 'superb', 'even', 'though', 'screen', 'resolut', 'not', 'find', 'differ', 'iphon', 'higher', 'resolut', 'phone', 'fact', 'vibrant', 'screen', 'make', 'much', 'appeal', 'rather', 'neutral', 'iphon', 'next', 'sound', 'qualiti', 'speaker', 'wow', 'not', 'believ', 'phone', 'incred', 'speaker', 'love', 'watch', 'netflix', 'youtub', 'listen', 'music', 'phone', 'wife', 'not', 'figur', 'sound', 'come', 'cell', 'phone', 'televis', 'next', 'import', 'factor', 'batteri', 'phone', 'till', 'observ', 'life', 'good', 'iphon', 'phone', 'juic', 'left', 'toward', 'end', 'day', 'iphon', 'surpris', 'fact', 'though', 'phone', 'drain', 'batteri', 'navig', 'app', 'use', 'not', 'complain', 'app', 'start', 'run', 'fine', 'occas', 'app', 'may', 'not', 'fire', 'case', 'would', 'free', 'memori', 'would', 'work', 'fine', 'hard', 'best', 'featur', 'phone', 'form', 'factor', 'phone', 'thin', 'immedi', 'draw', 'attent', 'besid', 'thin', 'light', 'not', 'feel', 'pocket', 'perfect', 'size', 'phone', 'not', 'big', 'not', 'small', 'perfect', 'read', 'watch', 'chat', 'day', 'day', 'activ', 'love', 'phone', 'not', 'believ', 'wast', 'money', 'iphon', 'much', 'better', 'option', 'android', 'realli', 'give', 'much', 'better', 'option', 'custom', 'widget', 'would', 'suggest', 'new', 'user', 'spend', 'sometim', 'person', 'phone', 'better', 'wallpap', 'widget', 'chang', 'default', 'option', 'app', 'love', 'much', 'go', 'would', 'bet', 'amaz'], ['not', 'buy', 'phone', 'fraudul', 'list', 'not', 'small', 'crappi', 'phone', 'box', 'thatvsay', 'alcatel', 'suck'], ['husband', 'love', 'new', 'phone'], ['good', 'phone'], ['iphon', 'freak', 'look', 'add', 'anoth', 'phone', 'moder', 'price', 'one', 'serv', 'iphon', 'differ', 'os', 'appl', 'io', 'phone', 'android', 'os', 'prefer', 'choic', 'gave', 'search', 'not', 'get', 'need', 'moder', 'price', 'android', 'phone', 'till', 'saw', 'friend', 'inch', 'version', 'idol', 'brows', 'like', 'alcatel', 'phone', 'fast', 'good', 'camera', 'good', 'speaker', 'good', 'batteri', 'life', 'minut', 'watch', 'video', 'batteri', 'not', 'drain', 'would', 'iphon', 'bought', 'one', 'person', 'use', 'due', 'cute', 'size', 'sell', 'countri', 'bigger', 'screen', 'phone', 'sell', 'faster', 'plus', 'better', 'two', 'term', 'perform', 'year', 'none', 'buyer', 'call', 'complain', 'anyth', 'special', 'someon', 'need', 'android', 'os', 'phone', 'phone', 'came', 'mind', 'idol', 'reason', 'buy', 'issu', 'receiv', 'phone', 'wait', 'till', 'issu', 'resolv', 'present', 'phone', 'love', 'alway', 'prais', 'mine', 'everi', 'time', 'play', 'even', 'screen', 'size', 'bigger', 'mine'], ['i', 'absolut', 'amaz', 'sound', 'speaker', 'htc', 'jbl', 'speaker', 'idol', 'sound', 'louder', 'better', 'great', 'phone', 'price', 'thing', 'kind', 'dissapont', 'camera', 'resolut', 'low', 'light', 'dark', 'space', 'not', 'good', 'compar', 'htc', 'camera', 'overal', 'happi', 'purchas', 'bought', 'second', 'idol', 'phone', 'first', 'one', 'realli', 'worth', 'also', 'doubl', 'tap', 'not', 'react', 'quick', 'htc', 'big', 'deal', 'thing', 'love', 'idol', 'revers', 'screen', 'headphon', 'jbl', 'great', 'add', 'great', 'htc', 'user', 'tell', 'phone', 'near', 'high', 'end', 'class', 'phone', 'look', 'feel', 'sound', 'amaz', 'batteri', 'life', 'worri', 'end', 'day', 'usag', 'go', 'home', 'night', 'charg', 'recommend'], ['bought', 'phone', 'wife', 'screen', 'crack', 'moto', 'like', 'nice', 'spec', 'afford', 'price', 'good', 'packag', 'look', 'like', 'great', 'phone', 'screen', 'nice', 'batteri', 'decent', 'camera', 'surpris', 'us', 'qualiti', 'pictur', 'well', 'idol', 'last', 'week', 'screen', 'went', 'bonker', 'made', 'phone', 'useless', 'screen', 'went', 'interest', 'shade', 'green', 'icon', 'shadow', 'make', 'imposs', 'use', 'see', 'pictur', 'amazon', 'great', 'offer', 'full', 'refund', 'product', 'along', 'screen', 'protector', 'case', 'bought', 'realli', 'want', 'like', 'idol', 'alcatel', 'need', 'work', 'qualiti', 'product'], ['lot', 'folk', 'post', 'glow', 'review', 'phone', 'simpli', 'say', 'also', 'love', 'phone', 'reason', 'everyon', 'els', 'love', 'fantast', 'valu', 'primari', 'reason', 'shop', 'new', 'phone', 'previous', 'phone', 'unreli', 'gps', 'unit', 'could', 'not', 'find', 'much', 'commentari', 'gps', 'unit', 'alcatel', 'hint', 'might', 'better', 'took', 'chanc', 'like', 'use', 'phone', 'ramblr', 'app', 'creat', 'gps', 'track', 'hike', 'previous', 'phone', 'would', 'take', 'long', 'time', 'five', 'minut', 'not', 'unusu', 'get', 'satellit', 'fix', 'could', 'start', 'track', 'phone', 'would', 'give', 'bad', 'point', 'occasion', 'sometim', 'freez', 'point', 'middl', 'hike', 'requir', 'extens', 'edit', 'hike', 'correct', 'trail', 'need', 'phone', 'better', 'gps', 'unit', 'found', 'alcatel', 'one', 'touch', 'idol', 'gps', 'phone', 'work', 'satellit', 'fix', 'start', 'hike', 'take', 'second', 'track', 'continu', 'flawless', 'throughout', 'hike', 'look', 'android', 'phone', 'reliabl', 'gps', 'unit', 'unit', 'fine', 'job'], ['use', 'coupl', 'week', 'work', 'quit', 'nice', 'great', 'improv', 'previous', 'alcatel', 'phone', 'wish', 'phone', 'specif', 'smaller', 'size', 'like', 'less', 'torn', 'one', 'alcatel', 'onetouch', 'idol', 'global', 'unlock', 'lte', 'smartphon', 'hd', 'howev', 'one', 'much', 'better', 'aspect', 'except', 'size', 'compromis', 'not', 'would', 'probabl', 'closer', 'star'], ['i', 'month', 'come', 'htc', 'awesom', 'phone', 'replac', 'app', 'camera', 'app', 'switch', 'camera', 'googl', 'camera', 'also', 'decent', 'huge', 'differ', 'launcher', 'ok', 'high', 'recommend', 'switch', 'nova', 'free', 'high', 'review', 'launcher', 'like', 'action', 'go', 'etc', 'anoth', 'huge', 'differ', 'realiz', 'instal', 'du', 'batteri', 'saver', 'three', 'thing', 'great', 'phone', 'incred', 'audio', 'good', 'camera', 'superb', 'batteri', 'life', 'use', 'go', 'end', 'day', 'htc', 'phone', 'instal', 'du', 'batteri', 'saver', 'i', 'high', 'end', 'day', 'recommend', 'daughter', 'instal', 'lg', 'said', 'alreadi', 'not', 'help', 'much', 'may', 'phone', 'depend', 'i', 'not', 'shill', 'app', 'know', 'work', 'great', 'phone', 'realli', 'like', 'fact', 'not', 'come', 'much', 'bloatwar', 'fact', 'uninstal', 'almost', 'want', 'absolut', 'great', 'deal', 'price', 'not', 'even', 'debat', 'pay', 'avoid', 'provid', 'contract', 'not', 'disappoint', 'also', 'custom', 'servic', 'great', 'accident', 'deactiv', 'esn', 'kill', 'phone', 'send', 'repair', 'receiv', 'monday', 'ship', 'back', 'tuesday', 'receiv', 'thursday'], ['i', 'spare', 'spec', 'easili', 'found', 'elsewher', 'phone', 'design', 'howev', 'well', 'balanc', 'rang', 'telephon', 'level', 'price', 'sound', 'fantast', 'great', 'camera', 'radio', 'communic', 'everi', 'frequenc', 'band', 'us', 'includ', 'provid', 'use', 'under', 'network', 'custom', 'lte', 'band', 'mhz', 'inde', 'penetr', 'build', 'like', 'custom', 'previous', 'enjoy', 'enabl', 'us', 'locat', 'search', 'mhz', 'detail', 'updat', 'radio', 'design', 'android', 'version', 'make', 'phone', 'cheaper', 'version', 'previous', 'generat', 'phone', 'instead', 'modern', 'phone', 'albeit', 'bit', 'easi', 'comput', 'horsepow', 'need', 'top', 'process', 'power', 'look', 'big', 'name', 'flagship', 'phone', 'otherwis', 'idol', 'like', 'fill', 'need', 'consid', 'ad', 'sd', 'card', 'lot', 'media', 'photo'], ['forget', 'like', 'devic', 'love', 'sound', 'front', 'face', 'stereo', 'speaker', 'amaz', 'need', 'separ', 'bluetooth', 'speaker', 'anymor', 'lcd', 'screen', 'pretti', 'amaz', 'person', 'prefer', 'screen', 'comparison', 'screen', 'hold', 'camera', 'pretti', 'basic', 'produc', 'great', 'shot', 'auto', 'mode', 'well', 'manual', 'control', 'thin', 'light', 'point', 'feel', 'like', 'mayb', 'batteri', 'miss', 'phone', 'gut', 'durabl', 'though', 'test', 'accid', 'kid', 'drop', 'phone', 'slid', 'across', 'tile', 'kitchen', 'floor', 'screen', 'show', 'sign', 'damag', 'without', 'screen', 'protector', 'appli', 'case', 'wish', 'compani', 'includ', 'clear', 'case', 'though', 'usb', 'type', 'c', 'water', 'resist', 'wish', 'list'], ['great', 'phone', 'money', 'major', 'complaint', 'high', 'recommend'], ['love', 'phone', 'i', 'not', 'tech', 'person', 'absolut', 'appreci', 'valu', 'get', 'phone', 'not', 'care', 'speed', 'rate', 'etc', 'everyday', 'typic', 'phone', 'use', 'not', 'make', 'differ', 'high', 'recommend', 'check', 'phone'], ['great'], ['guy', 'excel', 'phone', 'moto', 'g', 'play', 'jbl', 'speaker', 'headphon', 'buy', 'first', 'see', 'magic', 'good', 'budget', 'phone', 'dollar'], ['first', 'thing', 'first', 'phone', 'huge', 'love', 'glad', 'not', 'flagship', 'phone', 'either', 'two', 'price', 'phone', 'exact', 'softwar', 'hardwar', 'phone', 'may', 'better', 'not', 'flagship', 'not', 'forc', 'sign', 'person', 'email', 'googl', 'account', 'pop', 'sim', 'card', 'good', 'go', 'phone', 'video', 'display', 'amaz', 'crisp', 'clear', 'tend', 'phone', 'lowest', 'bright', 'set', 'time', 'preserv', 'batteri', 'life', 'video', 'still', 'pictur', 'video', 'phone', 'take', 'cool', 'love', 'time', 'laps', 'save', 'video', 'file', 'wife', 'phone', 'love', 'use', 'snapchat', 'even', 'though', 'front', 'like', 'play', 'game', 'mine', 'size', 'thing', 'make', 'easi', 'ram', 'good', 'almost', 'download', 'play', 'modern', 'day', 'app', 'game', 'extrem', 'well', 'includ', 'pokemon', 'go', 'camera', 'work', 'pokemon', 'go', 'well'], ['best', 'mid', 'rang', 'smart', 'phone', 'market', 'bought', 'amaz', 'perform', 'great', 'absolut', 'love', 'purchas', 'anoth', 'phone', 'septemb', 'replac', 'origin', 'one', 'screen', 'broken', 'one', 'morn', 'week', 'ago', 'law', 'woke', 'phone', 'longer', 'work', 'month', 'past', 'return', 'date', 'phone', 'sold', 'almost', 'twice', 'paid', 'new', 'batteri', 'not', 'fix', 'dead', 'phone', 'issu', 'r', 'sick', 'new', 'phone', 'not', 'work'], ['make', 'sure', 'get', 'case', 'temper', 'glass', 'screen', 'protector', 'mani', 'review', 'state', 'glass', 'low', 'qualiti', 'phone', 'thing', 'i', 'would', 'like', 'see', 'idol', 'camera', 'qualitybett', 'build', 'qualiti', 'includ', 'screen', 'less', 'lagandroid', 'marshmallowif', 'issu', 'phone', 'would', 'sure', 'one', 'best', 'market'], ['usual', 'not', 'rush', 'write', 'review', 'howev', 'not', 'take', 'much', 'time', 'conclud', 'somewhat', 'mediocr', 'devic', 'fall', 'terribl', 'disappoint', 'short', 'satisfact', 'consid', 'rate', 'scale', 'star', 'i', 'explain', 'depend', 'look', 'cell', 'phone', 'rate', 'go', 'least', 'seen', 'review', 'i', 'cut', 'chase', 'sound', 'system', 'amaz', 'point', 'music', 'play', 'thing', 'play', 'lap', 'top', 'speaker', 'believ', 'not', 'carri', 'mini', 'boombox', 'alcatel', 'get', 'star', 'area', 'loud', 'nonetheless', 'pleas', 'care', 'consider', 'go', 'sound', 'like', 'person', 'relat', 'nice', 'suv', 'speaker', 'system', 'look', 'okay', 'friend', 'thought', 'phone', 'someth', 'end', 'phone', 'super', 'screen', 'resolut', 'okay', 'not', 'hd', 'sorri', 'hear', 'review', 'peopl', 'receiv', 'defect', 'doubl', 'tap', 'function', 'almost', 'not', 'know', 'alcatel', 'softwar', 'problem', 'like', 'someth', 'devic', 'star', 'receiv', 'devic', 'problem', 'find', 'realli', 'hard', 'believ', 'annoy', 'use', 'power', 'button', 'turn', 'sim', 'card', 'not', 'read', 'applic', 'overal', 'phone', 'interfac', 'take', 'time', 'take', 'use', 'not', 'think', 'screen', 'scratch', 'phone', 'sluggish', 'annoy', 'not', 'expect', 'dollar', 'phone', 'old', 'lg', 'metro', 'pcs', 'phone', 'honesti', 'not', 'know', 'slower', 'faster', 'time', 'applic', 'stop', 'work', 'togeth', 'uninstal', 'instal', 'wtf', 'caveat', 'employ', 'subsid', 'cost', 'meant', 'paid', 'pocket', 'cell', 'phone', 'tri', 'best', 'object', 'also', 'say', 'would', 'not', 'paid', 'bring', 'item', 'number', 'coverag', 'drop', 'random', 'care', 'mani', 'star', 'review', 'phone', 'amazon', 'along', 'laggy', 'phone', 'drop', 'review', 'solid', 'star', 'one', 'star', 'not', 'make', 'differ', 'book', 'review', 'hesit', 'rate', 'star', 'made', 'clear', 'not', 'cri', 'percent', 'time', 'not', 'hear', 'someon', 'bar', 'drop', 'phone', 'not', 'drop', 'signal', 'good', 'area', 'good', 'recept', 'statement', 'compar', 'cell', 'phone', 'hous', 'not', 'make', 'sens', 'second', 'caveat', 'not', 'pay', 'month', 'servic', 'servic', 'still', 'would', 'not', 'want', 'pay', 'servic', 'good', 'look', 'toy', 'phone', 'good', 'speaker', 'nope', 'would', 'better', 'choic', 'presal', 'price', 'stay', 'less', 'phone', 'worth', 'opinion', 'chipset', 'ram', 'bit', 'mid', 'rang', 'term', 'spec', 'noth', 'great', 'honest', 'especi', 'enter', 'age', 'ram', 'cell', 'phone', 'snapdragon', 'chipset', 'rang', 'melta', 'kit', 'batteri', 'life', 'least', 'case', 'not', 'impress', 'not', 'know', 'devic', 'use', 'phone', 'not', 'slight', 'not', 'heavi', 'appear', 'batteri', 'drain', 'rather', 'quick', 'compar', 'review', 'onlin', 'boast', 'phone', 'batteri', 'phone', 'get', 'warm', 'point', 'hot', 'near', 'camera', 'use', 'not', 'even', 'use', 'hour', 'use', 'alarm', 'not', 'sure', 'normal', 'not', 'not', 'know', 'yet', 'want', 'hassl', 'buy', 'anoth', 'phone', 'send', 'back', 'get', 'money', 'etc', 'even', 'though', 'amazon', 'seem', 'well', 'wonder', 'anyon', 'els', 'similar', 'dilemma', 'anyon', 'return', 'get', 'money', 'back', 'bought', 'anoth', 'alcatel', 'someth', 'els', 'hope', 'review', 'help', 'someon', 'go', 'ahead', 'buy', 'pleas', 'read', 'review', 'seem', 'like', 'us', 'got', 'bad', 'batch', 'mayb', 'go', 'tri', 'luck', 'could', 'easili', 'solid', 'star', 'not', 'know', 'star', 'honest', 'also', 'picki', 'lot', 'homework', 'get', 'even', 'doubt', 'guess', 'never', 'know', 'till', 'one', 'hand', 'good', 'luck', 'ya'], ['love', 'phone', 'previous', 'galaxi', 'nexus', 'get', 'long', 'tooth', 'phone', 'not', 'lte', 'like', 'nexus', 'get', 'phone', 'alreadi', 'lot', 'area', 'north', 'south', 'carolina', 'not', 'hspa', 'signal', 'edg', 'lte', 'annoy', 'wife', 'would', 'fume', 'slow', 'connect', 'nexus', 'i', 'run', 'solid', 'lte', 'thing', 'not', 'nexus', 'line', 'wireless', 'charg', 'one', 'nfc', 'mobil', 'payment', 'easili', 'connect', 'bluetooth', 'devic', 'plus', 'addit', 'microsd', 'card', 'slot', 'radio', 'good', 'stereo', 'speaker', 'although', 'not', 'loudest', 'truli', 'day', 'batteri', 'great', 'valu', 'well', 'big', 'phone', 'larg', 'hand', 'find', 'hard', 'use', 'return', 'get', 'huge', 'screen', 'work', 'well', 'bright', 'florida', 'sun', 'surpris', 'light', 'thing', 'without', 'case', 'larg', 'hand', 'finger', 'would', 'frequent', 'touch', 'screen', 'phone', 'thing', 'unintent', 'got', 'one', 'lk', 'ultra', 'jelli', 'seri', 'tpu', 'gel', 'rubber', 'clear', 'frost', 'plastic', 'take', 'care', 'problem', 'would', 'gotten', 'manufactur', 'case', 'sold'], ['good', 'devic', 'i', 'day', 'far', 'good', 'love', 'speaker', 'screen', 'front', 'face', 'speaker', 'awesom', 'media', 'comsupt', 'get', 'lte', 'att', 'way', 'straight', 'talk', 'look', 'phone', 'tech', 'heavi', 'root', 'play', 'graphic', 'heavi', 'game', 'without', 'lag', 'get', 'asus', 'one', 'plus', 'like', 'want', 'good', 'around', 'phone', 'beauti', 'screen', 'great', 'speaker', 'get', 'lte', 'good', 'batteri', 'life', 'get'], ['excel'], ['nice', 'phone', 'fast', 'realli', 'good', 'look', 'gotten', 'mani', 'compliment', 'nice', 'camera', 'good', 'phone', 'overal'], ['excel', 'phone', 'drop', 'broke', 'day', 'arriv'], ['phone', 'almost', 'one', 'year', 'two', 'week', 'wrote', 'review', 'alcatel', 'websit', 'dismay', 'check', 'back', 'review', 'wrote', 'may', 'star', 'gave', 'alter', 'star', 'bump', 'two', 'four', 'star', 'wrote', 'edit', 'shorten', 'bad', 'part', 'review', 'absolut', 'disgust', 'phone', 'not', 'bad', 'price', 'custom', 'servic', 'not', 'good', 'heard', 'similar', 'complaint', 'complaint', 'stem', 'question', 'updat', 'phone', 'phone', 'came', 'lollipop', 'not', 'respond', 'ask', 'custom', 'regard', 'updat', 'phone', 'not', 'websit', 'facebook', 'speak', 'speak', 'updat', 'answer', 'never', 'buy', 'phone'], ['fantast', 'screen', 'good', 'perform', 'good', 'batteri', 'life', 'overal'], ['great', 'smart', 'phone', 'get', 'bit', 'sluggish', 'time', 'time', 'still', 'like', 'big', 'thin', 'batteri', 'last', 'day', 'bang', 'buck'], ['not', 'compar', 'smartphon', 'product', 'smart', 'phone', 'i', 'ever', 'bought', 'year', 'ago', 'unlock', 'could', 'use', 'tracfon', 'account', 'mani', 'featur', 'could', 'use', 'virtual', 'realiti', 'game', 'lte', 'write', 'review', 'year', 'own', 'phone', 'say', 'still', 'total', 'happi', 'stifl', 'impuls', 'say', 'amaz', 'qualiti', 'use', 'bought', 'android', 'recent', 'updat', 'not', 'know', 'would', 'problem', 'gigabyt', 'android', 'oper', 'system', 'not', 'use', 'sd', 'card', 'effici', 'problem', 'fill', 'memori', 'mani', 'app', 'data', 'not', 'problem', 'phone', 'problem', 'oper', 'system', 'although', 'phone', 'memori', 'would', 'solut', 'phone', 'joy', 'would', 'recommend', 'anyon'], ['not', 'get', 'sim', 'remov', 'tool', 'use', 'earring', 'great', 'phone'], ['not', 'rehash', 'alreadi', 'said', 'phone', 'overal', 'think', 'good', 'packag', 'price', 'three', 'problem', 'may', 'warrant', 'return', 'fact', 'not', 'get', 'lte', 'signal', 'straighttalk', 'network', 'could', 'sim', 'card', 'relat', 'still', 'investig', 'not', 'get', 'pair', 'ford', 'sync', 'system', 'screen', 'version', 'not', 'get', 'swipe', 'function', 'keyboard', 'work', 'vivid', 'bright', 'screen', 'decent', 'speaker', 'low', 'price', 'not', 'make', 'basic', 'function', 'reli', 'everyday', 'i', 'mess', 'around', 'like', 'return', 'not', 'get', 'featur', 'work', 'i', 'come', 'nexus', 'took', 'bath', 'lake', 'i', 'miss', 'phone', 'alreadi', 'find', 'idol', 'lag', 'nexus', 'run', 'kitkat', 'not', 'turn', 'bluetooth', 'pair', 'problem', 'sync', 'end', 'follow', 'master', 'reset', 'sync', 'phone', 'pair', 'effortless', 'phone', 'media', 'audio', 'not', 'tri', 'text', 'speech', 'yet', 'though', 'download', 'googl', 'keyboard', 'app', 'swipe', 'function', 'restor', 'appar', 'well', 'document', 'issu', 'stock', 'keyboard', 'app', 'not', 'support', 'swipe', 'gestur', 'i', 'up', 'review', 'littl', 'process', 'perform', 'less', 'lag', 'would', 'garner', 'star', 'rate'], ['item', 'describ'], ['korea', 'kt', 'data', 'speed', 'not', 'good'], ['good', 'price', 'good', 'phone'], ['got', 'today', 'instal', 'app', 'test', 'cheapstylishsound', 'qualityvideoscon', 'not', 'fast', 'thought', 'would', 'beterr', 'popular', 'app', 'qualiti', 'goe', 'signific', 'zoom', 'inonc', 'awhil', 'stop', 'detect', 'sim', 'cardi', 'use', 'phone', 'sinc', 'june', 'go', 'back', 'flagship', 'lesson'], ['freez', 'often', 'load', 'app', 'slowli'], ['awesom'], ['awesom', 'phone', 'better', 'expect', 'great', 'screen', 'great', 'speaker', 'headphon'], ['bought', 'phone', 'design', 'horribl', 'sd', 'sim', 'card', 'slot', 'break', 'take', 'one', 'time', 'go', 'look', 'video', 'instal', 'sim', 'phone', 'joke', 'batteri', 'not', 'remov', 'screen', 'show', 'everi', 'finger', 'mark', 'slow', 'camera', 'not', 'good', 'either', 'thing', 'good', 'full', 'hd', 'resolut', 'larg', 'screen', 'custom', 'servic', 'alcatel', 'disgust', 'guy', 'chat', 'simpli', 'ignor', 'tri', 'connect', 'someon', 'would', 'help', 'kept', 'redirect', 'guy', 'phone', 'worth', 'overal', 'disappoint'], ['phone', 'pretti', 'good', 'want', 'buy', 'unlock', 'phone', 'use', 'gsm', 'carrier', 'feel', 'made', 'right', 'choic', 'come', 'iphon', 'plus', 'tell', 'littl', 'slower', 'brows', 'web', 'rest', 'fine', 'also', 'love', 'extend', 'memori', 'sd', 'card', 'also', 'happi', 'lte', 'i', 'pay', 'month', 'unl', 'talk', 'n', 'text', 'lte', 'not', 'beat'], ['origin', 'gave', 'phone', 'stellar', 'review', 'howev', 'phone', 'case', 'get', 'pay', 'stop', 'charg', 'week', 'miss', 'amazon', 'return', 'polici', 'window'], ['never', 'own', 'smartphon', 'alway', 'near', 'comput', 'famili', 'member', 'smartphon', 'recent', 'trip', 'amaz', 'use', 'phone', 'travel', 'uber', 'lyft', 'airbnb', 'airlin', 'inform', 'map', 'decid', 'would', 'get', 'readi', 'contract', 'renew', 'month', 'get', 'cheap', 'smartphon', 'load', 'via', 'wifi', 'connect', 'home', 'read', 'review', 'one', 'price', 'not', 'week', 'replac', 'clip', 'player', 'play', 'well', 'sound', 'incred', 'gb', 'microsd', 'music', 'hot', 'swap', 'phone', 'dual', 'slide', 'slide', 'space', 'microsd', 'sim', 'card', 'enjoy', 'radio', 'skype', 'use', 'viber', 'wifi', 'i', 'got', 'app', 'read', 'word', 'excel', 'document', 'goe', 'take', 'around', 'second', 'boot', 'visibl', 'screen', 'press', 'button', 'think', 'may', 'fool', 'mani', 'think', 'phone', 'not', 'work', 'repeat', 'hit', 'button', 'push', 'patienc', 'os', 'also', 'reboot', 'sever', 'time', 'first', 'day', 'week', 'final', 'stop', 'camera', 'take', 'good', 'pictur', 'not', 'great', 'fun', 'not', 'even', 'activ', 'phone', 'yet', 'probabl', 'cricket', 'use', 'tower', 'everyth', 'readi', 'not', 'learn', 'curv'], ['thing', 'awesom', 'batteri', 'life', 'great', 'get', 'hour', 'screen', 'time', 'half', 'bright', 'great', 'speaker', 'not', 'beaten', 'price', 'point', 'sure', 'beat', 'old', 'htc', 'one', 'boom', 'sound', 'speaker', 'bought', 'phone', 'case', 'along', 'gig', 'sandisk', 'memori', 'card', 'dollar', 'like', 'watch', 'lot', 'media', 'beauti', 'big', 'screen', 'dual', 'front', 'face', 'speaker', 'sold', 'camera', 'not', 'best', 'world', 'enough', 'social', 'media', 'take', 'real', 'nice', 'shot', 'great', 'phone'], ['size', 'perfect', 'averag', 'guy', 'larg', 'enough', 'type', 'thumb', 'small', 'enough', 'use', 'one', 'phone', 'light', 'not', 'bounc', 'around', 'pant', 'batteri', 'life', 'good', 'lite', 'user', 'cell', 'data', 'most', 'typic', 'get', 'case', 'design', 'allow', 'secur', 'fit', 'soft', 'expos', 'forward', 'face', 'speaker', 'make', 'sure', 'get', 'might', 'not', 'surviv', 'downsid', 'sd', 'card', 'tray', 'sim', 'card', 'take', 'transfer', 'larg', 'file', 'sometim', 'take', 'tri', 'get', 'card', 'align', 'insert'], ['god'], ['ok', 'got', 'nice', 'could', 'not', 'use', 'want', 'straight', 'talk', 'gmi', 'cdma', 'gsm', 'one', 'two', 'not', 'compat', 'cell', 'tower', 'live', 'rural', 'area', 'limit', 'internet', 'cell', 'phone', 'servic', 'would', 'buy', 'local', 'store', 'especi', 'local', 'walmart', 'want', 'straight', 'talk', 'like'], ['perfect'], ['excel', 'phone'], ['disappoint', 'overal', 'unlock', 'phone', 'say', 'venezuela', 'not', 'work', 'digitel', 'lte', 'failur', 'comment', 'said', 'work', 'specif'], ['expect'], ['horrib', 'custom', 'servic', 'phone', 'explod', 'one', 'month', 'vendor', 'ask', 'drop', 'water', 'drop', 'bought', 'model', 'sever', 'time', 'type', 'phone', 'tend', 'last', 'year', 'break', 'even', 'drop', 'furthermor', 'vendor', 'sell', 'new', 'phone', 'actual', 'discontinu', 'border', 'fals', 'advertis', 'not', 'mention', 'fact', 'half', 'price', 'vendor', 'sold', 'rip'], ['phone', 'not', 'work', 'long', 'give', 'star', 'owner', 'work', 'solv', 'problem', 'would', 'busi', 'recommend', 'busi', 'stand', 'product'], ['bought', 'husband', 'poor', 'sound', 'qualiti', 'difficult', 'hear', 'ever', 'talk', 'echo', 'return'], ['gsm', 'cellphon', 'greathello', 'saw', 'android', 'cell', 'phone', 'thought', 'wow', 'realli', 'look', 'nice', 'lot', 'applic', 'good', 'brand', 'phone', 'android', 'read', 'good', 'review', 'help', 'decid', 'get', 'mb', 'lot', 'cell', 'phone', 'mediatek', 'quad', 'core', 'ghz', 'processor', 'arm', 'gpu', 'inch', 'ip', 'qhd', 'screen', 'dual', 'camera', 'front', 'mp', 'back', 'mp', 'dual', 'sim', 'realli', 'good', 'work', 'cell', 'phone', 'decid', 'get', 'turn', 'straight', 'talk', 'live', 'work', 'best', 'herefor', 'feel', 'realli', 'not', 'heavi', 'light', 'phone', 'came', 'good', 'set', 'ear', 'phone', 'charg', 'usb', 'cabl', 'electr', 'adapterto', 'charg', 'also', 'clear', 'back', 'phone', 'case', 'also', 'everyth', 'need', 'got', 'sim', 'card', 'walmart', 'cent', 'cell', 'number', 'port', 'carrier', 'except', 'put', 'phone', 'plan', 'work', 'great', 'pleas', 'got', 'fulli', 'discount', 'unbias', 'review', 'need', 'question', 'answer', 'feel', 'free', 'ask', 'tri', 'get', 'answer', 'soon', 'help', 'item', 'discount', 'rate', 'free', 'affect', 'person', 'thought', 'opinion', 'hope', 'review', 'help', 'answer', 'question', 'may', 'prior', 'purchas'], ['crap', 'not', 'work', 'also', 'not', 'tell', 'upfront', 'limit', 'data', 'retriev', 'phone', 'type', 'phone', 'compat'], ['good', 'bought', 'i', 'still', 'wait', 'someth', 'happen', 'still', 'good', 'price', 'good', 'big', 'phone', 'like', 'case'], ['although', 'sender', 'help', 'product', 'not', 'compat', 'carrier'], ['work', 'great'], ['pleas', 'phone', 'great', 'shape', 'work', 'perfect', 'also', 'afford'], ['iphon', 'great', 'condit', 'better', 'describ', 'less', 'seller', 'could', 'not', 'ask', 'better', 'deal'], ['super', 'fast', 'ship', 'seem', 'work', 'great', 'far', 'thank'], ['bought', 'phone', 'coupl', 'week', 'ago', 'phone', 'not', 'hold', 'charg', 'take', 'appl', 'store', 'repair', 'unhappi'], ['good', 'phone', 'unlock'], ['phone', 'label', 'good', 'condit', 'instead', 'excel', 'like', 'seem', 'brand', 'new', 'scratch', 'anyth', 'pleas', 'purchas'], ['absolut', 'love', 'phone', 'howev', 'advertis', 'verizon', 'phone', 'receiv', 'tri', 'use', 'verizon', 'account', 'told', 'custom', 'rep', 'phone', 'bought', 'not', 'verizon', 'bum', 'even', 'though', 'verizon', 'custom', 'year', 'decid', 'keep', 'phone', 'tri', 'ts', 'servic', 'littl', 'oh', 'big', 'mistak', 'make', 'long', 'negat', 'stori', 'short', 'sweet', 'end', 'buy', 'verizon', 'iphon', 'like', 'one', 'blue', 'immedi', 'took', 'servic', 'back', 'verizon', 'charg', 'month', 'without', 'contract', 'anyway', 'bill', 'came', 'week', 'new', 'servic', 'want', 'almost', 'tell', 'would', 'begin', 'ha', 'i', 'not', 'stupid', 'refus', 'lie', 'chang', 'back', 'verizon', 'type', 'phone', 'verizon', 'phone', 'rock'], ['expect'], ['not', 'work'], ['great', 'product', 'almost', 'brand', 'new', 'clear', 'sticki', 'stuff', 'find', 'ad', 'came', 'super', 'easi', 'mom', 'problem', 'activ', 'verizon', 'top', 'came', 'earli', 'mother', 'day', 'great', 'product', 'exact', 'seller', 'describ', 'need', 'anoth', 'phone', 'mother', 'month', 'like', 'defiant', 'come', 'back', 'person', 'great'], ['phone', 'never', 'get', 'fulli', 'charg', 'take', 'day', 'charger'], ['love', 'phone'], ['phone', 'got', 'deliv', 'fast', 'phone', 'work', 'great', 'love'], ['excel'], ['love', 'extra', 'memori', 'tri', 'might', 'not', 'fill', 'memori'], ['describ', 'due', 'mistak', 'send', 'back', 'order', 'iphon', 'best', 'valu', 'could', 'find', 'great', 'custom', 'support', 'wonder', 'work'], ['not', 'buy', 'purchas', 'phone', 'sold', 'new', 'phone', 'not', 'refurbish', 'clear', 'phone', 'refurbish', 'batteri', 'last', 'month'], ['bit', 'slower', 'last'], ['love', 'iphon', 'color', 'distinct', 'easi', 'use', 'everyth', 'need', 'right', 'fingertip'], ['broke', 'within', 'two', 'week', 'could', 'not', 'turn', 'back', 'also', 'time', 'zone', 'stuck', 'austria'], ['wonder', 'qualiti', 'phone', 'deliv', 'promis', 'complet', 'satisfi'], ['arriv', 'quick', 'advertis'], ['not', 'phone', 'great', 'price', 'even', 'person', 'sold', 'never', 'forget', 'kind', 'care', 'probabl', 'one', 'best', 'experi', 'ever', 'onlin', 'store'], ['satisfi', 'qualiti', 'first', 'time', 'i', 'would', 'bought', 'use', 'phone', 'i', 'satisfi', 'return', 'polici', 'pictur', 'made', 'feel', 'better', 'order', 'i', 'like', 'futur'], ['great', 'suck', 'not', 'come', 'charger', 'though'], ['son', 'disatisfi', 'phone', 'not', 'consist', 'work', 'not', 'abl', 'text', 'answer', 'call', 'part', 'time', 'not', 'sure', 'need', 'new', 'screen'], ['star'], ['excel', 'phone', 'arriv', 'quick', 'brand', 'new', 'advert'], ['phone', 'got', 'not', 'work'], ['came', 'exact', 'describ', 'need', 'back', 'not', 'sure', 'purchas', 'use', 'far', 'good', 'work', 'like', 'iphon'], ['compat', 'verizon', 'not', 'pink', 'peach', 'pretti', 'beaten', 'not', 'bad', 'enough', 'return', 'descent', 'valu', 'anyon', 'not', 'want', 'spend', 'fortun', 'phone'], ['norm'], ['realli', 'like', 'iphon', 'factori', 'unlock', 'got', 'current', 'right', 'upgrad', 'iphon', 'paid', 'got', 'hell', 'deal', 'scrape', 'major', 'scratch', 'con', 'charger', 'not', 'work', 'howev', 'went', 'dollar', 'store', 'purchas', 'new', 'one', 'good', 'deal', 'price', 'not', 'pass', 'look', 'buy'], ['came', 'earlier', 'expect', 'dent', 'corner', 'good'], ['worst', 'mobil', 'not', 'work', 'proper', 'outsid', 'good', 'insid', 'total', 'damag', 'not', 'trust', 'seller', 'not', 'wast', 'money'], ['buy', 'product', 'best', 'thing', 'ever', 'done'], ['thank', 'everyth', 'fine'], ['use', 'samsung', 'coupl', 'year', 'start', 'slow', 'everyon', 'famili', 'switch', 'iphon', 'noth', 'great', 'thing', 'say', 'buy', 'phone', 'not', 'disappoint', 'far', 'fastest', 'phone', 'ever', 'use', 'even', 'sever', 'app', 'open', 'everyth', 'work', 'flawless', 'user', 'interfac', 'intuit', 'feel', 'pretti', 'cool', 'thumbprint', 'password', 'featur', 'miss', 'swipe', 'type', 'not', 'take', 'star', 'everi', 'way', 'phone', 'perfect'], ['good', 'product', 'fast', 'ship', 'thank', 'much'], ['yes', 'perfect', 'thank'], ['good', 'phone', 'overal', 'look', 'describ', 'scratch', 'front', 'whatsoev', 'also', 'day', 'earlier', 'estim', 'time', 'look', 'phone', 'accept', 'price', 'tri', 'also', 'function'], ['work', 'fine', 'serv', 'purpos'], ['i', 'phone', 'sever', 'month', 'realli', 'happi', 'buy', 'next', 'phone', 'amazon'], ['time', 'phone', 'perfect'], ['work', 'perfect'], ['not', 'wast', 'time', 'appl', 'got', 'mine', 'batteri', 'life', 'poor', 'hour', 'usag', 'hour', 'standbi', 'ad', 'app', 'standard', 'set', 'batteri', 'life', 'research', 'problem', 'tryin', 'everyth', 'clear', 'bad', 'paid', 'return', 'seller', 'email', 'say', 'replac', 'sent', 'receiv', 'replac', 'clear', 'phone', 'forgotten', 'remov', 'screen', 'protector', 'wors', 'batteri', 'life', 'less', 'usag', 'straight', 'box', 'full', 'recharg', 'wall', 'adapt', 'ad', 'decid', 'rather', 'wast', 'money', 'ship', 'back', 'incompet', 'repair', 'center', 'i', 'would', 'buy', 'batteri', 'replac', 'kit', 'wish', 'i', 'would', 'spent', 'littl', 'extra', 'get', 'appl', 'store'], ['happi', 'product', 'not', 'happi', 'seller'], ['bought', 'niec', 'price', 'could', 'not', 'better', 'deal'], ['charger', 'not', 'work'], ['nervous', 'buy', 'phone', 'perfect', 'condit', 'love'], ['realli', 'get', 'pay', 'not', 'happi'], ['home', 'button', 'not', 'oper'], ['gift', 'replac', 'one'], ['excel', 'everyth', 'perfect', 'good', 'new', 'product', 'public', 'recommend', 'serious'], ['phone', 'good', 'condit', 'problem', 'could', 'not', 'open', 'slide', 'put', 'sim', 'card', 'hard', 'open', 'close', 'also', 'phone', 'not', 'work', 'sim', 'card', 'howev', 'not', 'much', 'problem', 'get', 'money', 'back', 'amazon', 'help', 'credit', 'put', 'back', 'amazon', 'help'], ['got', 'like', 'said', 'i', 'happi', 'howev', 'miss', 'switch', 'cover', 'repair', 'otter', 'box', 'cover', 'thing', 'keep', 'phone', 'look', 'work', 'fine', 'tad', 'disappoint', 'miss', 'part'], ['bought', 'phone', 'son', 'love', 'especi', 'first', 'iphon', 'great', 'product', 'great', 'price', 'item', 'arriv', 'time', 'said', 'would'], ['good'], ['product', 'good', 'like', 'buy', 'good', 'deal'], ['thing', 'save', 'compani', 'least', 'sent', 'instruct', 'fix', 'screen', 'stink', 'gift'], ['brought', 'new', 'unlock', 'christma', 'gift', 'mom', 'last', 'not', 'even', 'month', 'complet', 'lost', 'great', 'memori', 'newborn', 'babi', 'came', 'one', 'local', 'appl', 'store', 'said', 'phone', 'not', 'unlock', 'not', 'new', 'either', 'not', 'fix', 'miss', 'piec', 'disappoit', 'sad'], ['bought', 'phone', 'daughter', 'enabl', 'keep', 'contact', 'child', 'recent', 'move', 'hous', 'lost', 'phone', 'seem', 'pleas', 'newer', 'featur'], ['screen', 'crack', 'realli', 'quick'], ['use', 'long', 'time', 'friend', 'sold', 'iphon', 'sister', 'use', 'old', 'absolut', 'love', 'came', 'perfect', 'condit', 'fast', 'still', 'would', 'not', 'trade', 'love'], ['first', 'put', 'sim', 'card', 'would', 'not', 'read', 'like', 'whole', 'night', 'kept', 'say', 'search', 'would', 'not', 'read', 'final', 'read', 'problem', 'kept', 'turn', 'random', 'even', 'though', 'wast'], ['take', 'appl', 'store', 'get', 'work', 'said', 'bad', 'insid', 'trade', 'cost', 'get', 'fix', 'big', 'time', 'sold', 'refurbish', 'bold', 'face', 'wonder', 'product', 'seller', 'grossley', 'misrepres', 'refurbish', 'mean', 'work', 'right'], ['need', 'replac', 'iphon', 'sinc', 'would', 'not', 'recogn', 'charger', 'comput', 'would', 'not', 'recogn', 'phone', 'plug', 'download', 'phone', 'better', 'one', 'got'], ['overal', 'chang', 'mind', 'phone', 'not', 'describ', 'not', 'bad', 'still', 'clean', 'bit', 'adhes', 'not', 'big', 'deal', 'especi', 'low', 'price', 'custom', 'servic', 'excel', 'problem', 'resolv', 'partial', 'refund', 'condit', 'i', 'happi'], ['item', 'describ', 'like', 'new', 'origin', 'box', 'packag', 'plastic', 'protect', 'sheet', 'across', 'screen', 'immacul', 'headphon', 'paper', 'manual', 'work', 'like', 'origin', 'serv', 'year', 'fantast'], ['happi', 'purchas', 'good', 'qualiti', 'price'], ['gift', 'son', 'love', 'moment', 'receiv', 'current', 'take', 'colleg', 'class', 'cincinnati', 'allow', 'stay', 'touch', 'famili', 'son', 'love', 'appl', 'product', 'enjoy', 'listen', 'download', 'music', 'new', 'appl', 'iphon', 'gb', 'give', 'enought', 'space', 'keep', 'nice', 'librari', 'would', 'recommand', 'amazon', 'everyon', 'look', 'replac', 'new', 'smart', 'phone'], ['got', 'like', 'said', 'i', 'happi', 'howev', 'miss', 'switch', 'cover', 'repair', 'otter', 'box', 'cover', 'thing', 'keep', 'phone', 'look', 'work', 'fine', 'tad', 'disappoint', 'miss', 'part'], ['phone', 'excel', 'condit', 'ship', 'fast', 'best', 'deal', 'could', 'find', 'older', 'model', 'need', 'one', 'fast', 'mine', 'bit', 'dust'], ['great'], ['went', 'well', 'thank'], ['best'], ['though', 'phone', 'came', 'packag', 'box', 'bubbl', 'wrap', 'upkeep', 'phone', 'worn', 'scratch', 'open', 'socket', 'dirt', 'disappoint', 'purchas'], ['first', 'not', 'match', 'say', 'websit', 'intern', 'broken', 'phone', 'not', 'unlock'], ['fool', 'item', 'descript', 'total', 'expect', 'could', 'not', 'even', 'use', 'phone', 'seem', 'tri', 'place', 'broken', 'phone', 'innoc', 'buyer'], ['love', 'product', 'arriv', 'time', 'not', 'damag', 'pleas', 'product', 'ok'], ['best'], ['phone', 'pretti', 'heavi', 'scratch', 'front', 'back', 'plus', 'back', 'part', 'crack', 'phone', 'restart', 'time', 'batteri', 'last', 'hous', 'top', 'bought', 'amazon', 'warehous', 'definit', 'would', 'not', 'buy'], ['bought', 'use', 'lock', 'gsm', 'iphon', 'two', 'sold', 'amazon', 'advertis', 'product', 'manufactur', 'receiv', 'phone', 'excel', 'shape', 'well', 'pack', 'like', 'new', 'latest', 'firmwar', 'came', 'new', 'set', 'genuin', 'appl', 'earphon', 'remot', 'mic', 'dock', 'connector', 'usb', 'cabl', 'usb', 'power', 'adapt', 'touchscreen', 'batteri', 'seem', 'newli', 'replac', 'well', 'googl', 'around', 'select', 'compani', 'internet', 'claim', 'iphon', 'unlock', 'servic', 'provid', 'payment', 'receiv', 'messag', 'claim', 'softwar', 'develop', 'would', 'avail', 'soon', 'without', 'commit', 'date', 'softwar', 'avail', 'sinc', 'i', 'never', 'abl', 'get', 'money', 'back', 'paypal', 'fortun', 'profession', 'independ', 'iphon', 'repair', 'shop', 'town', 'not', 'cincinnati', 'bell', 'could', 'help', 'activ', 'jailbreak', 'unlock', 'phone', 'phone', 'work', 'great', 'not', 'purchas', 'plan', 'use', 'packag', 'plan', 'want', 'either', 'cincinnati', 'bell', 'time', 'one', 'import', 'note', 'never', 'updat', 'firmwar', 'unlock', 'otherwis', 'everyth', 'reset', 'previous', 'lock', 'configur'], ['come', 'ok', 'condit', 'price', 'complain', 'actual', 'better', 'good', 'not', 'good', 'cosmet', 'alway', 'buy', 'amazon', 'not', 'parti', 'seller'], ['look', 'unlock', 'iphon', 'not', 'articl', 'said', 'iphon', 'yet', 'sent', 'iphon', 'not', 'pay', 'not', 'right', 'wrong', 'decept'], ['got', 'phone', 'gift', 'nephew', 'iphon', 'know', 'work', 'phone', 'mint', 'condit', 'not', 'come', 'charger', 'phone', 'factori', 'unlock', 'promis', 'not', 'ship', 'amount', 'time', 'also', 'understand', 'accept', 'use', 'phone', 'first', 'time'], ['great', 'shape', 'age', 'crack', 'back', 'sim', 'tray', 'damag', 'perfect', 'work', 'like', 'worth', 'price'], ['order', 'two', 'new', 'iphon', 'receiv', 'refurbish', 'phone', 'plan', 'gift', 'visit', 'appl', 'outlet', 'bought', 'tow', 'new', 'iphon'], ['item', 'describ', 'unlock', 'not', 'jailbroken', 'state', 'satisfi', 'iphon', 'bought', 'brand', 'new', 'sheri', 'intern', 'quick', 'ship', 'well', 'pack', 'ship', 'box', 'use', 'up', 'good', 'deliveri', 'system', 'use', 'ship', 'fedex', 'good', 'compani', 'use', 'ship', 'prepaid', 'servic', 'iphon', 'easi', 'set', 'window', 'nokia', 'ok', 'like', 'appl', 'cell', 'phone', 'better', 'transfer', 'easi', 'need', 'adapt', 'switch', 'card'], ['got', 'phone', 'mom', 'love', 'still', 'new', 'iphon', 'show', 'step', 'step', 'use', 'differ', 'app', 'phone', 'like', 'unlock'], ['phone', 'work', 'fine', 'soon', 'insert', 'sim', 'card', 'also', 'appreci', 'thank', 'card'], ['cheap', 'reliabl', 'friend', 'need', 'spare', 'phone', 'appl', 'alway', 'better', 'android', 'phone', 'arriv', 'zero', 'scratch', 'better', 'expect', 'unlock', 'promis', 'accord', 'friend', 'easi', 'start', 'use', 'happi'], ['refurbish', 'iphon', 'rusti', 'damag', 'touch', 'screen', 'damag', 'want', 'money', 'follow', 'back', 'want', 'total', 'refaund', 'pleas', 'need', 'solut', 'paid', 'buy', 'iphon', 'unlock', 'new', 'reciv', 'iphon', 'refurbish', 'damag', 'refurbish', 'iphon', 'rusti', 'damag', 'touch', 'screen', 'damag', 'want', 'money', 'follow', 'back', 'want', 'total', 'refaund', 'pleas', 'need', 'solut', 'paid', 'buy', 'iphon', 'unlock', 'new', 'reciv', 'iphon', 'refurbish', 'damag', 'refurbish', 'iphon', 'rusti', 'damag', 'touch', 'screen', 'damag', 'want', 'money', 'follow', 'back', 'want', 'total', 'refaund', 'pleas', 'need', 'solut', 'paid', 'buy', 'iphon', 'unlock', 'new', 'reciv', 'iphon', 'refurbish', 'damag'], ['not', 'like'], ['phone', 'came', 'seal', 'not', 'sign', 'usag', 'way', 'check', 'appl', 'store', 'told', 'sold', 'store', 'us', 'year', 'ago', 'warranti', 'expir', 'kind', 'take', 'care', 'phone', 'would', 'good', 'choic'], ['phone', 'work', 'great', 'issu', 'connect', 'phone', 'att', 'test', 'next', 'trip', 'believ', 'claro', 'choic', 'sinc', 'orang', 'oper', 'differ', 'band', 'give', 'claro', 'abl', 'provid', 'accord', 'spec', 'far', 'phone', 'work', 'great', 'factori', 'unlock'], ['use', 'iphon', 'today', 'not', 'hear', 'headphon', 'work', 'fine', 'also', 'speaker', 'phone', 'ask', 'phone', 'technician', 'said', 'someth', 'wrong', 'phone', 'problem', 'israel', 'phone', 'june', 'shall', 'dr', 'david', 'naveh'], ['everyth', 'went', 'complet', 'well', 'order', 'beyond', 'satisfi', 'recommend', 'guy', 'one', 'hundr', 'percent', 'sure', 'xoxo'], ['got', 'phone', 'damag', 'screen', 'fault', 'show', 'appl', 'store', 'said', 'tht', 'phone', 'tamper', 'us', 'refurbish'], ['perfect', 'phone', 'reali', 'like', 'use', 'almost', 'month', 'not', 'problem'], ['friend', 'shari', 'phone', 'buy', 'use', 'restor', 'not', 'new', 'batteri', 'not', 'last', 'long', 'connect', 'charg', 'batteri', 'min', 'load', 'cel', 'deconectarlo', 'low', 'batteri', 'ud', 'publish', 'phone', 'not', 'new', 'not', 'publish', 'feel', 'cheat', 'situat'], ['bad', 'phone'], ['ok'], ['tri', 'yet', 'use', 'oversea', 'travel', 'two', 'day'], ['troubl', 'receiv', 'pictur', 'call', 'cell', 'phone', 'compani', 'i', 'still', 'troubl', 'not', 'expect', 'also', 'order', 'plastic', 'cover', 'still', 'wait', 'week'], ['love', 'love', 'exact', 'advertis', 'receiv', 'allot', 'time', 'promis', 'took', 'store', 'transfer', 'info', 'except', 'music', 'brand', 'new', 'iphon', 'told', 'friend', 'go', 'amazon', 'need'], ['complet', 'slow', 'softwar', 'old', 'power', 'button', 'work', 'want', 'hate', 'i', 'replac'], ['iphon', 'ran', 'well', 'first', 'month', 'sudden', 'not', 'turn', 'anymor', 'went', 'appl', 'store', 'check', 'problem', 'told', 'intern', 'equip', 'old', 'prepar', 'stop', 'work', 'week', 'bought', 'new', 'phone', 'way', 'repair', 'chang', 'interior', 'sent', 'messag', 'supplier', 'return', 'equip', 'not', 'hear', 'word', 'back'], ['awesom', 'product', 'daughter', 'love', 'open', 'right', 'away', 'could', 'not', 'wait', 'til', 'xmas', 'thank', 'mexico'], ['order', 'use', 'iphon', 'son', 'instead', 'buy', 'ipod', 'price', 'better', 'new', 'ipod', 'use', 'cell', 'phone', 'plan', 'phone', 'came', 'unlock', 'describ', 'happi'], ['bought', 'europ', 'unlock', 'readi', 'go', 'problem', 'go'], ['arriv', 'exact', 'amazon', 'said', 'would', 'phone', 'excel', 'condit', 'brand', 'new', 'far', 'could', 'tell', 'work', 'like', 'charm', 'may', 'not', 'newest', 'model', 'suit', 'need', 'tee', 'excel', 'price'], ['phone', 'not', 'work'], ['iphon', 'unlock', 'problem', 'take', 'spend', 'excus', 'english'], ['use', 'cellphon', 'not', 'brand', 'new'], ['great', 'phone'], ['great', 'deal', 'came', 'time', 'month', 'work', 'perfect', 'like', 'guess', 'got', 'lucki', 'time', 'yeah', 'good', 'sell'], ['slow', 'disappoint'], ['product', 'advertis', 'iphon', 'use', 'turbo', 'sim', 'unlock', 'use', 'carrier', 'new', 'condit', 'come', 'accessori', 'wall', 'charger', 'usb', 'cabl', 'phone', 'brand', 'new', 'box', 'charger', 'earbud', 'phone', 'unlock', 'use', 'gevey', 'phone', 'work', 'fine', 'took', 'said', 'lock', 'also', 'appear', 'baseband', 'appar', 'difficult', 'unlock', 'email', 'respons', 'coupl', 'day'], ['upset', 'product', 'say', 'unlock', 'use', 'gevey', 'sim', 'not', 'phone', 'receiv', 'new', 'baseband', 'unlock', 'sratch', 'back', 'look', 'like', 'bought', 'paper', 'weight', 'baseband', 'unlock', 'scam'], ['good'], ['love'], ['wife', 'love', 'phone'], ['bought', 'iphon', 'year', 'ago', 'i', 'still', 'use', 'came', 'like', 'info', 'said', 'like', 'pictur', 'recommend', 'anyon', 'get', 'iphon', 'go', 'herei', 'figur', 'rate', 'review', 'sorri', 'took', 'long', 'get', 'backwith', 'everyon'], ['stupid', 'cdma', 'gsm', 'worst', 'idea', 'appl', 'ever', 'came', 'suck', 'definit', 'go', 'window', 'phone'], ['wrote', 'previous', 'review', 'phone', 'not', 'list', 'not', 'unlock', 'either', 'contact', 'amazon', 'necessari', 'correct', 'problem', 'along', 'full', 'upfront', 'refund', 'receiv', 'phone', 'back', 'thank', 'amazon', 'hard', 'work', 'custom', 'servic', 'depart'], ['bought', 'one', 'iphon', 'suposs', 'new', 'seller', 'iphon', 'came', 'broken', 'took', 'guy', 'put', 'sim', 'card', 'guy', 'told', 'screen', 'alreadi', 'chang', 'iphon', 'alreadi', 'contact', 'water', 'today', 'iphon', 'broke', 'not', 'make', 'call', 'receiv', 'not', 'access', 'internet', 'messag'], ['best', 'bye', 'year', 'brand', 'new', 'phone'], ['thank', 'like'], ['phone', 'look', 'seem', 'work', 'wonder', 'howev', 'phone', 'lock', 'thus', 'make', 'spend', 'money', 'get', 'unlock', 'besid', 'ship', 'fast'], ['love', 'phone', 'realiz', 'home', 'button', 'not', 'work', 'could', 'not', 'make', 'go', 'home', 'matter', 'easi', 'return', 'get', 'money', 'back', 'not', 'buy', 'seller', 'phone', 'suppos', 'good', 'condit', 'would', 'hate', 'see', 'condit', 'phone', 'good', 'condit', 'would', 'like'], ['wi', 'fi', 'bad'], ['good'], ['awesom', 'phone', 'awesom', 'seller'], ['great', 'phone', 'fast', 'deliveri'], ['good', 'phone'], ['run', 'seller', 'not', 'look', 'back', 'bought', 'phone', 'got', 'head', 'att', 'store', 'activ', 'phone', 'long', 'behold', 'would', 'not', 'activ', 'sim', 'card', 'would', 'not', 'read', 'told', 'go', 'appl', 'store', 'see', 'figur', 'turn', 'not', 'gb', 'iphon', 'phone', 'damag', 'phone', 'never', 'sold', 'seller', 'bad', 'busi', 'person', 'runn'], ['great', 'deal', 'phone', 'work', 'great', 'exact', 'describ', 'thank', 'much'], ['next', 'time', 'sell', 'someth', 'box', 'seal', 'got', 'product', 'box', 'open', 'said', 'new', 'saidyou', 'open', 'see', 'everyth', 'box', 'phone', 'instead', 'phone', 'tri', 'take', 'skr'], ['good', 'big', 'thank', 'much', 'like', 'client', 'sure', 'use', 'servic'], ['bought', 'item', 'father', 'love', 'alreadi', 'figur', 'load', 'game'], ['great', 'condit', 'promis', 'purchas', 'teen', 'happi', 'purchas', 'function', 'except', 'home', 'button', 'stick', 'sometim'], ['say', 'new', 'use', 'ítem'], ['bought', 'phone', 'shown', 'unlock', 'came', 'lock', 'phone', 'phone', 'scratch', 'one', 'poor', 'maintain'], ['loov', 'phone', 'problem', 'hard', 'scratch', 'use', 'would', 'buy', 'price'], ['purchas', 'iphon', 'gb', 'new', 'upon', 'receiv', 'issu', 'contact', 'second', 'cellular', 'email', 'receiv', 'call', 'within', 'minut', 'email', 'talk', 'adam', 'noth', 'curtious', 'readi', 'make', 'thing', 'right', 'not', 'replac', 'phone', 'upgrad', 'sent', 'within', 'day', 'extra', 'charg', 'wish', 'could', 'give', 'star', 'caregiv', 'mom', 'busi', 'phone', 'die', 'need', 'someth', 'fast', 'amazon', 'second', 'cellular', 'came', 'rescu', 'compani', 'stand', 'product', 'definit', 'use', 'turn', 'amazon', 'top', 'rait', 'second', 'cellular', 'gave', 'not', 'busi', 'trust', 'not', 'disappoint', 'trust', 'get', 'product', 'right', 'second', 'cellular', 'thank', 'adam', 'job', 'well', 'done', 'stephani'], ['purchas', 'appl', 'iphon', 'phone', 'ideal', 'expert', 'last', 'month', 'look', 'brand', 'clear', 'look', 'start', 'one', 'phone', 'problem', 'recipi', 'heard', 'strong', 'speak', 'interf', 'convers', 'sent', 'email', 'amazon', 'clear', 'articul', 'problem', 'compani', 'receiv', 'brief', 'respons', 'team', 'tri', 'call', 'manufactur', 'exchang', 'option', 'decid', 'take', 'phone', 'expert', 'see', 'whether', 'could', 'solv', 'problem', 'coupl', 'second', 'open', 'case', 'told', 'phone', 'not', 'new', 'one', 'refurbish', 'glanc', 'could', 'see', 'clear', 'evid', 'water', 'damag', 'miss', 'kind', 'screw', 'horrifi', 'learn', 'deepli', 'troubl', 'ideal', 'expert', 'consid', 'accept', 'practic', 'particular', 'given', 'suppos', 'complet', 'custom', 'satisfact', 'guarante', 'stand', 'behind', 'qualiti', 'product', 'guarante', 'busi', 'build', 'relationship', 'custom', 'confid', 'satisfi', 'everi', 'purchas', 'made', 'us', 'offer', 'exclus', 'ez', 'return', 'polici', 'reason', 'not', 'satisfi', 'simpli', 'send', 'product', 'back', 'us', 'immedi', 'replac', 'refund', 'opinion', 'ideal', 'expert', 'display', 'flagrant', 'disregard', 'integr', 'manifest', 'poor', 'busi', 'ethic', 'practic', 'fail', 'see', 'behaviour', 'lead', 'relationship', 'experi', 'anyth', 'go', 'strong', 'recommend', 'potenti', 'purchas', 'buyer', 'bewar', 'short', 'post', 'receiv', 'email', 'ideal', 'expert', 'team', 'follow', 'bought', 'august', 'octob', 'not', 'accept', 'return', 'past', 'day', 'not', 'accept', 'return', 'respond', 'correct', 'error', 'remind', 'fact', 'notifi', 'team', 'problem', 'well', 'within', 'time', 'frame', 'even', 'receiv', 'acknowledg', 'remain', 'deepli', 'concern', 'ideal', 'xpert', 'not', 'sold', 'defect', 'good', 'chose', 'use', 'period', 'excus', 'not', 'deal', 'problem', 'still', 'fail', 'see', 'poor', 'busi', 'practic', 'deem', 'accept', 'today', 'screen', 'iphon', 'went', 'warn', 'good', 'reason', 'phone', 'back', 'tech', 'expert', 'tri', 'resolv'], ['work', 'great'], ['compani', 'seem', 'like', 'joke', 'got', 'phone', 'least', 'week', 'reset', 'like', 'factori', 'reset', 'money', 'paid', 'ship', 'hassl', 'not', 'worht'], ['great', 'product'], ['perfect'], ['iphon', 'bought', 'use', 'flawless', 'scratch', 'phone', 'unlock', 'third', 'parti', 'vender', 'buck', 'pervious', 'owner', 'info', 'buy', 'still', 'unlock', 'third', 'parti', 'vender', 'iphon', 'great', 'best', 'phone', 'ever', 'first', 'iphon', 'use', 'shot', 'took', 'right', 'money', 'fast', 'smooth', 'clean', 'crisp', 'like', 'iphon', 'buy', 'vender', 'possibl', 'not', 'let', 'item', 'describ', 'fast', 'ship', 'respond', 'email', 'friend', 'servic', 'plus', 'use', 'iphon', 'great', 'deal', 'great', 'experi', 'must', 'buy', 'star', 'rate'], ['want', 'return', 'not', 'unlockhow', 'pleas', 'explain', 'much'], ['got', 'time', 'new', 'work', 'perfect', 'fine', 'would', 'recommend', 'whoever', 'would', 'like', 'updat', 'phone', 'less', 'year', 'issu', 'get', 'phone', 'flash', 'could', 'work', 'anoth', 'network', 'month', 'peopl', 'would', 'call', 'would', 'pick', 'could', 'hear', 'not', 'abl', 'hear', 'took', 'iphon', 'repair', 'shop', 'three', 'time', 'replac', 'microphon', 'still', 'not', 'work', 'gave', 'switch', 'anoth', 'phone', 'money', 'drain', 'one'], ['great', 'phone'], ['awesom', 'phone', 'awesom', 'seller'], ['great', 'phone', 'fast', 'deliveri'], ['good'], ['nice'], ['star', 'iphon', 'came', 'look', 'like', 'new', 'work', 'great'], ['great', 'phone', 'price'], ['bought', 'three', 'iphon', 'gift', 'know', 'ad', 'said', 'good', 'qualiti', 'crack', 'bad', 'sign', 'price', 'bargain', 'like', 'much', 'place', 'anoth', 'order', 'two', 'communic', 'seller'], ['receiv', 'pretti', 'good', 'shape', 'not', 'work', 'not', 'make', 'call', 'get'], ['love', 'need', 'thank', 'much'], ['gift', 'pass', 'grandson', 'test'], ['good'], ['buyer', 'bewar', 'bought', 'three', 'phone', 'amazon', 'three', 'differ', 'phone', 'one', 'att', 'one', 'straight', 'talk', 'one', 'verizon', 'junk', 'att', 'phone', 'broke', 'three', 'week', 'daughter', 'phone', 'verizon', 'problem', 'list', 'basic', 'unus', 'son', 'phone', 'one', 'review', 'work', 'freez', 'hang', 'stuff', 'four', 'week', 'high', 'unlik', 'got', 'three', 'lemon', 'right', 'not', 'buy', 'cell', 'phone', 'amazon', 'garbag'], ['nice', 'devic', 'use', 'appl', 'lifestyl', 'sure', 'go', 'love', 'iphon', 'i', 'recommend'], ['bring', 'iphon', 'shanghai', 'gift', 'shanghai', 'dose', 'not', 'work', 'look', 'like', 'lock', 'bring', 'back', 'us', 'unlock'], ['phone', 'not', 'unlock', 'not', 'activ', 'not', 'sim', 'card'], ['bought', 'phone', 'teenag', 'son', 'xmas', 'problem', 'thank', 'much', 'love'], ['work', 'look', 'wife', 'happi', 'thank', 'not', 'go'], ['final', 'got', 'phone', 'great', 'condit', 'look', 'brand', 'new', 'bought', 'daughter', 'happi', 'everyth', 'work', 'well', 'problem'], ['excel'], ['got', 'phone', 'not', 'work', 'not', 'even', 'clean', 'pull', 'lint', 'plug', 'port'], ['first', 'return', 'amazon', 'appear', 'easi', 'far', 'product', 'concern', 'look', 'great', 'work', 'terribl', 'clear', 'defect', 'well', 'return', 'purchas', 'new', 'one'], ['came', 'use', 'went', 'appl', 'store', 'not', 'work', 'look', 'serial', 'number', 'pre', 'own', 'advertis', 'new', 'phone'], ['iphon', 'like', 'experi', 'iphon', 'order', 'amazon', 'everyth', 'perfect', 'phone', 'arriv', 'exact', 'time', 'mint', 'condit', 'seller', 'describ'], ['receiv', 'phone', 'intack', 'home', 'key', 'stick'], ['want', 'iphon', 'without', 'attach', 'contract', 'carrier', 'decid', 'buy', 'amazon', 'surpris', 'receiv', 'phone', 'flawless', 'scratch', 'ding', 'look', 'like', 'new', 'phone', 'work', 'well', 'came', 'appl', 'charger', 'appl', 'ear', 'phone', 'document', 'appl', 'sticker', 'ship', 'amazon', 'warehous', 'pleas', 'purchas'], ['phone', 'good', 'condit', 'dos', 'not', 'work', 'properl', 'slow', 'download', 'slow', 'call', 'text', 'slow', 'would', 'like', 'return', 'back', 'get', 'money', 'back', 'plea'], ['perfect', 'arriv', 'quick', 'exact', 'like', 'ad', 'list', 'work', 'perfect', 'could', 'not', 'happi', 'thank'], ['love', 'phone', 'greatest', 'purchas', 'ever', 'recommend', 'phone', 'everyon', 'care', 'seller', 'purchas', 'blank', 'sim', 'card', 'order', 'setup', 'phone', 'get', 'appl', 'app', 'came', 'phone', 'seller', 'reset', 'phone'], ['love', 'time', 'exact', 'strait', 'talk', 'phone', 'dose', 'work', 'need', 'get', 'sim', 'card'], ['not', 'new', 'phone', 'order', 'new', 'phone', 'receiv', 'use', 'phone', 'per', 'appl', 'phone', 'previous', 'regist'], ['prospect', 'iphon', 'looker', 'look', 'iphon', 'friend', 'gift', 'almost', 'end', 'pay', 'new', 'one', 'last', 'thought', 'give', 'one', 'tri', 'must', 'say', 'worth', 'everi', 'look', 'new', 'let', 'emphas', 'number', 'batteri', 'great', 'screen', 'less', 'found', 'mayb', 'hairlin', 'scratch', 'side', 'less', 'mm', 'long', 'almost', 'invis', 'feet', 'away', 'past', 'att', 'user', 'abl', 'unlock', 'free', 'whole', 'one', 'best', 'ever', 'bought', 'anyon', 'never', 'much', 'use', 'electron', 'enthusiast', 'purchas', 'might', 'chang', 'view', 'futur', 'let', 'us', 'hope', 'not', 'cheer'], ['bargain', 'item', 'work', 'well'], ['work', 'three', 'month'], ['everyth', 'want', 'everyth', 'want', 'phone', 'almost', 'never', 'use', 'laptop', 'also', 'mobil', 'comput'], ['happi', 'phone', 'actual', 'came', 'day', 'earlier', 'schedul', 'excel', 'work', 'condit', 'read', 'bunch', 'review', 'order', 'worri', 'buy', 'use', 'electron', 'someth', 'never', 'i', 'glad', 'save', 'alot', 'money', 'alway', 'plus'], ['question', 'iphon', 'dealer', 'got', 'back', 'us', 'day', 'ask', 'explain', 'us', 'item', 'iphon', 'grandson', 'satisfi', 'new', 'phone'], ['great', 'phone'], ['defect', 'keyboard', 'start', 'mess', 'could', 'hold', 'finger', 'keyboard', 'not', 'touch', 'key', 'would', 'press'], ['bought', 'great', 'grandson', 'birthday', 'excel', 'condit', 'also', 'includ', 'case'], ['awesom', 'phone', 'awesom', 'seller'], ['good'], ['excel', 'valu', 'product', 'state'], ['bluetooth', 'not', 'work', 'sinc', 'bought', 'bad', 'bad', 'bad'], ['like', 'big', 'memori', 'good', 'music', 'like'], ['expect', 'ecel'], ['got', 'time', 'issu', 'activ', 'verizon', 'phone', 'excel', 'condit', 'work', 'great'], ['item', 'describ', 'exact', 'want', 'ship', 'quick'], ['still', 'use', 'came', 'like', 'brand', 'spank', 'new', 'pleas', 'problem', 'great', 'phone', 'love', 'love', 'love', 'thank', 'much'], ['actual', 'nice', 'perfect', 'condit'], ['excit', 'get', 'first', 'smart', 'phone', 'item', 'purchas', 'new', 'receiv', 'love', 'phone', 'day', 'ago', 'abl', 'make', 'call', 'use', 'speaker', 'phone', 'took', 'phone', 'appl', 'took', 'apart', 'inform', 'phone', 'not', 'origin', 'appl', 'part', 'would', 'not', 'repair', 'phone', 'not', 'unhappi', 'appl', 'amazon', 'compani', 'suppli', 'never', 'felt', 'trick', 'rip', 'taken', 'ride', 'amazon', 'luckili', 'nice', 'enough', 'least', 'stand', 'promis', 'issu', 'full', 'refund', 'even', 'though', 'purchas', 'bit', 'past', 'thirti', 'day', 'use', 'amazon', 'yes', 'appl', 'yes', 'supplier', 'noo', 'rip'], ['order', 'thougth', 'go', 'look', 'use', 'got', 'wrap', 'new', 'open', 'perfect', 'clean', 'like', 'new', 'order', 'use', 'sinc', 'buy', 'work', 'perfec'], ['item', 'exact', 'perfect', 'condit', 'scratch', 'work', 'perfect', 'intend', 'buy', 'great', 'siri', 'not', 'realli', 'necessari'], ['appl', 'race', 'type', 'product', 'great', 'first', 'year', 'histori', 'repeat', 'appl', 'corpor', 'fallen', 'asleep', 'custom', 'need', 'incorpor', 'new', 'technolog', 'product', 'stale', 'price', 'outrag', 'product', 'mani', 'ditch', 'appl', 'product', 'switch', 'android', 'product', 'one', 'compani', 'not', 'name', 'last', 'year', 'life', 'never', 'bought', 'appl', 'person', 'comput', 'bought', 'appl', 'devic', 'sold', 'would', 'think', 'ceo', 'would', 'take', 'basic', 'freshman', 'cours', 'lesson', 'learn', 'histori', 'appar', 'beyond', 'grasp', 'alway', 'amaz', 'salari'], ['sad', 'reason', 'bough', 'stream', 'disney', 'movi', 'time', 'could', 'iphon'], ['pleas', 'purchas', 'new', 'work', 'great', 'use', 'net', 'shop'], ['love'], ['got', 'son', 'love', 'great', 'prize', 'great', 'phone'], ['realli', 'great', 'not', 'issu', 'exact', 'describ', 'extrem', 'fast', 'ship', 'got', 'fat', 'order'], ['disappoint', 'phone', 'charger', 'base', 'never', 'work', 'day', 'one', 'given', 'constant', 'troubl', 'even', 'wipe', 'contact', 'pictur', 'text', 'bring', 'appl', 'store', 'see', 'fix'], ['describ', 'fast', 'deliveri'], ['love', 'like', 'one', 'drown', 'neethrohd', 'memori', 'music', 'none', 'avail', 'verizon', 'gig', 'could', 'upgrad', 'not', 'like', 'taller', 'narrow', 'style', 'went', 'enjoy', 'happi', 'camper'], ['cheaper', 'ipod', 'love', 'bought', 'refurbish', 'came', 'awesom', 'condit', 'work', 'great'], ['spent', 'two', 'hour', 'phone', 'activ', 'not', 'even', 'verizon', 'phone', 'made', 'unhappi'], ['camera', 'not', 'work'], ['peerfect', 'niec'], ['everyth', 'describ', 'buy'], ['arriv', 'microphon', 'not', 'work', 'not', 'buy', 'peopl'], ['good', 'phone'], ['not', 'upgrad', 'softwar', 'support', 'twitter', 'not', 'run', 'thing', 'also', 'bluetooth', 'would', 'random', 'switch', 'phone', 'need', 'reboot', 'get', 'back', 'last', 'straw', 'would', 'not', 'respond', 'tri', 'access', 'voicemail', 'i', 'give', 'two', 'star', 'even', 'crack', 'screen', 'lost', 'temper', 'voicemail', 'incid', 'make', 'formid', 'music', 'player'], ['order', 'iphon', 'came', 'day', 'manufactur', 'warranti', 'needless', 'say', 'not', 'worri', 'use', 'condit', 'said', 'good', 'part', 'not', 'best', 'littl', 'rub', 'putter', 'metal', 'part', 'otter', 'box', 'entir', 'life', 'i', 'happi', 'iphon', 'happili', 'convert', 'android', 'lover'], ['constant', 'froze', 'slow'], ['good', 'phone', 'son', 'like', 'not', 'scratch', 'nice', 'kept', 'easi', 'set', 'pre', 'paid', 'servic'], ['i', 'extrem', 'satisfi', 'purchas', 'came', 'box', 'brand', 'new', 'perfect', 'bought', 'anoth', 'one', 'friend'], ['good'], ['great', 'deal', 'phone', 'took', 'big', 'chanc', 'lot', 'doubt', 'phone', 'arriv', 'excel', 'condit', 'price', 'great', 'deal', 'thank'], ['phone', 'self', 'not', 'run', 'fast', 'want', 'keep', 'nicley', 'old', 'phone'], ['perfect', 'prolbem', 'everyon', 'buy', 'product', 'amazon', 'never', 'let', 'alway', 'best', 'everyth'], ['work', 'perfect', 'absolut', 'love', 'best', 'phone', 'ever', 'even', 'dead', 'set', 'droid'], ['purchas', 'phone', 'husband', 'satisfi', 'perform', 'capabl', 'one', 'favorit', 'gift', 'ever'], ['not', 'phone', 'everyth', 'expect', 'came', 'earlier', 'project', 'great', 'buy', 'experi', 'would', 'use', 'merchant', 'similar', 'purchas'], ['worri', 'purchas', 'phone', 'due', 'review', 'read', 'howev', 'came', 'brand', 'new', 'promis', 'everyth', 'work', 'well', 'except', 'speaker', 'phone', 'not', 'ever', 'realli', 'use', 'not', 'huge', 'deal'], ['previous', 'bought', 'iphon', 'differ', 'seller', 'turn', 'defect', 'one', 'cheater', 'work', 'like', 'charm', 'amaz'], ['bought', 'phone', 'pure', 'mobil', 'decemb', 'three', 'kid', 'christma', 'gift', 'march', 'son', 'phone', 'not', 'work', 'right', 'switch', 'not', 'work', 'took', 'local', 'appl', 'store', 'told', 'phone', 'repair', 'plus', 'warranti', 'longer', 'valid', 'due', 'origin', 'purchas', 'year', 'ago', 'may', 'daughter', 'phone', 'not', 'work', 'month', 'buy', 'took', 'phone', 'appl', 'store', 'told', 'repair', 'bought', 'therefor', 'noth', 'unhappi', 'purchas', 'would', 'not', 'advis', 'one', 'purchas', 'pure', 'contact', 'pure', 'mobil', 'told', 'us', 'noth', 'could', 'believ', 'feel', 'threw', 'almost', 'trash'], ['phone', 'order', 'deliv', 'work', 'great', 'first', 'two', 'day', 'start', 'mese', 'screen', 'jump', 'take', 'pictur', 'screen', 'goe', 'red', 'green', 'went', 'request', 'return', 'find', 'return', 'window', 'expir', 'day', 'deliv', 'tri', 'contact', 'seller', 'not', 'anyon', 'return', 'call', 'disappoint'], ['great', 'item', 'thank'], [], ['not', 'good'], ['great'], ['first', 'smart', 'phone', 'posit', 'experi'], ['phone', 'connect', 'straight', 'talk', 'easili', 'come', 'step', 'step', 'direct', 'get', 'connect', 'arriv', 'time', 'exact', 'expect', 'reason', 'not', 'rate', 'star', 'phone', 'tri', 'face', 'time', 'middl', 'phone', 'call', 'often', 'first', 'thought', 'must', 'hit', 'screen', 'side', 'face', 'speaker', 'untouch', 'well', 'good', 'product', 'great', 'seller'], ['not', 'work', 'straight', 'talk', 'call', 'straight', 'talk', 'twice', 'activ', 'inform', 'would', 'work', 'certain', 'area', 'depend', 'zip', 'code', 'not', 'compat', 'area', 'cell', 'receiv', 'happen', 'defect', 'need', 'return', 'anyway', 'contact', 'seller', 'email', 'back', 'forth', 'time', 'seller', 'keep', 'inform', 'instruct', 'state', 'work', 'straight', 'talk', 'not', 'go', 'walmart', 'call', 'straight', 'talk', 'twice', 'read', 'rep', 'instruct', 'also', 'point', 'i', 'frustrat', 'wish', 'work', 'not', 'make', 'straight', 'talk', 'activ', 'keep', 'tell', 'not', 'compat'], ['iphon', 'work', 'perfect', 'took', 'sometim', 'set', 'straight', 'talk', 'phone', 'work', 'like'], ['worth', 'everi', 'penni', 'spent', 'phone', 'look', 'new', 'not', 'troubl', 'switch', 'number', 'phone', 'put', 'servic', 'phone', 'plus', 'question', 'regard', 'phone', 'answer', 'right', 'away', 'happi', 'everyth'], ['great', 'phone', 'met', 'expect', 'ship', 'arriv', 'way', 'sooner', 'thought', 'would'], ['pleas', 'let', 'know', 'go', 'packag'], ['good'], ['great', 'phone', 'price'], ['great', 'item', 'purchas', 'v'], ['phone', 'near', 'perfect', 'shape', 'came', 'accessori', 'phone', 'work', 'great', 'look', 'phone', 'would', 'recommend', 'place'], ['obvious', 'not', 'new', 'phone', 'scratch', 'screen', 'day', 'batteri', 'still', 'not', 'charg', 'return', 'phone'], ['iphon', 'use', 'bought', 'bran', 'new', 'tricki', 'supplier'], ['use', 'cell', 'phone', 'month', 'work', 'good', 'would', 'definet', 'recomend', 'need', 'know', 'kind', 'appl', 'cell', 'phone', 'not', 'work', 'sprint', 'verizon', 'metropc', 'mobil', 'work', 'good'], ['iphon', 'minor', 'scratch', 'item', 'not', 'even', 'recogn', 'mac', 'book', 'pro', 'connect', 'usb', 'turn', 'phone', 'insert', 'sim', 'ask', 'phone', 'block', 'lock', 'not', 'abl', 'use', 'realli', 'devast', 'situat'], ['es', 'confiabl', 'est', 'proveedor', 'de', 'celular', 'debido', 'que', 'fue', 'enviado', 'un', 'celular', 'iphon', 'como', 'nuevo', 'fue', 'vendido', 'en', 'el', 'ano', 'otra', 'persona', 'sea', 'era', 'basura', 'fui', 'directament', 'una', 'tienda', 'appl', 'en', 'florida', 'porqu', 'nunca', 'sirvio', 'resulto', 'ser', 'que', 'estaba', 'fuera', 'de', 'garantia', 'gracia', 'appl', 'tengo', 'un', 'iphon'], ['good'], ['receiv', 'iphon', 'found', 'microphon', 'not', 'work', 'spent', 'lot', 'money', 'paperweight', 'want', 'money', 'back'], ['excel', 'condit'], ['problem', 'like', 'iphon'], ['phone', 'open', 'screw', 'miss', 'along', 'wifi', 'connector', 'clip', 'antenna', 'clip', 'batteri', 'connector', 'miss', 'place', 'result', 'littl', 'wifi', 'connect', 'abil', 'hidden', 'damag'], ['excel'], ['ariv', 'time', 'apo', 'nice', 'buy', 'use', 'iphon', 'good', 'care', 'without', 'problem', 'work', 'perfect', 'reciv', 'describ'], ['receiv', 'order', 'coupl', 'day', 'ago', 'honest', 'not', 'hope', 'time', 'make', 'receiv', 'call', 'hear', 'noth', 'end', 'sometim', 'whole', 'thing', 'goe', 'black', 'despit', 'adequ', 'amount', 'batteri', 'life', 'serious', 'consid', 'send', 'back', 'refund', 'quit', 'disappoint'], ['worst', 'mobil', 'phone', 'bougth', 'life', 'bad', 'recharg', 'mobil', 'phone', 'becam', 'hot', 'slow', 'button', 'not', 'work', 'perfect'], ['receiv', 'product', 'accord', 'deliv', 'time', 'satisfi', 'good', 'deal'], ['primero', 'lo', 'evalu', 'bien', 'luego', 'el', 'telefono', 'empezo', 'fallar', 'se', 'quedaba', 'paralizado', 'el', 'boton', 'de', 'comando', 'dejo', 'de', 'funcionar', 'para', 'mi', 'sorpresa', 'la', 'appl', 'informa', 'que', 'el', 'telefono', 'ya', 'habia', 'sido', 'reparado', 'ant', 'que', 'tien', 'garantia', 'perdi', 'mi', 'dinero', 'lo', 'compren', 'first', 'evalu', 'fine', 'phone', 'start', 'fail', 'stay', 'paralyz', 'left', 'command', 'button', 'surpris', 'appl', 'inform', 'phone', 'alreadi', 'repair', 'warranti', 'lost', 'money', 'not', 'buy'], ['batteri', 'microphon', 'not', 'good'], ['good', 'phone', 'buy', 'tow', 'time'], ['excel'], ['order', 'scare', 'would', 'not', 'come', 'phone', 'came', 'perfect', 'condtion', 'month', 'love', 'much'], ['charger', 'wa', 'piec'], ['love', 'new', 'appl', 'iphon', 'phone', 'came', 'almost', 'brand', 'new', 'abl', 'go', 'local', 'sprint', 'store', 'get', 'activ', 'within', 'five', 'minut', 'problem', 'also', 'accessori', 'headphon', 'charger', 'work', 'brand', 'new', 'well', 'definit', 'got', 'money', 'worth', 'thank', 'amazon'], ['place', 'order', 'two', 'day', 'later', 'receiv', 'kind', 'sketchi', 'though', 'wrap', 'three', 'plastic', 'bag', 'put', 'box', 'phone', 'howev', 'great', 'condit', 'hope', 'not', 'stolen', 'lol'], ['happi', 'purchas', 'phone', 'describ', 'practic', 'new', 'scratch', 'problem', 'phone', 'far', 'thumb', 'alisonsel'], ['intend', 'use', 'phone', 'boost', 'mobil', 'servic', 'told', 'thati', 'could', 'not', 'use', 'anybodi', 'sprint', 'i', 'stuck', 'sprint', 'phone', 'not', 'want', 'sprint', 'servic', 'plan'], ['good', 'valu', 'money'], ['not', 'work', 'proper', 'let', 'return', 'without', 'problem'], ['work', 'awesom', 'great', 'phone', 'wonder', 'custom', 'servic'], ['item', 'look', 'nice', 'compact', 'mayb', 'compact', 'hand', 'applic', 'practic', 'easi', 'learn'], ['bought', 'phone', 'consider', 'could', 'unlock', 'sinc', 'live', 'brazil', 'rio', 'de', 'janeiro', 'sprint', 'sad', 'phone', 'not', 'activ', 'unless', 'sprint', 'account'], ['great', 'phone', 'work', 'without', 'issu', 'quit', 'eventu', 'screen', 'stop', 'adjust', 'turn', 'side', 'whatev', 'old', 'phone', 'point', 'high', 'recommend'], ['phone', 'good', 'charger', 'destroy'], ['love', 'iphon'], ['love', 'phone', 'ipod', 'die', 'android', 'phone', 'broke', 'bought', 'use', 'phone', 'new', 'condit', 'love', 'iphon', 'sync', 'ipad', 'use', 'place', 'ipod', 'die', 'hope', 'batteri', 'hold', 'well'], ['not', 'sprint', 'phone', 'att', 'phone', 'not', 'use', 'complet', 'wast', 'money', 'useless', 'purchas', 'phone', 'backup', 'phone', 'case', 'mine', 'husband', 'broke', 'way', 'unlock', 'use', 'sprint', 'would', 'not', 'recommend', 'anyon', 'purchas', 'phone', 'way'], ['littl', 'bit', 'slow', 'exit', 'app', 'reason', 'batteri', 'life', 'run', 'quick'], ['not', 'lock', 'sprint', 'state'], ['not', 'know', 'lock', 'screen', 'not', 'work', 'wrong', 'list'], ['everyth', 'great', 'work', 'look', 'great', 'ship', 'fast'], ['great'], ['came', 'three', 'day', 'exact', 'describ', 'function', 'great', 'not', 'part', 'day', 'recommend'], ['reason', 'i', 'even', 'give', 'item', 'star', 'phone', 'last', 'month', 'bought', 'suppos', 'new', 'phone', 'not', 'refurbish', 'drop', 'recent', 'get', 'fix', 'repair', 'shop', 'said', 'found', 'void', 'sticker', 'insid', 'button', 'also', 'not', 'complet', 'rig', 'work', 'got', 'phone', 'button', 'not', 'squar', 'suspici', 'never', 'thought', 'much', 'decent', 'phone', 'though', 'known', 'better', 'would', 'not', 'paid', 'extra', 'new', 'fals', 'advertis', 'not', 'right'], ['excel', 'work', 'smooth'], ['defect', 'phone', 'advertis', 'precept', 'use', 'good', 'condit', 'advertis', 'slight', 'water', 'damag', 'caus', 'screen', 'minor', 'discolor', 'top', 'bottom', 'crack', 'screen', 'discov', 'meant', 'realiti', 'sever', 'water', 'damag', 'camera', 'not', 'work', 'good', 'condit', 'replac', 'screen', 'not', 'proper', 'connect', 'give', 'complet', 'visibl', 'crack', 'screen', 'cours', 'not', 'replac', 'screen', 'continu', 'jump', 'even', 'went', 'black', 'i', 'not', 'sure', 'better', 'wors', 'minor', 'discolor', 'top', 'bottom', 'screen', 'within', 'hour', 'activ', 'phone', 'phone', 'anyth', 'good', 'condit', 'dishonest', 'semant', 'justifi', 'dishonest', 'behavior', 'bad', 'busi', 'deal', 'thought', 'trustworthi', 'site', 'amazon'], ['phone', 'work', 'fine', 'week', 'start', 'glitch', 'ask', 'send', 'back', 'get', 'refund', 'seller', 'pretti', 'much', 'said', 'softwar', 'appl'], ['good'], ['good', 'problem', 'far', 'not', 'slow', 'got', 'set', 'nice', 'easili', 'good', 'stuff'], ['phone', 'keep', 'turn', 'self', 'batteri', 'life', 'last', 'like', 'hour', 'less', 'one', 'know', 'let', 'know', 'hassl', 'return'], ['iphon', 'came', 'time', 'good', 'work', 'condit', 'still', 'go', 'good', 'month', 'upgrad', 'star'], ['fabul', 'glad', 'updat', 'daughter', 'old', 'flip', 'phone'], ['not', 'stay', 'charg', 'shut', 'unexpect', 'inopportun', 'time'], ['great', 'phone', 'decid', 'i', 'would', 'enough', 'verizon', 'crap', 'old', 'plan', 'not', 'want', 'lose', 'unlimit', 'data', 'not', 'want', 'pay', 'full', 'retail', 'price', 'new', 'phone', 'upgrad', 'wife', 'old', 'samsung', 'first', 'generat', 'junker', 'made', 'vow', 'search', 'amazon', 'good', 'deal', 'sure', 'enough', 'one', 'found', 'matter', 'look', 'find'], ['prefect', 'amaz', 'iphon', 'love', 'amaz', 'phone', 'great', 'function', 'detail', 'person', 'still', 'job'], ['love', 'wonder', 'took', 'long', 'buy', 'book', 'learn', 'siri', 'soon', 'great', 'product'], ['earli', 'xmas', 'gift', 'yr', 'old', 'granddaught', 'replac', 'one', 'old', 'phone', 'not', 'work', 'proper', 'anymor', 'live', 'kansa', 'live', 'redwood', 'citi', 'hope', 'phone', 'would', 'describ', 'seller', 'learn', 'except', 'get', 'verizon', 'plan', 'granddaught', 'thrill', 'phone', 'grate', 'seller', 'custom', 'servic', 'answer', 'question'], ['good', 'product', 'money'], ['like'], ['great', 'condit', 'work', 'great', 'tracfon'], ['work', 'want', 'pick', 'one', 'person', 'use', 'surpris', 'quick', 'link', 'ipad', 'seller', 'door', 'day'], ['could', 'not', 'use', 'straight', 'talk', 'sim', 'card', 'return', 'enjoy', 'quick', 'custom', 'servic'], ['love', 'much', 'realli', 'great', 'i', 'happi', 'order', 'place', 'five', 'star', 'understat'], ['came', 'advertis', 'brand', 'new', 'xmas', 'present', 'daughter', 'got', 'set', 'work', 'great', 'alreadi', 'other', 'knew', 'expect', 'seller', 'quick', 'deliveri', 'would', 'buy'], ['tri', 'activ', 'phone', 'told', 'phone', 'report', 'lost', 'stolen', 'obvious', 'could', 'not', 'use', 'posit', 'thing', 'say', 'seller', 'refund', 'purchas', 'minim', 'hassl'], ['arriv', 'excel', 'condit', 'function', 'flawless', 'work', 'right', 'box', 'mother', 'christma', 'gift', 'worth'], ['best', 'phone', 'ever', 'thought', 'would', 'hard', 'switch', 'android', 'phone', 'appl', 'wrong', 'love', 'iphon'], ['far', 'best', 'phone', 'ever', 'own', 'thing', 'wish', 'came', 'right', 'phone', 'thing', 'wish', 'could', 'take', 'phone', 'phone', 'work', 'great', 'love', 'nonetheless'], ['absolut', 'love', 'iphon', 'impress', 'accur', 'dealer', 'add', 'like', 'brand', 'new', 'love', 'amazon', 'depend', 'servic'], ['great', 'phone', 'great', 'deal'], ['came', 'littl', 'scrath', 'look', 'almost', 'brand', 'need', 'dock', 'station', 'clean', 'problem', 'great', 'phone'], ['nice'], ['speedi', 'ship', 'product', 'describ'], ['unlock', 'phone', 'categori', 'receiv', 'phone', 'lock', 'virtual', 'worthless', 'trip', 'europ', 'unhappi'], ['work', 'great'], ['skeptic', 'buy', 'phone', 'onlin', 'lot', 'research', 'care', 'pick', 'reput', 'seller', 'also', 'check', 'imei', 'clear', 'phone', 'set', 'carrier', 'receiv', 'phone', 'prompt', 'problem', 'set', 'servic', 'phone', 'like', 'brand', 'new', 'paid', 'half'], ['phone', 'receiv', 'excess', 'scratch', 'took', 'verizon', 'hour', 'activ', 'overh', 'speak', 'hand', 'i', 'liter', 'activ', 'hour', 'fulli', 'charg', 'batteri', 'alreadi', 'dead', 'descript', 'noth', 'like', 'receiv', 'morn', 'i', 'beyond', 'piss'], ['everyth', 'work', 'batteri', 'basic', 'shot', 'would', 'like', 'know', 'descript'], ['love', 'iphon', 'not', 'get', 'enough', 'alreadi', 'got', 'connect', 'love'], ['phone', 'look', 'great', 'arriv', 'went', 'activ', 'verizon', 'store', 'said', 'could', 'not', 'connect', 'anyth', 'cellular', 'complet', 'defect', 'need', 'return'], ['best', 'thank', 'steve', 'wozniak', 'began', 'creativ', 'genius', 'appl', 'steve', 'job', 'market', 'genius', 'not', 'credit', 'genius', 'behind', 'appl', 'engin', 'fabul', 'phone', 'thank', 'work', 'employe', 'project', 'purpl'], ['phone', 'sold', 'diamond', 'wireless', 'new', 'defect', 'not', 'connect', 'screen', 'crack', 'hold', 'hand', 'furthermor', 'told', 'return', 'replac', 'i', 'told', 'not', 'replac', 'lock', 'cloud', 'account', 'witch', 'never', 'done', 'definit', 'think', 'twice', 'buy', 'electron', 'onlin', 'plus', 'drain', 'still', 'go', 'buy', 'phone', 'i', 'rob'], ['return', 'phone'], ['perfect', 'condit', 'came', 'differ', 'phone', 'box', 'not', 'matter', 'abl', 'bring', 'verizon', 'get', 'info', 'transfer', 'without', 'hitch', 'abl', 'skip', 'ad', 'month', 'fee', 'would', 'bought', 'phone', 'verizon', 'save', 'us', 'hundr', 'dollar', 'year', 'next', 'two', 'year'], ['disappoint', 'size', 'damag', 'top', 'screen', 'larg', 'part', 'screen', 'miss', 'said', 'crack', 'like', 'chunck', 'screen', 'fell'], ['item', 'seem', 'great', 'thank'], ['great', 'phone', 'iphon', 'start', 'drop', 'call', 'not', 'receiv', 'call', 'everyth', 'go', 'voicemail', 'year', 'verizon', 'could', 'not', 'anyth', 'replac', 'love', 'littl', 'slower', 'better', 'size', 'work'], ['pleasant', 'surpris', 'old', 'lost', 'cell', 'verizon', 'not', 'abl', 'provid', 'anoth', 'time', 'search', 'around', 'found', 'new', 'phone', 'never', 'use', 'amazon', 'work', 'well', 'abl', 'activ', 'verizon', 'problem', 'kept', 'wait', 'someth', 'go', 'wrong', 'fail', 'phone', 'not'], ['grandson', 'phone', 'got', 'left', 'basebal', 'pant', 'went', 'wash', 'got', 'phone', 'phone', 'arriv', 'day', 'happi'], ['great'], ['great'], ['pretti', 'much', 'brand', 'new', 'scratch', 'def', 'buy'], ['phone', 'work', 'perfect', 'wonder', 'transact'], ['phone', 'last', 'bare', 'month', 'not', 'hold', 'charg', 'order', 'new', 'phone', 'someon', 'els', 'yesterday'], ['came', 'time', 'love', 'look', 'even', 'bigger', 'turn', 'yet', 'i', 'blown', 'thought', 'would', 'look', 'thing', 'wish', 'came', 'headphon', 'manual', 'wud', 'plus', 'buutt', 'love', 'love', 'love', 'new', 'iphon', 'thank', 'amazon', 'love', 'yah'], ['love', 'phone', 'think', 'besid', 'function', 'realli', 'like', 'sturdi', 'phone', 'right', 'amount', 'weight', 'someth', 'happen', 'phone', 'buy', 'model'], ['not', 'like', 'softwar', 'slow'], ['came', 'exact', 'said', 'would', 'phone', 'look', 'brand', 'new', 'far', 'problem', 'i', 'froze', 'would', 'definit', 'recommend', 'product', 'friend'], ['great', 'condit', 'look', 'brand', 'new'], ['month', 'far', 'phone', 'good'], ['everyth', 'fine'], ['good'], ['phone', 'work', 'great', 'i', 'not', 'iphon', 'person'], ['bought', 'phone', 'know', 'refurbish', 'not', 'look', 'new', 'glass', 'possibl', 'replac', 'side', 'phone', 'worn', 'possibl', 'case', 'phone', 'work', 'three', 'week', 'crash', 'would', 'not', 'charg', 'would', 'not', 'turn', 'took', 'appl', 'told', 'batteri', 'last', 'cycl', 'not', 'replac', 'phone', 'would', 'cost', 'replac', 'phone', 'junk', 'not', 'correct', 'refurbish', 'save', 'self', 'troubl', 'not', 'buy'], ['feel', 'best', 'deal', 'got', 'perfect', 'serv', 'issu', 'till', 'date'], ['not', 'good', 'charger', 'not', 'work', 'app', 'store', 'not', 'open', 'replac', 'soon'], ['great', 'phone'], ['describ', 'us'], ['i', 'phone', 'month', 'still', 'work', 'pretti', 'good'], ['pleas', 'order', 'phone', 'arriv', 'quicker', 'said', 'work', 'great'], ['list', 'phone', 'arriv', 'verizon', 'phone', 'sent', 'back'], ['product', 'poor', 'qualiti', 'bought', 'brought', 'use', 'outsid', 'usa', 'took', 'time', 'abl', 'test', 'devic', 'surpris', 'microphon', 'not', 'work', 'batteri', 'not', 'recharg', 'proper', 'not', 'usa', 'arrang', 'repair', 'use', 'devic', 'cost', 'us', 'iphon', 'unlock', 'white', 'certifi', 'refurbish'], ['gift', 'wife', 'happi', 'everyth', 'work', 'fine', 'except', 'grey', 'not', 'usabl', 'googl', 'issu', 'iphon', 'see', 'mean', 'make', 'mind', 'one'], ['realli', 'good'], ['took', 'phone', 'verizon', 'store', 'lexington', 'sc', 'told', 'could', 'not', 'activ', 'phone', 'not', 'one', 'thier', 'suggest', 'phone'], ['work', 'fine', 'discrib'], ['receiv', 'order', 'unlock', 'gsm', 'iphon', 'gorilla', 'glass', 'heavi', 'duti', 'case', 'phone', 'verizon', 'cdma', 'carrier', 'unlock', 'not', 'team', 'mobil', 'gsm', 'unlock', 'also', 'gorilla', 'glass', 'case', 'came', 'shatter', 'insid', 'bubbl', 'wrap', 'good', 'thing', 'packag', 'arriv', 'hour', 'return'], ['excel'], ['bought', 'could', 'use', 'trulink', 'hear', 'aid', 'iphon', 'not', 'sync', 'starkey', 'aid', 'expect', 'better', 'amazon', 'lick', 'bought', 'phone'], ['date', 'iphon', 'not', 'worth', 'wast', 'money', 'way', 'slow'], ['phone', 'work', 'advertis', 'arriv', 'good', 'condit', 'charg', 'readi', 'go', 'ship', 'week', 'behind', 'even', 'prime', 'ship'], ['great', 'product'], ['not', 'buy', 'phone', 'use', 'head', 'phone', 'chip', 'charger', 'not', 'origin', 'iphon', 'box'], ['v', 'good'], ['buy', 'two', 'phone', 'refurbish', 'receiv', 'use', 'mica', 'screen', 'mark', 'scratch', 'use', 'protect', 'liner', 'case', 'metal', 'bezel', 'mani', 'brand', 'use', 'hurt', 'receiv', 'venezuela', 'not', 'immedi', 'return'], ['nice'], ['cell', 'work', 'well', 'letter', 'dorsn', 'work', 'canot', 'write', 'well', 'amazon', 'not', 'polic', 'returnso', 'bad'], ['not', 'know', 'everyon', 'diss', 'phone', 'mine', 'came', 'perfect', 'unlock', 'not', 'singl', 'scratch', 'thing', 'buy', 'older', 'phone', 'like', 'littl', 'slow', 'besid', 'perfect'], ['ok'], ['not', 'sold', 'appl'], ['thanx', 'iphon', 'great'], ['sometim', 'phone', 'random', 'turn', 'tri', 'someth', 'video', 'problem'], ['not', 'work', 'proper', 'want', 'return'], ['ok'], ['phone', 'brand', 'new', 'scratch', 'excel'], ['appl', 'said', 'unlock', 'not'], ['probabl', 'use', 'button', 'not', 'work', 'overal', 'not', 'new'], ['problem', 'activ', 'far', 'good'], ['love'], ['new', 'phone', 'not', 'work', 'i', 'would', 'like', 'send', 'back', 'buy', 'new', 'one'], ['first', 'month', 'oper', 'like', 'new', 'product', 'becam', 'defect', 'sent', 'appl', 'get', 'fix', 'could', 'not', 'anyth', 'complet', 'utter', 'wast', 'high', 'upset', 'noth'], ['i', 'sorri', 'say', 'despit', 'fact', 'posit', 'opinion', 'abou', 'blink', 'seller', 'far', 'unabl', 'feel', 'way', 'bought', 'phone', 'march', 'refurbish', 'till', 'work', 'day', 'ago', 'began', 'experienc', 'serious', 'issu', 'start', 'spot', 'onh', 'screen', 'would', 'not', 'turn', 'turn', 'camera', 'would', 'not', 'work', 'proper', 'even', 'though', 'took', 'realli', 'good', 'care', 'contactedt', 'replac', 'told', 'realli', 'sorri', 'unabl', 'assist', 'issu', 'legal', 'day', 'period', 'time', 'replac', 'not', 'fault', 'product', 'broke', 'paid', 'reson', 'amount', 'money', 'stuck', 'realli', 'disappoint', 'whole', 'experi'], ['look', 'phone', 'scratch', 'scuff', 'receiv', 'brand', 'new', 'iphon', 'scratch', 'scuff', 'everyth', 'work'], ['say', 'i', 'iphon', 'girl', 'ha', 'ha', 'ha', 'love', 'siri', 'secretari', 'not', 'say', 'enough', 'good', 'thing', 'mani', 'thing', 'one', 'spot', 'phone', 'timer', 'schedul', 'alarm', 'note', 'calendar', 'camera', 'abl', 'dictat', 'instead', 'type', 'etc', 'keep', 'discov', 'way', 'use', 'love', 'love', 'love', 'love', 'love'], ['i', 'impress', 'process', 'speed', 'qualiti', 'build', 'eas', 'use', 'screen', 'small', 'today', 'standard', 'clear', 'touch', 'screen', 'precis', 'run', 'os', 'without', 'problem'], ['phone', 'exact', 'want', 'work', 'well', 'drop', 'shatter', 'face', 'short', 'own', 'abl', 'pick', 'iphon'], ['amaz', 'condit', 'exact', 'describ'], ['fast', 'deliveri', 'describ', 'happi', 'extra', 'storag', 'replac', 'gb', 'one', 'happi'], ['work', 'like', 'charm', 'appreci', 'increas', 'space', 'get', 'hot', 'replac', 'screen', 'sinc', 'phone', 'jump', 'desk', 'not', 'figur', 'not', 'wear', 'batteri', 'carri', 'extra', 'dual', 'power', 'batteri'], ['iphon', 'screen', 'scrambl', 'get', 'garbl', 'almost', 'everi', 'time', 'make', 'phone', 'call', 'longer', 'coupl', 'minut', 'not', 'exact', 'worth', 'paid'], ['order', 'replac', 'near', 'end', 'servic', 'life', 'function', 'ident', 'previous', 'phone', 'happi'], ['great', 'phone', 'speed', 'fast', 'easi', 'os', 'use', 'iphon', 'enough', 'said', 'lol'], ['seller', 'realli', 'good', 'job', 'ship', 'quick', 'receiv', 'phone', 'estim', 'due', 'date', 'great', 'not', 'great', 'condit', 'phone', 'not', 'like', 'new', 'bottom', 'part', 'charg', 'port', 'dent', 'also', 'mark', 'top', 'part', 'phone', 'power', 'button', 'situat', 'amazon', 'descript', 'use', 'like', 'new', 'appar', 'untouch', 'item', 'perfect', 'condit', 'origin', 'protect', 'wrap', 'may', 'miss', 'origin', 'packag', 'intact', 'pristin', 'absolut', 'sign', 'wear', 'item', 'packag', 'instruct', 'includ', 'item', 'suitabl', 'present', 'instruct', 'box', 'phone', 'put', 'bubblewrap', 'shove', 'postag', 'box', 'accessori', 'addit', 'free', 'accessori', 'provid', 'seen', 'better', 'day', 'otterbox', 'case', 'suppos', 'white', 'dirti', 'scratch', 'could', 'not', 'may', 'seem', 'like', 'i', 'realli', 'not', 'expect', 'like', 'new', 'phone', 'not', 'get', 'one', 'fork', 'not', 'meet', 'expect', 'disappoint', 'not', 'mention', 'fact', 'lot', 'seller', 'understand', 'although', 'stood', 'descript', 'said', 'condit', 'subject', 'end', 'user', 'interpret', 'mislead', 'book', 'phone', 'return', 'get', 'full', 'refund', 'thank'], ['excel', 'condit', 'scratch', 'damag', 'ad', 'account', 'issu', 'pleas', 'recommend'], ['great', 'gift', 'offspr'], ['perfect', 'deliveri', 'match', 'per', 'requier', 'perfect', 'packag', 'good', 'qualiti', 'look', 'nice', 'plastic', 'color', 'fast', 'connect'], ['seler', 'sent', 'broken', 'two', 'year', 'use', 'product', 'still', 'answer', 'one', 'week'], ['well', 'not', 'much', 'say', 'iphon', 'use', 'sinc', 'first', 'generat', 'came', 'not', 'lot', 'differ', 'model', 'iphon', 'siri', 'littl', 'bit', 'speed', 'weight', 'bought', 'one', 'cousin', 'love', 'iphon', 'find', 'screen', 'besid', 'taller', 'not', 'wider', 'show', 'richer', 'color'], ['execel', 'way'], ['good'], ['phone', 'factori', 'defect', 'fault', 'will', 'help', 'great', 'work'], ['excel'], ['great', 'phone'], ['defect', 'item', 'product', 'said', 'factori', 'unlock', 'gsm', 'work', 'world', 'wide', 'not', 'work'], ['awesom', 'iphon', 'appreci', 'amount', 'gig', 'hold', 'look', 'forward', 'larger', 'screen'], ['came', 'time', 'describ'], ['phone', 'great', 'condit', 'great', 'price'], ['know', 'descript', 'say', 'may', 'scratch', 'wear', 'got', 'phone', 'earli', 'look', 'brand', 'new', 'got', 'phone', 'three', 'day', 'earli', 'scratch', 'appear', 'fresh', 'box', 'noth', 'good', 'thing', 'say', 'phone', 'look', 'work', 'great', 'thank', 'rebound'], ['appl', 'iphon', 'even', 'better', 'could', 'imagin', 'great', 'shape', 'total', 'satisfi', 'purchas', 'seller', 'concern', 'left', 'packag', 'chair', 'face', 'park', 'lot', 'live', 'instead', 'place', 'packag', 'behind', 'chair', 'one', 'could', 'seen', 'satisfi', 'custom', 'sure', 'recommend', 'use', 'amazon', 'futur', 'purchas', 'king'], ['phone', 'great', 'condit', 'function', 'well', 'problem', 'batteri', 'life', 'given', 'buy', 'use', 'phone', 'previous', 'owner', 'like', 'wore', 'good', 'buy', 'phone', 'also', 'ship', 'extream', 'fast'], ['love', 'extrem', 'happi', 'purchas'], ['got', 'iphon', 'factori', 'unlock', 'use', 'germani', 'soon', 'get', 'i', 'excit', 'use', 'phone', 'well', 'fast', 'deliveri', 'good', 'servic'], ['excel'], ['excel', 'product', 'meet', 'descript', 'product'], ['describ', 'would', 'recommend', 'seller'], ['hate', 'product', 'phone', 'not', 'hold', 'charg', 'jump', 'app', 'i', 'not', 'get', 'product', 'disappoint', 'product', 'realli', 'want', 'money', 'back'], ['excel'], ['phone', 'complet', 'wast', 'money', 'front', 'back', 'camera', 'stop', 'work', 'within', 'month', 'flashlight', 'stop', 'work', 'yesterday', 'drop', 'morn', 'whole', 'screen', 'pop', 'phone', 'could', 'see', 'cheap', 'glue', 'border', 'glass', 'rim', 'phone', 'find', 'slit', 'side', 'phone', 'made', 'plastic', 'well', 'screen', 'cheap', 'plastic'], ['earpiec', 'not', 'work', 'call', 'put', 'speaker', 'phone', 'hear', 'side', 'line', 'screen', 'seem', 'fall', 'front', 'phone', 'squeez', 'back', 'sever', 'time', 'day'], ['charg', 'multipl', 'time', 'die', 'hour', 'came', 'scratch', 'look', 'use', 'would', 'not', 'buy', 'seller'], ['phone', 'bad', 'condetin', 'constal', 'turn', 'not', 'come', 'origin', 'part', 'realli', 'want', 'money', 'back'], ['arriv', 'time', 'good', 'want', 'save', 'take', 'month', 'contract'], ['bought', 'transfer', 'tracfon', 'servic', 'iphon', 'covet', 'came', 'look', 'transfer', 'easi', 'got', 'sim', 'card', 'nano', 'tracfon', 'call', 'autom', 'line', 'walk', 'us', 'chang', 'old', 'tracfon', 'phone', 'new', 'easypeasi', 'iphon', 'peopl', 'import', 'teen', 'complaint', 'transfer', 'took', 'less', 'min', 'order', 'one', 'week', 'loos', 'dumb', 'phone', 'smarter', 'one', 'heheh'], ['phone', 'work', 'first', 'day', 'never', 'work', 'keep', 'crash', 'i', 'go', 'buy', 'appl', 'product', 'appl', 'not', 'hassl', 'wait', 'refund', 'tri', 'get', 'replac'], ['phone', 'came', 'cheap', 'hand', 'made', 'hard', 'paper', 'case', 'duplic', 'low', 'qualiti', 'charger', 'charger', 'code', 'ear', 'phone', 'not', 'includ', 'phone', 'never', 'switch', 'felt', 'like', 'duplic', 'product', 'descript', 'said', 'certifi', 'refurbish', 'origin', 'accessori', 'not', 'case', 'seller', 'could', 'put', 'right', 'inform', 'never', 'bad', 'experi', 'seller', 'amazon', 'could', 'see', 'review', 'almost', 'everi', 'one', 'bought', 'not', 'get', 'trap', 'descript', 'not', 'even', 'worth', 'never', 'expect', 'thing', 'like', 'amazon', 'seller', 'return', 'product'], ['love', 'better', 'bought', 'new', 'batteri', 'put', 'till', 'get'], ['like', 'becous', 'price', 'razon'], ['excel', 'buy'], ['not', 'buy', 'keep', 'time', 'refurbish', 'new', 'uff', 'yea', 'peopl', 'rigth', 'batteri', 'hour', 'hold', 'batteri', 'wath', 'tha', 'good', 'price', 'naa', 'use', 'scratch', 'dent', 'dirti', 'naa', 'cours', 'return'], ['phone', 'poor', 'condit', 'screen', 'sever', 'scratch', 'scuf', 'batteri', 'could', 'hold', 'charg', 'went', 'less', 'end', 'pay', 'new', 'batteri', 'screen', 'cosmet'], ['return', 'batteri', 'dead'], ['love'], ['phone', 'would', 'not', 'hold', 'charg', 'charg', 'night', 'within', 'two', 'hour', 'would', 'die', 'unplug', 'twice', 'went', 'dead', 'batteri', 'life', 'return', 'one', 'day'], ['far', 'work', 'great', 'i', 'week', 'issu', 'far', 'thank'], ['everyth', 'great', 'except', 'camera', 'shutter', 'hard', 'wire', 'never', 'silenc', 'japanes', 'phone', 'alway', 'shutter', 'nois', 'everi', 'photo', 'taken', 'even', 'screenshot', 'app', 'person', 'annoy', 'end'], ['like'], ['phone', 'not', 'come', 'sim', 'card', 'manual', 'phone'], ['ok'], ['product', 'not', 'certifi', 'mine', 'came', 'pink', 'shadow', 'back', 'light', 'not', 'time', 'return', 'need', 'send', 'oversea', 'today', 'bad', 'product'], ['nice', 'phone', 'thing', 'dislik', 'first', 'two', 'day', 'die', 'hit', 'not', 'done', 'hold', 'charg'], ['idea', 'not', 'check', 'review', 'purchas', 'vendor', 'wish', 'other', 'mention', 'batteri', 'die', 'almost', 'immedi', 'certain', 'app', 'not', 'work', 'not', 'believ', 'devic', 'actual', 'check', 'certifi', 'ship', 'abl', 'get', 'refund', 'huge', 'hassl', 'find', 'anoth', 'phone'], ['first', 'never', 'return', 'complain', 'purchas', 'made', 'amazon', 'even', 'though', 'time', 'skeptic', 'purchas', 'refurbish', 'price', 'fair', 'initi', 'impress', 'phone', 'look', 'never', 'use', 'arriv', 'suppos', 'phone', 'unlock', 'activ', 'servic', 'provid', 'easi', 'howev', 'speaker', 'not', 'work', 'mean', 'headphon', 'music', 'alarm', 'speaker', 'phone', 'disappoint', 'need', 'phone', 'hurri', 'return', 'wait', 'repair', 'replac', 'defeat', 'entir', 'purpos'], ['iphon', 'great', 'scratch', 'everyth', 'turn', 'well', 'wish', 'tool', 'could', 'open', 'sms', 'card', 'overal', 'love', 'new', 'phone', 'i', 'troubl', 'siri'], ['go', 'return', 'phone', 'soon', 'get', 'vacat', 'lot', 'small', 'problem', 'overheat', 'quick'], ['speaker', 'broken', 'one', 'could', 'understand', 'say', 'sound', 'like', 'water', 'return', 'phone'], ['use', 'hour', 'show', 'electr'], ['nice', 'phone', 'work'], ['malfunct'], ['far', 'excel'], ['look', 'like', 'new', 'well', 'thank'], ['batteri', 'die', 'fast', 'wen', 'open', 'app', 'phone', 'look', 'brand', 'new'], ['phone', 'came', 'clean', 'scratch', 'look', 'like', 'came', 'first', 'time', 'power', 'would', 'not', 'hold', 'horribl', 'part', 'speaker', 'sound', 'horribl', 'could', 'not', 'even', 'hear', 'ring', 'tone', 'loud', 'phone', 'refurbish', 'look', 'great', 'reason', 'return', 'speaker', 'sound', 'like'], ['great', 'new', 'condit', 'problem', 'activ', 'great', 'phone'], ['not', 'sold', 'site', 'lock', 'verizon', 'phone', 'not', 'unlock', 'att', 'phone', 'advertis', 'wast', 'two', 'hour', 'time', 'bought', 'good', 'faith', 'suck'], ['perfect'], ['work', 'perfect', 'advertis', 'pristin', 'condit', 'packag', 'nice'], ['batteri', 'not', 'good', 'go', 'appl', 'store', 'get', 'brand', 'new', 'batteri', 'phone', 'fine'], ['seller', 'not', 'state', 'phone', 'inoper', 'would', 'requir', 'extens', 'cost', 'repair'], ['problem', 'carrier', 'phone', 'came', 'time', 'activ', 'love', 'deliv', 'perfect', 'condit', 'thank'], ['excel'], ['hate', 'iphon', 'suck', 'android', 'phone', 'keep', 'never', 'buy', 'anoth', 'iphon', 'lot', 'thing', 'not', 'iphon', 'android', 'iphon', 'get', 'hot', 'not', 'stay', 'not', 'even', 'want', 'give', 'star', 'made'], ['lock'], ['first', 'iphon', 'still', 'tri', 'learn', 'product', 'arriv', 'day', 'expect'], ['i', 'never', 'purchas', 'pangea', 'deal', 'ever'], ['great', 'batteri', 'not', 'annoy', 'notif', 'higher', 'app', 'qualiti', 'android'], ['condit', 'phone', 'exceed', 'expect'], ['love', 'phone', 'far', 'good', 'week', 'although', 'thought', 'sinc', 'chang', 'great', 'though'], ['great', 'phone', 'clean', 'everyth', 'use', 'not', 'disappoint', 'definit', 'not', 'disappoint', 'go'], ['use', 'fine'], ['phone', 'give', 'troubl'], ['great', 'phone', 'great', 'price'], ['complain', 'high', 'recommend', 'guy'], ['phone', 'perfect', 'condit', 'love', 'got', 'deliveri', 'date', 'satisfi'], ['lag', 'sometim'], ['batteri', 'last', 'coupl', 'hour', 'normal', 'use', 'text', 'social', 'media', 'phone', 'die', 'around', 'intern', 'issu', 'not', 'allow', 'proper', 'data', 'use', 'map', 'music', 'etc', 'data', 'not', 'work', 'thing', 'not', 'load', 'even', 'full', 'lag', 'everi', 'issu', 'not', 'show', 'month', 'use', 'part', 'probabl', 'trade', 'cheap', 'sell', 'go', 'anoth', 'seller'], ['husband', 'order', 'phone', 'daughter', 'christma', 'use', 'verizon', 'phone', 'cost', 'quit', 'bit', 'less', 'would', 'gone', 'verizon', 'far', 'everyth', 'work', 'well', 'daughter', 'realli', 'happi', 'phone', 'came', 'ear', 'bud', 'charger', 'sim', 'card', 'took', 'everyth', 'verizon', 'let', 'set', 'phone', 'switch', 'number', 'reliev', 'know', 'not', 'problem', 'littl', 'hesit', 'order', 'phone', 'issu', 'phone', 'stuck', 'slide', 'upgrad', 'screen', 'first', 'turn', 'could', 'not', 'get', 'past', 'screen', 'make', 'wonder', 'phone', 'return', 'point', 'look', 'brand', 'new', 'found', 'way', 'fix', 'problem', 'onlin', 'end', 'let', 'experienc', 'peopl', 'verizon', 'take', 'care'], ['great', 'product', 'clean', 'look', 'new', 'prompt', 'ship'], ['bought', 'phone', 'replac', 'iphon', 'unfortun', 'spin', 'cycl', 'washer', 'wife', 'wash', 'pant', 'guess', 'happen', 'make', 'insur', 'gambl', 'face', 'buy', 'brand', 'new', 'phone', 'full', 'price', 'not', 'exact', 'someth', 'happi', 'look', 'price', 'iphon', 'not', 'prepar', 'pay', 'phone', 'even', 'replac', 'turn', 'desper', 'replac', 'iphon', 'began', 'look', 'use', 'devic', 'came', 'across', 'one', 'purchas', 'although', 'technic', 'downgrad', 'knew', 'differ', 'mere', 'cosmet', 'well', 'worth', 'potenti', 'price', 'save', 'littl', 'skeptic', 'first', 'ask', 'amazon', 'warehous', 'deal', 'custom', 'servic', 'question', 'order', 'phone', 'came', 'unoffici', 'packag', 'brand', 'new', 'offici', 'accessori', 'would', 'not', 'say', 'phone', 'look', 'brand', 'new', 'great', 'condit', 'scratch', 'screen', 'light', 'wear', 'back', 'phone', 'hard', 'notic', 'earpiec', 'littl', 'dirti', 'real', 'actual', 'damag', 'devic', 'use', 'began', 'load', 'app', 'program', 'onto', 'phone', 'use', 'within', 'first', 'week', 'realiz', 'one', 'thing', 'horribl', 'wrong', 'batteri', 'life', 'aw', 'would', 'not', 'even', 'make', 'past', 'lunch', 'time', 'call', 'custom', 'servic', 'readi', 'ship', 'back', 'short', 'get', 'packag', 'readi', 'go', 'mother', 'remind', 'batteri', 'recal', 'iphon', 'one', 'model', 'recal', 'could', 'proababl', 'get', 'batteri', 'replac', 'appl', 'free', 'check', 'appl', 'websit', 'type', 'phone', 'serial', 'sure', 'enough', 'recal', 'list', 'reluct', 'drove', 'appl', 'store', 'check', 'hour', 'replac', 'batteri', 'free', 'charg', 'brand', 'new', 'batteri', 'phone', 'work', 'good', 'new', 'overal', 'use', 'gambl', 'paid', 'would', 'definit', 'recommend', 'tri', 'use', 'devic', 'similar', 'situat', 'think', 'amazon', 'need', 'check', 'devic', 'make', 'sure', 'appl', 'replac', 'batteri', 'sell', 'custom', 'though', 'even', 'though', 'replac', 'free', 'cost', 'time', 'gas', 'inconveni'], ['batteri', 'life', 'terribl', 'phone', 'not', 'charg', 'percent', 'goe', 'real', 'quick', 'lose', 'like', 'percent', 'everi', 'minut', 'connect', 'slow', 'hard', 'time', 'load', 'alway', 'turn', 'batteri', 'around', 'percent', 'terribl', 'phone', 'terribl', 'seller'], ['extrem', 'fast', 'ship', 'great', 'phone'], ['got', 'phone', 'somewhat', 'quick', 'phone', 'ding', 'corner', 'screen', 'good', 'condit', 'batteri', 'came', 'not', 'hold', 'charg', 'took', 'iphon', 'store', 'replac', 'free', 'recal', 'someth', 'batteri', 'overal', 'satisfi'], ['great', 'phone', 'thank'], ['phone', 'alreadi', 'mess', 'color', 'fade', 'not', 'even', 'month', 'old', 'want', 'know'], ['problem', 'phone', 'work', 'fine', 'high', 'recommend', 'thank'], ['good', 'product', 'seller', 'mention'], ['navi', 'bought', 'phone', 'oversea', 'sent', 'hous', 'return', 'home', 'holiday', 'return', 'home', 'tri', 'activ', 'phone', 'verizon', 'told', 'stolen', 'noth', 'could', 'buy', 'anoth', 'full', 'retail', 'price', 'huge', 'wast'], ['new', 'shipe', 'speed', 'fast', 'like', 'cheaper', 'easi', 'use', 'nobodi', 'konw', 'use', 'secondhand', 'cellphon'], ['fast', 'ship', 'item', 'describ', 'respons', 'seller', 'high', 'recommend'], ['excel'], ['happi', 'phone', 'though', 'put', 'new', 'batteri'], ['like', 'brand', 'new', 'i', 'use', 'month', 'still', 'love'], ['excel', 'say'], ['i', 'phone', 'month', 'i', 'problem', 'first', 'got', 'not', 'hold', 'charg', 'long', 'power', 'random', 'come', 'back', 'troubl', 'even', 'get', 'charg', 'mayb', 'charger', 'came'], [], [], ['bought', 'phone', 'basic', 'cave', 'man', 'dad', 'never', 'smart', 'phone', 'user', 'friend', 'system', 'easi', 'learn'], ['batteri', 'not', 'hold', 'chargei', 'instal', 'new', 'batteri'], ['still', 'super', 'happi', 'got', 'phone', 'use', 'actual', 'phone', 'scratch', 'best', 'phone', 'i', 'bought', 'amazon'], ['work', 'like', 'charm'], ['phone', 'receiv', 'came', 'neat', 'profession', 'matter', 'look', 'insid', 'box', 'contain', 'mention', 'materi', 'expect', 'receiv', 'want', 'switch', 'phone', 'phone', 'compani', 'provid', 'could', 'not', 'mani', 'hour', 'proceed', 'nearbi', 'appl', 'store', 'assist', 'told', 'appl', 'phone', 'bought', 'compani', 'inde', 'not', 'go', 'work', 'defect', 'return', 'i', 'fine', 'refund', 'disappoint', 'lie', 'feed', 'look', 'forward', 'phone', 'today', 'abl', 'use', 'content', 'not', 'case', 'would', 'not', 'recommend', 'compani'], ['phone', 'great', 'shape', 'except', 'flash', 'not', 'work', 'wish', 'would', 'said'], ['not', 'keep', 'charg', 'send', 'back'], ['good', 'condit', 'price'], ['like', 'phone', 'lot', 'work', 'great', 'except', 'die'], ['good', 'price', 'advertis', 'condit'], [], ['good', 'experi'], ['good', 'cabl', 'chager', 'not', 'work', 'bought', 'new', 'one', 'appl', 'store'], ['bought', 'go', 'oversea', 'front', 'face', 'camera', 'not', 'work', 'realli', 'disappoint', 'purchas'], ['appl', 'iphon', 'white', 'verizon', 'wireless', 'iphon', 'spport', 'gsm', 'wcdma', 'like', 'much'], ['not', 'work', 'verizon', 'advertis', 'immedi', 'return'], ['phone', 'decent', 'condit', 'not', 'hold', 'charg', 'long'], ['item', 'great', 'new', 'good', 'iphon', 'best', 'mobil', 'use', 'one', 'week', 'feel', 'satisfact'], ['batteri', 'suck', 'die', 'percentag', 'not', 'make', 'sens', 'like', 'percent', 'piec', 'junk'], ['sweet', 'phone', 'meet', 'expect', 'gripe', 'phone', 'advertis', 'memori', 'arriv', 'suggest', 'product', 'advertis', 'match', 'exact', 'product', 'ship'], ['month', 'purchas', 'sudden', 'batteri', 'life', 'terribl', 'noth', 'done', 'help', 'goe', 'dead', 'second', 'time', 'function', 'fine', 'i', 'start', 'carri', 'booster', 'batteri', 'restart', 'phone'], ['arriv', 'quick', 'work', 'perfect'], ['could', 'give', 'star', 'would', 'i', 'phone', 'month', 'not', 'hold', 'charg', 'die', 'batteri', 'not', 'turn', 'sometim', 'etc', 'today', 'took', 'appl', 'store', 'see', 'might', 'wrong', 'wrong', 'appl', 'part', 'strip', 'replac', 'part', 'look', 'like', 'iphon', 'use', 'work', 'like', 'iphon', 'appl', 'not', 'touch', 'ft', 'pole', 'i'], ['great', 'condit', 'awesom', 'purchas'], ['phone', 'kind', 'malfunct', 'batteri', 'phone', 'shut', 'like', 'batteri', 'dead', 'plug', 'turn', 'back', 'also', 'batteri', 'life', 'terribl', 'take', 'charger', 'phone', 'die', 'within', 'half', 'hour', 'either', 'batteri', 'sent', 'burnt', 'someth', 'els', 'serious', 'wrong', 'phone'], ['gift', 'total', 'met', 'expect'], ['not', 'realli', 'happi', 'purchas', 'new', 'batteri', 'soon', 'got', 'run', 'phone', 'make', 'weird', 'sound', 'ear', 'talk', 'refurbish', 'verizon', 'phone', 'spent', 'money', 'purchas', 'new'], ['work', 'good'], ['came', 'broken', 'batteri', 'overh', 'home', 'button', 'not', 'work', 'gift', 'sent', 'far', 'away', 'not', 'return', 'anymor', 'disappoint'], ['best', 'deal', 'ever', 'got', 'son', 'broke', 'screen', 'excel', 'condit', 'best', 'part', 'not', 'expens', 'drove', 'back', 'school', 'listen', 'music', 'plus', 'got', 'turn', 'turn', 'direct', 'generic', 'cellphon', 'actual', 'think', 'get', 'iphon', 'find', 'one', 'provid'], ['great'], ['good'], ['amveri', 'disappoint', 'purchas', 'item', 'month', 'batteri', 'model', 'gone', 'bad', 'replac', 'batteri', 'lcd', 'screen', 'display', 'digit', 'touch', 'panel', 'get', 'touch', 'supplier', 'appl', 'iphon', 'factori', 'unlock', 'gsm', 'cell', 'phone', 'black', 'certifi', 'refurbish'], ['phone', 'exact', 'seller', 'said', 'would', 'great', 'price'], ['great', 'thabk'], ['perfect', 'condit', 'like', 'new', 'love'], ['button', 'stick', 'hard', 'lock', 'phone', 'also', 'batteri', 'not', 'hold', 'charg', 'well', 'think', 'common', 'problem', 'iphon', 'go', 'instant', 'zero', 'turn', 'complet'], ['mom', 'love', 'mother', 'day', 'gift'], ['good'], ['phone', 'suck', 'batteri', 'die', 'everi', 'second', 'keep', 'charg', 'everi', 'second', 'day', 'big', 'wast', 'money', 'not', 'buy', 'parti', 'seller'], ['good', 'thank'], ['like', 'look', 'unlock', 'not', 'connect', 'wifi', 'batteri', 'not', 'hold', 'charg', 'even', 'day', 'clock', 'hour', 'phone', 'messag', 'work', 'basic', 'bought', 'expens', 'phone', 'sinc', 'good', 'refurbish', 'not', 'realli', 'accur'], ['everyth', 'want', 'phone'], ['phone', 'sent', 'faulti', 'batteri', 'batteri', 'drain', 'less', 'hour', 'take', 'appl', 'store', 'fo', 'batteri', 'replac', 'end', 'pay', 'addit', 'money', 'fix', 'certifi', 'refurbish', 'phone'], ['great', 'thank'], ['nice', 'phone', 'work'], ['great', 'problem'], ['devic', 'perfect', 'lock', 'advertis', 'sim', 'card', 'not', 'includ', 'packag', 'also', 'contact', 'still', 'not', 'finish', 'not', 'use', 'phone', 'anoth', 'sim'], ['like', 'new', 'impress', 'work', 'fantast', 'not', 'singl', 'scratch', 'alreadi', 'bought', 'one', 'warehous', 'deal'], ['good'], ['batteri', 'use', 'phone', 'not', 'last', 'hour', 'phone', 'shut', 'take', 'servic', 'replac', 'batteri', 'not', 'help', 'return', 'mani', 'sourc', 'report', 'problem', 'iphon', 'batteri', 'life'], ['bought', 'pay', 'hefti', 'price', 'iphon', 'not', 'unlock', 'seller', 'number', 'work', 'us', 'quit', 'well', 'differ', 'countri', 'want', 'use', 'not', 'lock', 'phone', 'tri', 'unlock', 'state', 'unlock', 'request', 'deni', 'account', 'holder', 'inform', 'provid', 'not', 'match', 'check', 'account', 'holder', 'inform', 'submit', 'new', 'request', 'true', 'not', 'bought', 'back', 'squar', 'one', 'not', 'use', 'go', 'return', 'back', 'amazon', 'iphon', 'black', 'though', 'vendor', 'claim', 'unlock', 'not', 'lock'], ['absolut', 'perfect', 'worth', 'everi', 'penni', 'arriv', 'realli', 'fast', 'thank'], ['came', 'exact', 'suppos', 'work', 'charger', 'headphon', 'good'], ['year', 'android', 'becom', 'wors', 'lock', 'new', 'version', 'switch', 'appl', 'month', 'io', 'not', 'believ', 'much', 'miss', 'term', 'stabil', 'work', 'android'], ['pretti', 'good', 'price', 'problem', 'first', 'one', 'abl', 'return', 'refund', 'got', 'anoth', 'seccond', 'ding', 'noth', 'effect', 'way', 'function', 'overal', 'good', 'buy'], ['work', 'great', 'problem', 'light', 'great', 'screen', 'littl', 'disappoint', 'seller', 'not', 'tell', 'goo', 'back', 'phone', 'come', 'right', 'stil', 'would', 'nice', 'know', 'condit', 'phone'], ['well', 'got', 'phone', 'yesterday', 'plug', 'complet', 'dead', 'took', 'half', 'hour', 'turn', 'today', 'took', 'local', 'phone', 'store', 'activ', 'account', 'everyth', 'okay', 'batter', 'drop', 'signific', 'throughout', 'day', 'front', 'camera', 'anoth', 'stori', 'freez', 'follow', 'larg', 'pink', 'strip', 'side', 'front', 'camera', 'fine', 'not', 'buy', 'product', 'get', 'rip'], ['phone', 'inform', 'previous', 'owner', 'disturb', 'told', 'appl', 'fri', 'brother', 'box', 'item', 'number'], ['i', 'glad', 'opt', 'make', 'everyth', 'much', 'less', 'stress', 'i', 'littl', 'annoy', 'appl', 'unhelp', 'rearrang', 'music', 'app', 'overal', 'price', 'well', 'worth'], ['love', 'new', 'iphon', 'would', 'given', 'came', 'recal', 'batteri', 'replac', 'expens', 'appl', 'store', 'not', 'purchas', 'appl', 'product', 'warrant', 'not', 'avail'], ['not', 'good', 'phone', 'advertis', 'carrier', 'unlock', 'notim', 'not', 'happi', 'not', 'good', 'noot', 'good'], ['like', 'new', 'said', 'descript', 'howev', 'not', 'unlock', 'pay', 'usd'], ['pleas', 'product', 'good', 'condit'], ['dear', 'sir', 'not', 'use', 'contract', 'juli', 'block', 'use', 'outsid', 'not', 'recommend', 'buy', 'cellular', 'phone', 'amazon'], ['first', 'time', 'own', 'iphon', 'realli', 'good', 'devic', 'work', 'well', 'good', 'price'], ['phone', 'describ'], ['perfect', 'phone', 'work', 'perfect', 'excel', 'condit'], ['impress', 'condit', 'unhappi', 'find', 'batteri', 'need', 'calibr', 'overal', 'great', 'product'], ['phone', 'qualiti', 'suck', 'freez', 'sometim', 'surpris', 'not', 'expect', 'descript'], ['iphon', 'best', 'product', 'planet', 'realli', 'love', 'not', 'buy', 'brand', 'buy', 'appl', 'phone'], ['seller', 'fast', 'wand', 'easi', 'work', 'product', 'describ'], ['work', 'like', 'new', 'could', 'not', 'believ', 'alreadi', 'use', 'absoulti', 'problem'], ['phone', 'bit', 'damag', 'describ', 'still', 'work', 'i', 'happi'], ['phone', 'arriv', 'quick', 'pleas', 'phone'], ['awesom', 'phone', 'love', 'ship', 'great', 'came', 'day', 'expect', 'would', 'buy', 'guy'], ['order', 'unlock', 'phone', 'receiv', 'lock', 'phone'], ['not', 'like', 'hurt', 'month', 'went', 'left', 'function'], ['batteri', 'good'], ['like', 'new', 'like', 'good'], ['got', 'phone', 'within', 'day', 'order', 'great', 'condit', 'almost', 'perfect', 'not', 'singl', 'scratch', 'batteri', 'last', 'forev', 'phone', 'came', 'day', 'warranti', 'would', 'definit', 'recommend', 'someon', 'look', 'buy', 'one', 'usual', 'not', 'review', 'one'], ['not', 'use'], ['phone', 'perfect', 'except', 'button', 'lock', 'screen', 'not', 'work', 'everyth', 'els', 'fine', 'irrit', 'not', 'abl', 'use', 'go', 'appl', 'fix'], ['week', 'purchas', 'iphon', 'charg', 'port', 'longer', 'allow', 'lighten', 'pin', 'insert', 'proper', 'prevent', 'charg'], ['nice', 'plastic', 'bodi', 'head', 'menu', 'could', 'better'], ['todo', 'muy', 'bien', 'perfecto', 'era', 'todo', 'como', 'lo', 'esperaba', 'mucha', 'lo', 'mejor', 'dio', 'le', 'excelent', 'agradecido', 'muy', 'conform', 'con', 'todo'], ['excel', 'condit', 'accur', 'product', 'deal', 'futur'], ['great', 'thank'], ['not', 'new'], ['iphon', 'not', 'work', 'proper', 'advertis', 'strength', 'signal', 'insid', 'build', 'drop', 'servic', 'cell', 'phone', 'work', 'place', 'well', 'return', 'item', 'bought', 'iphon'], ['yup', 'not', 'hold', 'charg'], ['ecxel'], ['lost'], ['good', 'afternooni', 'make', 'refer', 'question', 'phone', 'iphon', 'acquir', 'four', 'month', 'phone', 'get', 'iphon', 'logo', 'appl', 'not', 'allow', 'access', 'devic', 'function'], ['great', 'buy', 'got', 'phone', 'quick', 'everyth', 'work', 'great', 'except', 'plug', 'big', 'deal', 'phone', 'great', 'batteri', 'work', 'great'], ['fine', 'product', 'good', 'deliveri'], ['great', 'condit'], ['excel', 'describ', 'dent', 'scratch', 'batteri', 'last', 'long', 'time', 'like', 'new', 'one'], ['excel', 'phone', 'appl', 'level'], ['person', 'not', 'see', 'signific', 'differ', 'phone', 'iphon', 'differ', 'lighter', 'slimmer', 'would', 'stick', 'iphon'], ['deliv', 'time', 'promis', 'concern', 'iphon', 'case', 'bit', 'dirti'], ['great', 'product', 'work', 'well', 'moment', 'enjoy', 'featur', 'learn', 'new', 'thing'], ['yes', 'like'], ['work', 'flawless', 'power', 'new', 'sim', 'card', 'issu', 'thank'], ['bit', 'scare', 'fli', 'back', 'countri', 'find', 'not', 'unlock', 'order', 'everyth', 'work', 'perfect', 'also', 'deliveri', 'time', 'review', 'said', 'not', 'new', 'not', 'unlock'], ['great'], ['bought', 'phone', 'son', 'issu', 'great', 'work', 'condit'], ['iphon', 'not', 'work', 'proper', 'advertis', 'strength', 'signal', 'insid', 'build', 'drop', 'servic', 'cell', 'phone', 'work', 'place', 'well', 'return', 'item', 'bought', 'iphon'], ['headphon', 'stop', 'work', 'touch', 'screen', 'not', 'alway', 'lock', 'button', 'stop', 'work', 'almost', 'get', 'sim', 'card', 'tray', 'batteri', 'last', 'hour', 'minim', 'usewhen', 'first', 'get', 'p'], ['phone', 'near', 'perfect', 'thank', 'guy'], ['ok'], ['ingléswa', 'not', 'product', 'advertis', 'said', 'recycl', 'new', 'color', 'failur', 'camara'], ['batteri', 'drain', 'hr'], ['phone', 'bought', 'iphon', 'unlock', 'list', 'good', 'new', 'work', 'fine', 'week', 'batteri', 'start', 'die', 'text', 'screen', 'sideway', 'not', 'upward', 'bare', 'use', 'phone', 'stay', 'charg', 'hour', 'best', 'drop', 'call', 'constant', 'not', 'cell', 'compani', 'know', 'fact', 'lose', 'client', 'call', 'affect', 'busi', 'cautious', 'buy', 'i', 'one', 'unlucki', 'custom', 'got', 'bunk', 'phone', 'high', 'doubt', 'i', 'one', 'i', 'dissapoint', 'major', 'inconveni'], ['excel', 'phone'], ['phone', 'not', 'good', 'condit', 'not', 'origin', 'charger'], ['perfect'], ['realli', 'like', 'new', 'thank'], ['tlf', 'overheat', 'turn', 'instant'], ['good'], ['good', 'sale', 'thank'], ['wreck', 'iphon', 'say', 'good', 'lot', 'scratch', 'hit', 'batteri', 'not', 'work', 'neither', 'begin', 'connect', 'power', 'not', 'trustworthi', 'seller', 'awar', 'lost', 'money', 'noth'], ['great', 'cellphon', 'love'], ['order', 'arriv', 'lot', 'earlier', 'expect', 'everyth', 'product', 'descript', 'correct', 'good', 'i', 'happi', 'definit', 'buy', 'seller', 'thank'], ['order', 'unlock', 'phone', 'accept', 'condit', 'scratch', 'dent', 'trust', 'stock', 'order', 'batteri', 'hard', 'last', 'half', 'day', 'surpris', 'check', 'perform', 'sell', 'least', 'put', 'ad', 'weak', 'batteri', 'like', 'say', 'low', 'batteri', 'within', 'goe', 'dead', 'not', 'accept'], ['great', 'phone'], ['love', 'thank'], ['return', 'not', 'work', 'provid', 'quick', 'refund'], ['work', 'well'], ['ship', 'time', 'better', 'expect', 'phone', 'work', 'great', 'brand', 'new', 'state', 'came', 'wall', 'charger', 'head', 'phone'], ['great'], ['look', 'like', 'brand', 'new', 'arriv', 'within', 'day'], ['ad', 'say', 'descript', 'item', 'model', 'number', 'receiv', 'differ', 'two', 'model', 'would', 'not', 'made', 'purchas', 'said'], ['product', 'good'], ['cell', 'good', 'wall', 'charg', 'bad'], ['brand', 'new', 'everyth', 'still', 'box', 'shini', 'work', 'great', 'took', 'store', 'set', 'spend', 'new', 'sim', 'card', 'start', 'right', 'problem'], ['phone', 'receiv', 'damag', 'water', 'not', 'check', 'product', 'send'], ['everyth', 'would', 'expect', 'appl', 'product', 'batteri', 'life', 'could', 'bit', 'better', 'though'], ['think', 'got', 'fake', 'phone', 'problem', 'main', 'button', 'not', 'straight', 'screen', 'not', 'probabl', 'fix'], ['i', 'write', 'review', 'phone', 'lol', 'perfect', 'like', 'coupl', 'scratch', 'back', 'amaz', 'love'], ['realli', 'like', 'new', 'thank'], ['love', 'iphon', 'use', 'like', 'crazi', 'ever', 'sinc', 'arriv', 'take', 'excel', 'clear', 'crisp', 'photo', 'also', 'use', 'phone', 'visit', 'twitter', 'account', 'thank'], ['star', 'not', 'enough', 'phone', 'like', 'samsung', 'chang', 'samsung', 'huge', 'leap', 'year', 'use', 'smartphon', 'love', 'android', 'hate', 'samsung'], ['phone', 'not', 'hold', 'charg', 'shut', 'batteri'], ['peopl', 'may', 'find', 'iphon', 'similar', 'use', 'notic', 'differ', 'lot', 'new', 'model', 'light', 'caus', 'fear', 'drop', 'wors', 'time', 'put', 'hand', 'pocket', 'make', 'sure', 'still', 'new', 'screen', 'size', 'make', 'much', 'better', 'experi', 'user', 'easi', 'notic', 'tri', 'use', 'safari', 'app', 'respons', 'time', 'task', 'faster', 'everyth', 'seem', 'smoother', 'engag', 'need', 'littl', 'handl', 'new', 'iphon', 'see', 'look', 'better', 'sophist', 'visual', 'materi', 'appl', 'thought', 'everi', 'detail', 'spend', 'minut', 'iphon', 'chang', 'opinio', 'relat', 'find', 'heavi', 'absoleto', 'think', 'person', 'gave', 'upgrad', 'oblig', 'upgrad', 'differ', 'pronounc', 'two', 'model', 'iphon', 'still', 'best', 'smartphon', 'world', 'even', 'competit', 'alreadi', 'drop', 'hot', 'breath', 'near', 'appl', 'neck', 'precious'], ['perfect'], ['brought', 'phone', 'love', 'took', 'sprint', 'got', 'sim', 'card', 'good', 'go', 'star', 'seller'], ['stope', 'work', 'week', 'atfer', 'got', 'start', 'shute', 'random', 'would', 'skip', 'charg'], ['took', 'sprint', 'store', 'get', 'sim', 'card', 'told', 'not', 'network', 'i', 'stuck', 'sprint', 'lie', 'not', 'even', 'know', 'network', 'apart', 'not', 'anyth'], ['phone', 'great'], ['great', 'hope', 'love', 'amazon', 'marketplac'], ['phone', 'batteri', 'die', 'realli', 'fast', 'not', 'work', 'good', 'not', 'pleas', 'purchas'], ['phone', 'great', 'glitch', 'well', 'adjust'], ['much', 'better', 'great', 'upgrad', 'iphon'], ['love', 'phone'], ['scratch', 'anticip', 'still', 'great', 'buy'], ['clean', 'phone', 'lot', 'care'], ['item', 'nice'], ['work', 'great', 'good', 'price', 'came', 'time', 'teen', 'happi'], ['went', 'sprint', 'servic', 'two', 'hour', 'activ', 'not', 'phone', 'not', 'sprint', 'would', 'not', 'buy', 'phone', 'save', 'money'], ['i', 'android', 'person', 'got', 'hate', 'decid', 'i', 'would', 'android', 'person', 'forev', 'thought', 'i', 'would', 'tri', 'realli', 'like', 'chang', 'updat', 'android', 'stuff', 'easier', 'clean', 'memori', 'thing', 'miss', 'swype'], ['offer', 'phone', 'like', 'unlock', 'lock', 'not', 'use'], ['great', 'price', 'complaint'], ['great', 'phone', 'thank'], ['great', 'phone', 'great', 'servic', 'despit', 'not', 'read', 'fine', 'print', 'not', 'come', 'sim', 'card', 'easi', 'fix', 'phone', 'carrier', 'friend', 'email', 'exchang', 'ship', 'carrier', 'taken', 'care'], ['excel', 'like', 'new', 'happi'], ['great', 'phone', 'great', 'condit'], ['troubl', 'get', 'activ', 'not', 'show', 'valid', 'iphon'], ['work', 'well'], ['cell', 'phone', 'total', 'system', 'failur', 'month', 'cost', 'repair', 'almost', 'equal', 'purchas', 'price', 'take', 'iphon', 'local', 'appl', 'store', 'tri', 'identifi', 'problem', 'learn', 'not', 'option', 'appl', 'repair', 'phone', 'turn', 'phone', 'previous', 'damag', 'repair', 'repair', 'center', 'use', 'approv', 'part', 'quick', 'learn', 'appl', 'warranti', 'void', 'not', 'even', 'attempt', 'repair', 'modifi', 'phone', 'price'], ['exact', 'describ', 'packag', 'well'], ['great', 'phone', 'price'], ['extrem', 'happi'], ['gave', 'phone', 'lock', 'not', 'done', 'paid', 'high', 'upset'], ['far', 'good'], ['static', 'make', 'convers', 'annoy'], ['got', 'phone', 'would', 'not', 'charg', 'time', 'mother', 'took', 'vacat', 'sinc', 'go', 'abroad', 'plan', 'allow', 'phone', 'well', 'would', 'not', 'charg', 'america', 'went', 'appl', 'store', 'could', 'not', 'even', 'get', 'charg', 'end', 'get', 'replac', 'new', 'iphon'], ['work', 'perfect', 'purchas', 'next', 'phone', 'seller', 'futur'], ['bought', 'grandson', 'birthday', 'upgrad', 'work', 'like', 'new', 'fraction', 'cost'], ['paid', 'premium', 'thought', 'organ', 'paid', 'attent', 'refurbish', 'plug', 'not', 'charg'], ['look', 'reason', 'price'], ['great', 'devic', 'sound', 'need', 'improv'], ['phone', 'arriv', 'earlier', 'anticip', 'absolut', 'good', 'new', 'pleas', 'definit', 'work', 'seller', 'husband', 'purchas', 'new', 'phone', 'month', 'complaint'], ['phone', 'came', 'perfect', 'condit', 'problem'], ['order', 'phone', 'tuesday', 'night', 'almost', 'midnight', 'receiv', 'today', 'even', 'though', 'ship', 'said', 'may', 'june', 'use', 'go', 'phone', 'go', 'local', 'store', 'sim', 'card', 'set', 'pleas', 'purchas'], ['iphon', 'heat', 'batteri', 'die', 'fast', 'week', 'suppos', 'new', 'not', 'seem', 'like', 'intern', 'condit', 'look', 'great', 'not', 'work', 'great'], ['skeptic', 'buy', 'use', 'phone', 'onlin', 'last', 'compani', 'sent', 'iphon', 'instead', 'check', 'compani', 'decid', 'get', 'iphon', 'price', 'best', 'onlin', 'i', 'month', 'work', 'great', 'look', 'brand', 'new', 'came', 'fast', 'clean', 'esn', 'easi', 'connect', 'att', 'love', 'phone', 'trust', 'compani', 'upgrad', 'anoth', 'phone', 'electron', 'much'], ['use', 'phone', 'give', 'great', 'review', 'one', 'small', 'scratch', 'speaker', 'major', 'scratch', 'screen', 'back', 'littl', 'dirti', 'wipe', 'right', 'overal', 'i', 'pleas', 'good', 'condit', 'use', 'iphon', 'got'], ['phone', 'origin', 'packag', 'work', 'great'], ['purchas', 'use', 'iphon', 'got', 'look', 'use', 'scratch', 'screen', 'put', 'otter', 'box', 'protect', 'also', 'work', 'cover', 'use', 'look', 'phone', 'work', 'great', 'good', 'phone', 'kid'], ['work', 'well'], ['deliv', 'time', 'fashion', 'enjoy', 'phone'], ['thank', 'love', 'phone', 'realli', 'recomend', 'work', 'perfect', 'carrier', 'thank'], ['went', 'sprint', 'servic', 'two', 'hour', 'activ', 'not', 'phone', 'not', 'sprint', 'would', 'not', 'buy', 'phone', 'save', 'money'], ['son', 'disappoint', 'item'], ['phone', 'ship', 'quick', 'work', 'perfect'], ['got', 'phone', 'time', 'work', 'perfect'], ['great', 'phone', 'grest', 'daughter', 'love'], ['gift', 'son', 'like', 'alot'], ['not', 'owner', 'suspect', 'everyth', 'good', 'gift', 'lost', 'state', 'time', 'guy', 'much', 'bless', 'collin'], ['good', 'product', 'great', 'condit', 'great', 'price', 'problem', 'phone', 'busi'], ['nice', 'phone'], ['iphon', 'guess', 'not', 'much', 'say', 'good', 'phone', 'not', 'compat', 'carrier', 'straight', 'talk'], ['advert', 'sprint', 'phone', 'could', 'not', 'activ', 'sprint'], ['el', 'equpo', 'se', 'recibio', 'sin', 'accesorio', 'bloqueado'], ['great', 'purchas'], ['receiv', 'item', 'realli', 'good', 'condit', 'advertis', 'i', 'pleas', 'purchas'], ['describ', 'contact', 'seller', 'faster', 'ship', 'option', 'without', 'phone', 'hook', 'receiv', 'within', 'day', 'also', 'came', 'sim', 'card', 'contact', 'sprint', 'activ', 'busi', 'first', 'iphon', 'still', 'learn', 'function'], ['realli', 'fast', 'ship', 'great', 'qualiti', 'make', 'appoint', 'appl', 'gave', 'free', 'sim', 'card', 'phone', 'turn'], ['phone', 'imei', 'number', 'invalid', 'phone', 'complet', 'unabl', 'use'], ['exact', 'suppos', 'work', 'great', 'realli', 'happi'], ['awesom'], ['month', 'phone', 'not', 'charg', 'anymor'], ['good', 'iphon', 'problem', 'said', 'new', 'box', 'great', 'deliveri', 'time', 'happi', 'purchas'], ['bad', 'product', 'last', 'day', 'believ', 'warranti', 'day', 'know', 'conveni'], ['love', 'color', 'frog', 'great', 'time', 'deliveri', 'charg', 'fulli', 'got', 'use', 'start', 'notic', 'batteri', 'not', 'hold', 'charg', 'cold', 'shut', 'order', 'new', 'batteri', 'great', 'even', 'cold', 'product', 'great', 'condit', 'generic', 'next', 'phone', 'probabl', 'creat', 'iphon'], ['awesom', 'servic', 'went', 'way', 'make', 'sure', 'purchas', 'good'], ['phone', 'time', 'crack', 'minor', 'wear', 'howev', 'week', 'blank', 'gave', 'issu', 'everi', 'enjoy', 'phone'], ['seller', 'noth', 'shotti', 'craftsmanship', 'phone', 'pop', 'apart', 'purs', 'not', 'buy', 'better', 'iphon', 'lol'], ['pleas', 'fast', 'receiv', 'order', 'phone', 'seem', 'work', 'fine', 'small', 'minor', 'scratch', 'big', 'deal', 'thank'], ['phone', 'broke', 'month'], ['phone', 'not', 'work', 'took', 'appl', 'told', 'defect'], ['worri', 'buy', 'phone', 'internet', 'amazon', 'give', 'lot', 'guarante', 'receiv', 'happi', 'not', 'flaw', 'wait', 'month', 'write', 'review', 'cell', 'phone', 'never', 'know', 'month', 'later', 'phone', 'still', 'go', 'strong', 'love', 'love', 'love', 'phone', 'first', 'time', 'order', 'anyth', 'amazon', 'order', 'dozen', 'thing', 'sinc', 'amazon', 'great', 'compani', 'sold', 'perfect', 'phone'], ['excel', 'condit'], ['great', 'phone'], ['horribl', 'owner', 'info', 'could', 'not', 'activ', 'owner', 'never', 'clear', 'bill'], ['better', 'expect', 'iphon', 'exact', 'describ', 'not', 'better'], ['ok', 'not', 'best'], ['describ'], ['poor', 'qualiti'], ['work', 'perfect'], ['packag', 'came', 'plastic', 'case', 'crack', 'phone', 'luckili', 'phone', 'harm', 'bought', 'phone', 'new', 'sinc', 'saw', 'use', 'one', 'troubl', 'activ', 'went', 'activ', 'phone', 'way', 'mani', 'problem', 'turn', 'phone', 'receiv', 'sprinit', 'prepaid', 'phone', 'could', 'not', 'ad', 'account', 'end', 'buy', 'phone', 'sprinit'], ['item', 'arriv', 'fast', 'describ', 'arriv', 'phone', 'accessori'], ['said', 'sprint', 'phone', 'went', 'store', 'activ', 'told', 'could', 'not', 'get', 'system'], ['phone', 'christma', 'gift', 'daughter', 'said', 'sprint', 'readi', 'cell', 'phone', 'carrier', 'christma', 'day', 'plan', 'phone', 'activ', 'could', 'enjoy', 'gift', 'discov', 'phone', 'not', 'come', 'sim', 'card', 'go', 'special', 'sprint', 'manufactur', 'store', 'get', 'card', 'free', 'sprint', 'instal', 'activ', 'store', 'advertis', 'said', 'not', 'come', 'sim', 'card', 'sure', 'miss', 'pain', 'butt', 'disappoint', 'daughter', 'christma', 'phone', 'work', 'great', 'alway', 'amazon', 'great', 'job', 'get', 'phone', 'deliv', 'thank', 'great', 'servic', 'amazon'], ['star', 'brand', 'new', 'iphon', 'sprint', 'pink', 'came', 'everyth', 'perfect', 'fine', 'new', 'unbox', 'thankyou', 'much', 'not', 'regret'], ['perfect'], ['advert', 'sprint', 'phone', 'could', 'not', 'activ', 'sprint'], ['love', 'phone'], ['phone', 'arriv', 'time', 'far', 'work', 'great'], ['good', 'phone', 'think', 'paid', 'much'], ['great', 'phone', 'price'], ['place', 'could', 'find', 'gb', 'version', 'made', 'switch', 'samsung', 'sinc', 'not', 'realli', 'need', 'custom', 'plus', 'phone', 'perfect', 'one', 'hand', 'usag', 'simpl', 'effect', 'seller', 'not', 'fail', 'give', 'good', 'servic', 'iphon', 'legit', 'love'], ['phone', 'not', 'work', 'took', 'appl', 'told', 'defect'], ['great', 'phone', 'wonder', 'work'], ['bought', 'phone', 'year', 'old', 'granddaught', 'love', 'complaint'], ['grand', 'daughter', 'love'], ['phone', 'came', 'thought', 'okay', 'phone', 'turn', 'random', 'not', 'turn', 'back', 'plug', 'even', 'charg', 'contact', 'seller', 'wait', 'two', 'busi', 'day', 'hear', 'back'], ['brand', 'new', 'iphon'], ['reliabl', 'fast'], ['phone', 'came', 'sooner', 'expect', 'scratch', 'good', 'condit', 'work', 'great'], ['screen', 'come', 'phone', 'water', 'damag', 'got', 'not', 'say', 'purchas', 'not', 'pleas'], ['receiv', 'day', 'refurbish', 'appear', 'brand', 'new', 'work', 'perfect', 'came', 'case', 'screen', 'protector', 'charger', 'less', 'half', 'regular', 'price'], ['good'], ['purchas', 'phone', 'niec', 'went', 'tmobil', 'get', 'turn', 'servic', 'plan', 'told', 'block', 'stolen', 'could', 'not', 'get', 'turn', 'spend', 'complet', 'disappoint'], ['good', 'phone', 'love', 'back', 'cover', 'plastic', 'materi', 'not', 'crack', 'break', 'easili', 'like', 'newer', 'model'], ['lower', 'speaker', 'stop', 'work', 'two', 'day', 'got'], ['love', 'phone', 'receiv', 'item', 'promis'], ['not', 'bad', 'entri', 'level', 'supris', 'discontinu', 'fast'], ['good', 'qualiti', 'use', 'product', 'imei', 'clean', 'work', 'perfect', 'new'], ['box', 'manual', 'headphon', 'without', 'microphon'], ['awesom', 'replac', 'phone', 'sister', 'lost', 'phone', 'car', 'accid', 'use', 'galaxi', 'seem', 'like', 'like', 'iphon', 'lot', 'relief', 'iphon', 'user', 'arriv', 'without', 'charger', 'headphon', 'suck', 'phone', 'good', 'shape', 'scratch', 'ding', 'dent'], ['excel', 'condit'], ['got', 'item', 'time', 'issu'], ['want', 'know', 'feedback', 'return', 'product', 'went', 'wrong', 'buy', 'iphon', 'start', 'button', 'front', 'camera', 'not', 'work'], ['got', 'phone', 'work', 'perfect', 'happi', 'phine'], ['nice', 'deal', 'price', 'howev', 'think', 'servic', 'provid', 'soso', 'citi'], ['great', 'cell', 'phone'], ['okay', 'phone', 'year', 'would', 'give', 'phone', 'star', 'catch', 'i', 'would', 'buy', 'come', 'phone', 'headphon', 'charger', 'bad', 'thing', 'headphon', 'not', 'real', 'appl', 'headphon', 'fake', 'not', 'sound', 'good', 'trust', 'know', 'sound', 'anoth', 'pair', 'charger', 'fake', 'like', 'knock', 'brand', 'still', 'charg', 'phone', 'reason', 'know', 'fake', 'becus', 'time', 'tell', 'accessori', 'not', 'use', 'phone', 'someth', 'like', 'disconnect', 'connect', 'thought', 'phone', 'fake', 'went', 'look', 'serial', 'number', 'phone', 'went', 'appl', 'search', 'found', 'yeah', 'phone', 'real', 'everyth', 'els', 'fake', 'still', 'work'], ['phone', 'got', 'not', 'unlock', 'sim', 'card', 'not', 'accept', 'although', 'work', 'cellphon'], ['excelent'], ['gave', 'one', 'star', 'not', 'get', 'color', 'want', 'got', 'white', 'not', 'give', 'back', 'return', 'wait', 'phone', 'along', 'time', 'not', 'give', 'phone', 'back', 'jus', 'color', 'made', 'first', 'got'], ['iphon', 'useless', 'io', 'take', 'near', 'storag', 'devic', 'max', 'pictur', 'song', 'chat', 'not', 'buy', 'iphon', 'expens', 'lesson', 'learn'], ['love', 'phone', 'fact', 'almost', 'cheaper', 'appl', 'store'], ['took', 'week', 'ship', 'impati', 'year', 'old', 'boy', 'frustrat', 'howev', 'total', 'worth', 'wait', 'came', 'origin', 'packag', 'seal', 'also', 'came', 'screen', 'protector', 'two', 'black', 'iphon', 'case', 'cost', 'screen', 'protector', 'case', 'valu', 'plus', 'phone', 'less', 'cost', 'appl', 'great', 'deal', 'i', 'love', 'first', 'smartphon'], ['excel', 'product', 'ty'], ['good', 'phone', 'less', 'problem'], ['ok'], ['work', 'great', 'good', 'condit'], ['phone', 'unlock', 'promis', 'like', 'new', 'love', 'phone'], ['excel'], ['bought', 'phone', 'back', 'octob', 'ad', 'protect', 'plan', 'mos', 'later', 'home', 'button', 'not', 'work', 'proper', 'call', 'protect', 'plan', 'servic', 'provid', 'submit', 'claim', 'refer', 'appl', 'appl', 'said', 'limit', 'warranti', 'expir', 'refer', 'back', 'servic', 'provid', 'well', 'seem', 'one', 'will', 'make', 'good', 'purchas', 'total', 'understand', 'older', 'phone', 'model', 'purchas', 'protect', 'plan', 'i', 'bad', 'phone'], ['littl', 'scratch'], ['excel', 'condit', 'describ', 'arriv', 'time'], ['damag', 'would', 'stick', 'could', 'not', 'use', 'return'], ['happen', 'box', 'iphon'], ['mom', 'love'], ['brand', 'new', 'love', 'phone'], ['good'], ['love', 'phone', 'use', 'look', 'brand', 'new', 'thing', 'not', 'impress', 'sent', 'fake', 'iphon', 'headset', 'okay', 'overal', 'great', 'seller', 'recommend', 'seller', 'sharri', 'intern', 'inc', 'got', 'green', 'one'], ['far', 'good'], ['phone', 'seem', 'counterfeit'], ['work', 'good', 'mexican', 'network'], ['phone', 'not', 'worth', 'money'], ['good', 'phone', 'less', 'problem'], ['great', 'price', 'compat', 'network', 'came', 'earli'], ['good', 'relat'], ['thank'], ['phone', 'given', 'troubl', 'sinc', 'begin', 'first', 'audio', 'great', 'amount', 'static', 'problem', 'partial', 'resolv', 'coupl', 'reset', 'drop', 'call', 'start', 'happen', 'live', 'heart', 'citi', 'never', 'issu', 'drop', 'call', 'final', 'day', 'ago', 'screen', 'went', 'complet', 'dead', 'back', 'use', 'older', 'phone', 'idea', 'phone', 'purchas', 'never', 'own', 'iphon', 'mani', 'issu', 'earphon', 'fell', 'apart', 'within', 'coupl', 'day', 'box', 'came', 'seem', 'bit', 'shadi', 'realli', 'not', 'sure', 'merchandis', 'receiv', 'actual', 'true', 'box', 'appl', 'product'], ['junk'], ['order', 'phone', 'gift', 'niec', 'realli', 'unsur', 'get', 'amazon', 'never', 'got', 'iphon', 'appl', 'store', 'end', 'good', 'experi', 'work', 'outsid', 'condit', 'softwar', 'ok', 'fast', 'headphon', 'charger', 'work', 'perfect'], ['still', 'work', 'great'], ['work'], ['sent', 'lemon', 'thank', 'god', 'warranti', 'still', 'activ', 'appl', 'replac'], ['came', 'timefram', 'state', 'exact', 'reason', 'price', 'excel', 'around'], ['product', 'look', 'new', 'thing', 'littl', 'bit', 'happi', 'came', 'without', 'headphon'], ['love', 'da', 'fone'], ['marvel', 'phone'], ['arriv', 'perfect', 'condit', 'problem', 'set', 'work', 'like', 'brand', 'new', 'buy', 'use', 'phone', 'scari', 'proposit', 'seller'], ['excel', 'product', 'ty'], ['phone', 'daughter', 'complaint', 'far'], ['phone', 'look', 'like', 'new', 'work', 'great', 'made', 'grand', 'daughter', 'happi'], ['end', 'take', 'phone', 'walmart', 'ask', 'could', 'activ', 'employe', 'insert', 'new', 'sim', 'card', 'activ', 'thru', 'straight', 'talk', 'wireless', 'carrier', 'small', 'town', 'could', 'not', 'either', 'would', 'not', 'work', 'fine', 'not', 'send', 'back'], ['good', 'price'], ['phone', 'unlock', 'put', 'chip', 'phone', 'not', 'accept', 'chip', 'send', 'verizon', 'suppos'], ['excel'], ['love', 'phone', 'exact', 'want'], ['littl', 'wari', 'nowher', 'descript', 'say', 'new', 'came', 'knew', 'right', 'away', 'new', 'nobodi', 'packag', 'phone', 'like', 'appl', 'yes', 'verizon', 'sim', 'not', 'mean', 'lock', 'csr', 'carrier', 'consum', 'celluar', 'abl', 'determin', 'unlock', 'transit', 'flawless', 'yes', 'tad', 'smaller', 'iphon', 'big', 'finger', 'mayb', 'problem', 'also', 'need', 'nano', 'sim', 'card', 'phone', 'phone', 'avail', 'walmart', 'price', 'not', 'know', 'commit', 'requir', 'straight', 'talk', 'contract', 'servic'], ['great', 'cell', 'phone'], ['excel', 'everi', 'form', 'word'], ['phone', 'given', 'troubl', 'sinc', 'begin', 'first', 'audio', 'great', 'amount', 'static', 'problem', 'partial', 'resolv', 'coupl', 'reset', 'drop', 'call', 'start', 'happen', 'live', 'heart', 'citi', 'never', 'issu', 'drop', 'call', 'final', 'day', 'ago', 'screen', 'went', 'complet', 'dead', 'back', 'use', 'older', 'phone', 'idea', 'phone', 'purchas', 'never', 'own', 'iphon', 'mani', 'issu', 'earphon', 'fell', 'apart', 'within', 'coupl', 'day', 'box', 'came', 'seem', 'bit', 'shadi', 'realli', 'not', 'sure', 'merchandis', 'receiv', 'actual', 'true', 'box', 'appl', 'product'], ['love', 'speed', 'came'], ['came', 'fast', 'cute', 'phone', 'cours', 'amaz', 'appl', 'qualiti', 'weird', 'thing', 'even', 'phone', 'new', 'came', 'sim', 'card', 'insid', 'phone'], ['muy', 'bien'], ['gift', 'mum', 'mexico', 'work', 'perfect', 'mex', 'compani'], ['leari', 'first', 'puchas', 'use', 'phone', 'howev', 'could', 'not', 'happier', 'look', 'almost', 'brand', 'new', 'problem', 'use', 'start', 'use', 'phone', 'seller', 'next', 'time', 'shop', 'phone'], ['great', 'iphon', 'use', 'one', 'miner', 'scratch', 'not', 'would', 'gave', 'star', 'complaint', 'work', 'well'], ['good'], ['phone', 'came', 'promis', 'origin', 'packag', 'store', 'abl', 'transfer', 'inform', 'old', 'phone', 'easili', 'great', 'purchas'], ['phone', 'seem', 'counterfeit'], ['fone', 'month', 'stolen', 'i', 'money', 'one', 'would', 'anyth', 'even', 'discount', 'i', 'readi', 'purchas', 'anoth', 'fone', 'felt', 'someth', 'could', 'done', 'lot', 'money'], ['love'], ['great', 'phone', 'bought', 'son', 'realli', 'love', 'issu', 'ever'], ['purchas', 'three', 'phone', 'phone', 'good', 'condit', 'arriv', 'time', 'great', 'receiv', 'current', 'updat', 'appl', 'far', 'good', 'three', 'teenag'], ['exact', 'paid', 'phone', 'great', 'condit', 'packag', 'buy', 'complet', 'recommend'], ['good', 'product', 'deliv', 'promis'], ['ex', 'acelera', 'product'], ['not', 'get', 'time', 'set', 'not', 'come'], ['dope', 'phone', 'price', 'got', 'fast', 'look', 'new', 'open', 'batteri', 'surpris', 'good'], ['advertis', 'use', 'without', 'problem', 'far'], ['great', 'phone', 'i', 'love'], ['marvel', 'phone'], ['item', 'not', 'new'], ['excel'], ['great'], ['amaz', 'buy', 'skeptic', 'consid', 'riski', 'buy', 'use', 'phone', 'exact', 'advertis', 'ship', 'month', 'never', 'experienc', 'issu'], ['one', 'best', 'purchas', 'i', 'ever', 'made', 'cheap', 'iphon', 'look', 'good', 'condit', 'arriv', 'extrem', 'fast'], ['good'], ['everi', 'right', 'deliveri', 'time', 'phone', 'work', 'well', 'problem', 'recommend', 'vendor'], ['perfect'], ['i', 'happi', 'purchas'], ['good'], ['end', 'take', 'phone', 'walmart', 'ask', 'could', 'activ', 'employe', 'insert', 'new', 'sim', 'card', 'activ', 'thru', 'straight', 'talk', 'wireless', 'carrier', 'small', 'town', 'could', 'not', 'either', 'would', 'not', 'work', 'fine', 'not', 'send', 'back'], ['even', 'use', 'work', 'great'], ['bought', 'mom'], ['disappoint', 'phone', 'came', 'yesterday', 'crack', 'screen'], ['sold', 'new', 'not', 'think', 'key', 'open', 'sim', 'card', 'slot', 'miss', 'alreadi', 'sim', 'card', 'phone', 'otherwis', 'work', 'well'], ['i', 'happi', 'purchas'], ['everyth', 'ok'], ['i', 'happi', 'take', 'realli', 'small', 'sim', 'card', 'sim', 'big', 'go', 'buy'], ['order', 'wrong', 'phone', 'receiv', 'refund', 'prompt'], ['flawless', 'phone', 'besid', 'practic', 'new', 'got', 'real', 'quick', 'took', 'minut', 'activ', 'carrier', 'busi', 'heartbeat', 'thank', 'cella'], ['love', 'muy', 'new', 'iphon'], ['okay', 'phone', 'year', 'would', 'give', 'phone', 'star', 'catch', 'i', 'would', 'buy', 'come', 'phone', 'headphon', 'charger', 'bad', 'thing', 'headphon', 'not', 'real', 'appl', 'headphon', 'fake', 'not', 'sound', 'good', 'trust', 'know', 'sound', 'anoth', 'pair', 'charger', 'fake', 'like', 'knock', 'brand', 'still', 'charg', 'phone', 'reason', 'know', 'fake', 'becus', 'time', 'tell', 'accessori', 'not', 'use', 'phone', 'someth', 'like', 'disconnect', 'connect', 'thought', 'phone', 'fake', 'went', 'look', 'serial', 'number', 'phone', 'went', 'appl', 'search', 'found', 'yeah', 'phone', 'real', 'everyth', 'els', 'fake', 'still', 'work'], ['phone', 'power', 'shut', 'not', 'turn', 'back', 'time', 'come', 'got', 'white', 'screen', 'death', 'manual', 'restart', 'incred', 'frustrat', 'irrit'], ['durabl'], ['great', 'wish', 'appl', 'product', 'not', 'expens', 'fill', 'month', 'use', 'recommend', 'pay', 'gig'], ['nice'], ['phone', 'arriv', 'promis', 'realli', 'like', 'phone', 'thought', 'would', 'blue', 'plastic', 'glossi', 'smooth', 'like', 'glass', 'not', 'everyon', 'iphon', 'like', 'plus', 'mobil', 'phone', 'came', 'att', 'sim', 'car', 'switch', 'work', 'right', 'away', 'speed', 'say', 'tmobil', 'downsid', 'see', 'screen', 'not', 'big', 'new', 'phone', 'like', 'size', 'anoth', 'thing', 'wonder', 'much', 'longer', 'appl', 'support', 'iphon', 'upgrad', 'flawless', 'iphon', 'longer', 'support', 'fine', 'need', 'certain', 'app', 'work', 'go', 'back', 'far', 'figur', 'price', 'make', 'time', 'unsupport', 'abl', 'get', 'iphon', 'discount', 'price', 'mayb', 'come', 'long', 'run', 'end', 'two', 'phone', 'instead', 'one'], ['phone', 'list', 'stolen'], ['broken', 'not', 'work'], ['perfect', 'need', 'show', 'time', 'got', 'activ', 'minut', 'i', 'type', 'review', 'right'], ['great', 'iphon', 'work', 'perfect'], ['good'], ['good', 'condit', 'got', 'expect', 'term', 'ear', 'bud', 'etc'], ['exact', 'advertis'], ['great', 'phone', 'i', 'love'], ['excel', 'thank', 'phone', 'top', 'top', 'new'], ['phone', 'lot', 'dent', 'not', 'expect'], ['work'], ['thank', 'wonder', 'phone', 'give', 'phone', 'gift', 'realli', 'appreci', 'great', 'servic'], ['phone', 'work', 'great', 'although', 'day', 'receiv', 'phone', 'charger', 'came', 'stop', 'work', 'sent', 'new', 'charger', 'charg', 'phone', 'slowli', 'let', 'know', 'send', 'anoth', 'charger', 'help', 'solv', 'custom', 'problem', 'high', 'recommend', 'buy', 'product', 'happi', 'buy'], ['great'], ['thank'], ['product', 'came', 'earlier', 'expect', 'date', 'mine', 'cheap', 'dollar', 'difficult', 'need', 'sim', 'card', 'activ', 'phone', 'luckili', 'cousin', 'let', 'borrow', 'phone', 'came', 'perfect', 'scratch', 'noth', 'charger', 'came', 'recommend', 'bodi', 'purchas', 'seller'], ['i', 'enjoy', 'thank'], ['phone', 'given', 'troubl', 'sinc', 'begin', 'first', 'audio', 'great', 'amount', 'static', 'problem', 'partial', 'resolv', 'coupl', 'reset', 'drop', 'call', 'start', 'happen', 'live', 'heart', 'citi', 'never', 'issu', 'drop', 'call', 'final', 'day', 'ago', 'screen', 'went', 'complet', 'dead', 'back', 'use', 'older', 'phone', 'idea', 'phone', 'purchas', 'never', 'own', 'iphon', 'mani', 'issu', 'earphon', 'fell', 'apart', 'within', 'coupl', 'day', 'box', 'came', 'seem', 'bit', 'shadi', 'realli', 'not', 'sure', 'merchandis', 'receiv', 'actual', 'true', 'box', 'appl', 'product'], ['great', 'qualiti', 'great', 'price'], ['purchas', 'three', 'phone', 'phone', 'good', 'condit', 'arriv', 'time', 'great', 'receiv', 'current', 'updat', 'appl', 'far', 'good', 'three', 'teenag'], ['quick', 'deliveri', 'promis', 'phone', 'promis', 'unlock', 'came', 'extra', 'nice', 'surpris'], ['bull', 'bought', 'phone', 'say', 'alreadi', 'activ', 'anoth', 'account', 'bought', 'phone', 'not', 'even', 'use'], ['exact', 'describ', 'good', 'price'], ['love', 'phone', 'use', 'look', 'brand', 'new', 'thing', 'not', 'impress', 'sent', 'fake', 'iphon', 'headset', 'okay', 'overal', 'great', 'seller', 'recommend', 'seller', 'sharri', 'intern', 'inc', 'got', 'green', 'one'], ['skeptic', 'bought', 'product', 'work', 'perfect', 'seller', 'also', 'ask', 'question', 'may', 'aris', 'purchas', 'product', 'excel', 'qualiti', 'ship', 'fast', 'high', 'recommend'], ['goodby', 'phone', 'got', 'gb', 'even', 'though', 'say', 'gb'], ['condit', 'post', 'good', 'scratch', 'unlock', 'great', 'activ', 'today', 'without', 'incid', 'charg', 'arriv', 'yesterday', 'still', 'albeit', 'littl', 'usag', 'yet', 'third', 'use', 'one', 'last', 'summer', 'person', 'phone', 'one', 'associ', 'last', 'fall', 'still', 'run', 'fine', 'one', 'small', 'busi', 'great', 'price'], ['good'], ['wonder', 'receiv', 'time', 'brand', 'new', 'never', 'open', 'easi', 'activ', 'put', 'sim', 'work', 'amaz'], ['iphon', 'inde', 'unlock', 'slight', 'misfit', 'charger', 'prompt', 'replac', 'seller', 'phone', 'look', 'good', 'need', 'nano', 'sim', 'need', 'buy', 'buck', 'typic', 'absolut', 'new'], ['thank', 'j', 'r', 'good', 'servic', 'phone', 'work', 'son', 'problem'], ['actual', 'purchas', 'daughter', 'readi', 'upgrad', 'want', 'phone', 'littl', 'worri', 'read', 'review', 'carrier', 'straight', 'talk', 'review', 'said', 'phone', 'would', 'not', 'work', 'lock', 'receiv', 'hurri', 'call', 'carrier', 'got', 'switch', 'put', 'sim', 'card', 'minut', 'later', 'run', 'absolut', 'love'], ['i', 'problem', 'receiv', 'call', 'call', 'go', 'straight', 'voic', 'mail', 'not', 'everi', 'singl', 'call', 'though', 'friend', 'say', 'call', 'twice', 'three', 'time', 'reach', 'get', 'notif', 'miss', 'call', 'see', 'call', 'still', 'frustrat', 'problem'], ['advertis', 'use', 'without', 'problem', 'far'], ['receiv', 'advertis'], ['not', 'get', 'time', 'set', 'not', 'come'], ['love', 'came', 'realli', 'fast', 'perfect', 'condit', 'side', 'note', 'may', 'screen', 'protector', 'devic', 'may', 'look', 'littl', 'worn'], ['far', 'purchas', 'daughter', 'use', 'metro', 'pcs', 'phone', 'fine'], ['phone', 'look', 'like', 'went', 'blender', 'deep', 'scratch', 'blue', 'part', 'turn', 'phone', 'noth', 'line', 'side', 'return', 'refund'], ['iphon', 'inde', 'unlock', 'slight', 'misfit', 'charger', 'prompt', 'replac', 'seller', 'phone', 'look', 'good', 'need', 'nano', 'sim', 'need', 'buy', 'buck', 'typic', 'absolut', 'new'], ['purchas', 'item', 'gift', 'christma', 'item', 'still', 'use', 'work', 'like', 'charm', 'problem', 'item', 'new', 'box', 'accessori', 'includ', 'excel', 'perform', 'qualiti', 'even', 'middl', 'nowher', 'great', 'phone', 'would', 'purchas', 'item', 'seller'], ['use', 'month', 'pay', 'servic', 'use', 'system'], ['good', 'brand', 'new', 'seal', 'box', 'vendor', 'bought', 'unlock', 'gsm', 'actual', 'sim', 'pop', 'replac', 'sim', 'card', 'iphon', 'problem', 'straight', 'not', 'enough', 'memori', 'iphon', 'day', 'photo', 'take', 'lot', 'space', 'text', 'messag', 'email', 'not', 'realli', 'abl', 'use', 'ipod', 'time', 'io', 'instal', 'thing', 'start', 'get', 'cramp', 'serious', 'iphon', 'go', 'storag', 'see', 'larg', 'app', 'pandora', 'alon', 'like', 'delet', 'bunch', 'unus', 'stuff', 'left', 'realli', 'not', 'even', 'enough', 'updat', 'io', 'releas', 'new', 'one', 'hook', 'thing', 'laptop', 'day', 'come', 'yes', 'i', 'write', 'review', 'obvious', 'work', 'short', 'live', 'limit', 'buy', 'right', 'case', 'one', 'ever', 'even', 'know', 'cheapest', 'phone', 'appl', 'make', 'guarante', 'short', 'order', 'say', 'got', 'one'], ['expect', 'met', 'phone', 'work', 'like', 'new'], ['good', 'not', 'like', 'recharg', 'not', 'origin', 'rest', 'ok'], ['excel'], ['work', 'great'], ['good', 'price', 'good', 'product'], ['phone', 'work', 'good', 'sent', 'africa'], ['excelent'], ['great', 'product'], ['came', 'fast', 'cute', 'phone', 'cours', 'amaz', 'appl', 'qualiti', 'weird', 'thing', 'even', 'phone', 'new', 'came', 'sim', 'card', 'insid', 'phone'], ['great'], ['receiv', 'devic', 'time', 'posit', 'phone', 'complet', 'defect', 'speaker', 'horribl', 'condit', 'sound', 'like', 'talk', 'water', 'realli', 'muffl', 'i', 'would', 'place', 'call', 'way', 'heard', 'i', 'speaker', 'charger', 'not', 'work', 'batteri', 'drain', 'way', 'quick', 'believ', 'adjust', 'set', 'charg', 'time', 'day', 'not', 'kid'], ['love', 'great', 'product', 'communic', 'seller'], ['arriv', 'time', 'per', 'descript'], ['far', 'good'], ['everyth', 'perfect'], ['not', 'carrier', 'actual', 'sprint', 'fail', 'mention', 'giant', 'gash', 'bottom', 'corner', 'fact', 'came', 'headphon', 'also', 'still', 'regist', 'anoth', 'user', 'aw'], ['bought', 'phone', 'crack', 'screen', 'within', 'week', 'went', 'get', 'repair', 'tech', 'employe', 'said', 'plate', 'screw', 'miss', 'week', 'actual', 'screen', 'come', 'loos', 'fall', 'sometim', 'could', 'manufactur', 'malfunct', 'iphon', 'not', 'good'], ['everyth', 'said', 'work', 'great', 'deliveri', 'faster', 'expect'], ['excelent'], ['bought', 'phone', 'year', 'old', 'granddaught', 'love', 'complaint'], ['love'], ['liter', 'look', 'brand', 'new', 'smallest', 'scratch', 'bottom', 'phone', 'perfect', 'condit'], ['three', 'kid', 'got', 'phone', 'love', 'would', 'rather', 'text', 'talk', 'face', 'face', 'addict', 'lol'], ['iphon', 'heat', 'batteri', 'die', 'fast', 'week', 'suppos', 'new', 'not', 'seem', 'like', 'intern', 'condit', 'look', 'great', 'not', 'work', 'great'], ['great'], ['like', 'brand', 'new'], ['phone', 'great', 'love'], ['brought', 'grandaught', 'love', 'still', 'work', 'want', 'one', 'work', 'underwat', 'phone', 'soon', 'guess', 'need', 'get', 'updat', 'short', 'good', 'ole', 'pantech', 'matrix', 'flip', 'phone', 'keypad'], ['wrote', 'review', 'phone', 'cool'], ['nice', 'phone', 'work', 'great', 'save', 'dread', 'next', 'program', 'satisfi'], ['receiv', 'product', 'exact', 'said', 'i', 'phone', 'week', 'love', 'i', 'actual', 'write', 'review', 'look', 'new', 'minor', 'scratch', 'not', 'notic', 'look', 'close', 'great', 'deal', 'get', 'pretti', 'much', 'new', 'phone', 'save', 'lot', 'con', 'charg', 'cord', 'pretti', 'short', 'half', 'feet', 'long', 'not', 'big', 'issu'], ['cool', 'phone'], ['descript', 'said', 'good', 'condit', 'actual', 'receiv', 'phone', 'perfect', 'condit', 'nick', 'scratch', 'period', 'definit', 'recommend'], ['excel', 'condit'], ['got', 'iphon', 'got', 'day', 'problem', 'everyth', 'work', 'great', 'would', 'nice', 'price', 'cheaper', 'recommend', 'spend', 'extra', 'money', 'get', 'new', 'one', 'not', 'trust', 'old', 'con', 'purchas', 'headphon', 'crap', 'knock', 'not', 'even', 'work', 'proper', 'phone', 'also', 'not', 'appl', 'alreadi', 'plenti', 'not', 'matter', 'reason', 'not', 'given', 'star', 'overal', 'satisfi'], ['look', 'beauti', 'could', 'not', 'find', 'scratch', 'work', 'great', 'clean'], ['happi', 'phone'], ['fantast', 'price', 'immedi', 'ship', 'could', 'not', 'ask'], ['bought', 'phone', 'coupl', 'week', 'ago', 'phone', 'not', 'hold', 'charg', 'take', 'appl', 'store', 'repair', 'unhappi'], ['nice', 'phone', 'price', 'great', 'kid', 'first', 'phone', 'enough', 'gb', 'good', 'featur', 'low', 'price'], ['cosmet', 'match', 'descript', 'took', 'hour', 'get', 'phone', 'activ', 'verizon', 'store', 'worri', 'not', 'go', 'work', 'phone', 'keep', 'freez', 'keep', 'reset', 'get', 'text', 'messag'], ['great'], ['alreadi', 'iphon', 'storag', 'need', 'much', 'order', 'phone', 'came', 'earlier', 'expect', 'fulli', 'function', 'problem', 'also', 'look', 'brand', 'new', 'i', 'own', 'month', 'everyth', 'work', 'fine', 'offer', 'plenti', 'storag', 'good', 'deal', 'price'], ['quick', 'deliveri', 'product', 'receiv', 'describ', 'nice', 'experi'], ['excel'], ['phone', 'got', 'not', 'work'], ['love'], ['damn', 'thing', 'broken', 'came'], ['purchas', 'phone', 'sim', 'card', 'miss', 'sound', 'qualiti', 'aw', 'respons', 'sell', 'lot', 'phone', 'test', 'not', 'seem', 'like'], ['gift'], ['thank'], ['work', 'good'], ['not', 'owner', 'suspect', 'everyth', 'good', 'gift', 'lost', 'state', 'time', 'guy', 'much', 'bless', 'collin'], ['great', 'product', 'speedi', 'deliveri'], ['love', 'new', 'iphon', 'great', 'price', 'small', 'issu', 'phone', 'seller', 'not', 'replac', 'color'], ['great', 'price', 'complaint'], ['work', 'perfect'], ['phone', 'great', 'condit', 'work', 'order', 'describ', 'issu', 'purchas', 'pleas', 'overal', 'phone'], ['get', 'camera', 'fix', 'come', 'phone', 'work', 'good', 'not', 'buy', 'anoth'], ['came', 'scratch', 'said', 'set', 'not', 'even', 'restart', 'not', 'worth', 'money'], ['work', 'perfect'], ['item', 'arriv', 'time', 'manner', 'exact', 'advertis', 'contain', 'bell', 'whistl', 'expect', 'could', 'not', 'pleas'], ['took', 'sprint', 'store', 'get', 'sim', 'card', 'told', 'not', 'network', 'i', 'stuck', 'sprint', 'lie', 'not', 'even', 'know', 'network', 'apart', 'not', 'anyth'], ['got', 'phone', 'bare', 'scratch', 'except', 'small', 'dent', 'mention', 'bought', 'howev', 'week', 'two', 'shut', 'random', 'luckili', 'took', 'appl', 'said', 'would', 'give', 'new', 'one', 'question', 'ask', 'appl', 'not', 'taken', 'care', 'would', 'disappoint', 'purchas', 'i', 'would', 'give', 'one', 'star', 'end', 'get', 'brand', 'new', 'replac'], ['phone', 'work', 'perfect', 'still', 'sever', 'month'], ['love', 'phone'], ['iphon', 'not', 'work'], ['phone', 'arriv', 'prompt', 'christma', 'present', 'howev', 'screen', 'began', 'lift', 'two', 'day', 'christma', 'phone', 'froze', 'return', 'item', 'januari', 'wait', 'patient', 'return'], ['not', 'work'], ['great', 'phone'], ['work', 'great'], ['order', 'replac', 'son', 'phone', 'broke', 'issu', 'get', 'set', 'not', 'phone', 'fault', 'need', 'new', 'sim', 'card', 'went', 'store', 'got', 'card', 'work', 'perfect', 'thrill', 'not', 'spend', 'full', 'price', 'replac', 'phone', 'cuz', 'face', 'time', 'friend'], ['super', 'fast', 'ship', 'seem', 'work', 'great', 'far', 'thank'], ['receiv', 'great', 'look', 'work', 'use', 'phone', 'scratch', 'check', 'specif', 'seller', 'review', 'first'], ['home', 'button', 'not', 'work', 'money', 'paid', 'iphon', 'kind', 'rip'], ['nice', 'phone', 'price', 'great', 'kid', 'first', 'phone', 'enough', 'gb', 'good', 'featur', 'low', 'price'], ['arriv', 'quick', 'advertis'], ['iphon', 'came', 'origin', 'appl', 'packag', 'two', 'day', 'standard', 'ship', 'work', 'verizon', 'like', 'ad', 'say', 'new', 'condit', 'scuff', 'anyth', 'thank'], ['phone', 'like', 'new', 'everyth', 'work', 'great'], ['product', 'work', 'well', 'far', 'problem', 'batteri', 'life', 'seem', 'go', 'somewhat', 'fast', 'phone', 'lot', 'far', 'good'], ['love'], ['came', 'time', 'work', 'great'], ['seem', 'work', 'fine'], ['phone', 'broke', 'month', 'receiv', 'whole', 'phone', 'shut', 'complet'], ['purchas', 'phone', 'may', 'august', 'batteri', 'shot', 'could', 'not', 'hold', 'charg', 'seller', 'would', 'not', 'help', 'day', 'i', 'stuck', 'phone', 'constant', 'plug', 'might', 'well', 'landlin'], ['everyth', 'phone', 'amaz', 'use', 'year', 'everyth', 'still', 'work', 'perfect', 'fine', 'could', 'not', 'pleas', 'custom', 'servic', 'compani', 'great', 'well', 'problem', 'phone', 'abl', 'get', 'back', 'within', 'next', 'day', 'ship', 'also', 'fast', 'receiv', 'phone', 'faster', 'expect', 'ship', 'day', 'right', 'order', 'could', 'not', 'happier', 'qualiti', 'phone', 'custom', 'issu', 'charger', 'mail', 'not', 'work', 'ask', 'anoth', 'charger', 'compani', 'ship', 'one', 'next', 'day', 'discov', 'extrem', 'slow', 'die', 'week', 'later', 'bought', 'charger', 'next', 'would', 'definit', 'high', 'recommend', 'anyon', 'look', 'phone'], ['phone', 'receiv', 'time', 'christma'], ['phone', 'arriv', 'time', 'far', 'work', 'great'], ['got', 'gift', 'roommat', 'far', 'extrem', 'happi'], ['describ', 'problem', 'activ', 'phone'], ['arriv', 'perfect', 'condit', 'reset', 'factori', 'great', 'shape', 'work', 'describ'], ['great', 'phone', 'happi', 'find', 'amazon'], ['phone', 'arriv', 'seem', 'good', 'shape', 'seem', 'great', 'christma', 'gift', 'howev', 'gift', 'open', 'decemb', 'januari', 'taken', 'appl', 'genius', 'bar', 'local', 'appl', 'store', 'twice', 'second', 'time', 'die', 'complet', 'could', 'not', 'reviv', 'even', 'genius', 'said', 'defect', 'thing', 'replac', 'phone', 'i', 'thank', 'amazon', 'return', 'polici', 'glad', 'bought', 'amazon', 'whole', 'thing', 'disappoint'], ['love', 'phone', 'problem'], ['order', 'yellow', 'receiv', 'blue', 'realli', 'want', 'blue', 'anyway', 'work', 'satisfi'], ['purchas', 'use', 'iphon', 'got', 'look', 'use', 'scratch', 'screen', 'put', 'otter', 'box', 'protect', 'also', 'work', 'cover', 'use', 'look', 'phone', 'work', 'great', 'good', 'phone', 'kid'], ['work', 'great'], ['excel', 'product', 'fast'], ['phone', 'not', 'last', 'mor', 'month'], ['phone', 'great', 'love', 'color', 'back', 'iphon', 'thought', 'would', 'not', 'enough', 'storag', 'work', 'perfect'], ['least', 'month', 'sinc', 'i', 'new', 'iphon', 'say', 'phone', 'i', 'review', 'soo', 'amaz', 'get', 'start', 'area', 'think', 'phone', 'came', 'timet', 'manner', 'seller', 'nice', 'amaz', 'give', 'inform', 'packag', 'etc', 'not', 'phone', 'came', 'clean', 'absolut', 'crack', 'even', 'scratch', 'look', 'brand', 'new', 'speed', 'phone', 'outstand', 'batteri', 'life', 'last', 'day', 'would', 'find', 'charg', 'phone', 'twice', 'day', 'morn', 'went', 'bed', 'phone', 'came', 'phone', 'charger', 'headphon', 'problem', 'brought', 'charger', 'day', 'alreadi', 'pair', 'headphon', 'friend', 'iphon', 'overal', 'second', 'thought', 'not', 'best', 'order', 'i', 'year', 'thank', 'much', 'love'], ['work', 'great', 'abl', 'take', 'veroson', 'activ', 'daughter', 'love', 'replac', 'phone', 'stolen', 'compani', 'answer', 'question', 'receiv', 'time'], ['excel', 'seller', 'great', 'work'], ['packag', 'tact', 'phone', 'intern', 'damag', 'complet', 'nonfunct', 'refus', 'even', 'power', 'got', 'stuck', 'appl', 'logo', 'screen', 'tri', 'sever', 'differ', 'way', 'resolv', 'problem', 'cours', 'sever', 'hour', 'noth', 'work', 'contact', 'appl', 'told', 'exhaust', 'option', 'hardwar', 'problem', 'phone', 'never', 'even', 'got', 'turn', 'high', 'hope', 'would', 'order', 'replac', 'not', 'want', 'test', 'luck'], ['great', 'price', 'realli', 'great', 'servic', 'happi'], ['arriv', 'much', 'quicker', 'expect', 'phone', 'perfect', 'love', 'charger', 'die', 'soon', 'arriv', 'not', 'issu'], ['absolut', 'love', 'phone', 'howev', 'advertis', 'verizon', 'phone', 'receiv', 'tri', 'use', 'verizon', 'account', 'told', 'custom', 'rep', 'phone', 'bought', 'not', 'verizon', 'bum', 'even', 'though', 'verizon', 'custom', 'year', 'decid', 'keep', 'phone', 'tri', 'ts', 'servic', 'littl', 'oh', 'big', 'mistak', 'make', 'long', 'negat', 'stori', 'short', 'sweet', 'end', 'buy', 'verizon', 'iphon', 'like', 'one', 'blue', 'immedi', 'took', 'servic', 'back', 'verizon', 'charg', 'month', 'without', 'contract', 'anyway', 'bill', 'came', 'week', 'new', 'servic', 'want', 'almost', 'tell', 'would', 'begin', 'ha', 'i', 'not', 'stupid', 'refus', 'lie', 'chang', 'back', 'verizon', 'type', 'phone', 'verizon', 'phone', 'rock'], ['nice', 'iphon'], ['one', 'month', 'chip', 'logic', 'board', 'fail', 'control', 'recharg', 'batteri', 'not', 'repair', 'purchas', 'new', 'phone', 'could', 'exchang', 'phone', 'appl', 'chose', 'upgrad', 'get', 'new', 'phone'], ['daughter', 'love', 'blue', 'pretti'], ['good', 'phone', 'unlock'], ['honest', 'freak', 'littl', 'not', 'come', 'sim', 'card', 'expect', 'anyway', 'seller', 'gave', 'nice', 'institut', 'get', 'sim', 'card', 'activ', 'phone', 'phone', 'activ', 'happi'], ['first', 'not', 'verizon', 'phone', 'put', 'verizon', 'sim', 'card', 'not', 'get', 'cell', 'servic', 'contact', 'verizon', 'told', 'serial', 'number', 'not', 'real', 'phone', 'ridicul', 'second', 'charg', 'one', 'time', 'not', 'charg', 'agian', 'phone', 'would', 'not', 'take', 'charg', 'said', 'charg', 'batteri', 'went', 'better', 'get', 'refund'], ['scratch', 'screen', 'littl', 'corner', 'otherwis', 'love', 'phone', 'work', 'verizon'], ['home', 'button', 'mind', 'work', 'sporad', 'not', 'happi'], ['nice', 'price'], ['great', 'price', 'arriv', 'perfect', 'condit'], ['phone', 'appear', 'work', 'fine', 'broke', 'screen', 'phone', 'appl', 'store', 'inform', 'not', 'appl', 'phone', 'told', 'us', 'blue', 'case', 'not', 'appl', 'screen', 'way', 'inner', 'work', 'not', 'appl', 'would', 'not', 'touch', 'repair', 'etc', 'appear', 'knock', 'work', 'far', 'long', 'seller', 'advertis', 'new', 'appl', 'buyer', 'bewar'], ['work', 'great'], ['nice', 'phone', 'like'], ['experi', 'great', 'phone', 'good', 'condit', 'actual', 'expect', 'would', 'definit', 'recommend', 'other'], ['phone', 'suppos', 'brand', 'new', 'could', 'tell', 'case', 'work', 'fine', 'not', 'brand', 'new'], ['broke', 'coupl', 'day'], ['screen', 'come', 'phone', 'water', 'damag', 'got', 'not', 'say', 'purchas', 'not', 'pleas'], ['bought', 'grandson', 'birthday', 'upgrad', 'work', 'like', 'new', 'fraction', 'cost'], ['i', 'admit', 'nervous', 'purchas', 'price', 'seem', 'aw', 'low', 'seller', 'not', 'prime', 'wait', 'till', 'least', 'week', 'use', 'rate', 'bit', 'pleasant', 'surpris', 'happi', 'phone', 'clean', 'good', 'condit', 'seller', 'descript', 'indic', 'absolut', 'issu', 'transfer', 'att', 'account', 'phone'], ['expect', 'great', 'met'], ['minor', 'scratch', 'state', 'seller', 'great', 'phone', 'work', 'perfect'], ['phone', 'perfect', 'easi', 'transfer', 'info', 'old', 'phone', 'phone', 'perfect', 'condit', 'got', 'find', 'perfect', 'case', 'love', 'new', 'phone'], ['not', 'carrier', 'actual', 'sprint', 'fail', 'mention', 'giant', 'gash', 'bottom', 'corner', 'fact', 'came', 'headphon', 'also', 'still', 'regist', 'anoth', 'user', 'aw'], ['scratch', 'back', 'overal', 'i', 'happi', 'product', 'would', 'recommend', 'anyon', 'fenc', 'buy', 'one'], ['great', 'phone', 'great', 'price'], ['fantast', 'seller', 'smoke', 'fast', 'ship', 'wish', 'everyon', 'busi', 'way', 'may', 'not', 'best', 'appl', 'phone', 'amaz', 'still', 'like', 'microsoft', 'base', 'phone', 'pros', 'con'], ['great', 'qualiti', 'product'], ['horribl', 'recept', 'rural', 'area', 'design', 'antenna', 'stay', 'away', 'i', 'back', 'g', 'amaz'], ['great', 'purchas', 'i', 'love', 'iphon', 'i', 'get', 'use', 'first', 'appl', 'product', 'eas', 'comfort', 'come', 'iphon'], ['bought', 'phone', 'sister', 'exit', 'got', 'great', 'condit', 'scratch', 'work', 'like', 'new'], ['ship', 'fast', 'phone', 'minor', 'scratch', 'noth', 'notic', 'start'], ['good', 'phone'], ['month', 'daughter', 'drop', 'broke', 'said', 'less', 'foot', 'plastic', 'case', 'i', 'write', 'say', 'pleas', 'bc', 'took', 'phone', 'appl', 'store', 'compon', 'verif', 'phone', 'pass', 'truli', 'labl', 'brand', 'new', 'box', 'full', 'appl', 'warranti'], ['not', 'buy', 'phone'], ['worri', 'buy', 'phone', 'internet', 'amazon', 'give', 'lot', 'guarante', 'receiv', 'happi', 'not', 'flaw', 'wait', 'month', 'write', 'review', 'cell', 'phone', 'never', 'know', 'month', 'later', 'phone', 'still', 'go', 'strong', 'love', 'love', 'love', 'phone', 'first', 'time', 'order', 'anyth', 'amazon', 'order', 'dozen', 'thing', 'sinc', 'amazon', 'great', 'compani', 'sold', 'perfect', 'phone'], ['brought', 'grandaught', 'love', 'still', 'work', 'want', 'one', 'work', 'underwat', 'phone', 'soon', 'guess', 'need', 'get', 'updat', 'short', 'good', 'ole', 'pantech', 'matrix', 'flip', 'phone', 'keypad'], ['phone', 'arriv', 'touch', 'screen', 'mess', 'work', 'okay', 'sometim', 'time', 'touch', 'someth', 'read', 'like', 'touch', 'anoth', 'part', 'screen', 'someth', 'els', 'open', 'instead', 'frustrat'], ['glitch', 'drop', 'wifi', 'not', 'simpli', 'turn', 'back', 'shut', 'reboot', 'wifi', 'capabl', 'return', 'otherwis', 'good', 'phone', 'use', 'even', 'new', 'one', 'glitch', 'time'], ['phone', 'awesom', 'condit', 'except', 'not', 'come', 'accsesori', 'not', 'even', 'charger', 'star'], ['everyth', 'said', 'work', 'great', 'deliveri', 'faster', 'expect'], ['iphon', 'fanat', 'enjoy'], ['purchas', 'phone', 'octob', 'sinc', 'issu', 'freez', 'lack', 'respons', 'especi', 'keyboard', 'home', 'button', 'not', 'work', 'not', 'charg', 'friend', 'also', 'phone', 'issu', 'well', 'would', 'consid', 'use', 'averag', 'frustrat'], ['believ', 'purchas', 'new', 'not', 'refurbhish', 'item', 'howev', 'phone', 'problemat', 'sinc', 'activ', 'month', 'use', 'began', 'power', 'automat', 'minut', 'use', 'also', 'not', 'hold', 'charg', 'long', 'took', 'recommend', 'repair', 'shop', 'technician', 'suggest', 'batteri', 'could', 'bad', 'upon', 'open', 'phone', 'chang', 'batteri', 'discov', 'somewhat', 'bloat', 'batteri', 'indic', 'probabl', 'wet', 'one', 'time', 'attest', 'phone', 'never', 'dunk', 'also', 'said', 'sticker', 'insid', 'case', 'indic', 'phone', 'refurbish', 'one', 'never', 'servic', 'said', 'thought', 'buy', 'new', 'phone', 'order', 'indic', 'say', 'not', 'anyth', 'new', 'upon', 'notifi', 'seller', 'receiv', 'rather', 'new', 'phone', 'receiv', 'can', 'repli', 'basic', 'said', 'day', 'purchas', 'return', 'phone', 'total', 'unsatisfactori', 'answer', 'howev', 'plus', 'tax', 'spent', 'new', 'batteri', 'phone', 'work', 'well', 'certain', 'would', 'not', 'buy', 'dishonest', 'provid'], ['work', 'describ'], ['use', 'phone', 'approxim', 'month', 'screen', 'start', 'distort', 'would', 'not', 'work', 'proper', 'abl', 'get', 'appl', 'store', 'repair', 'inform', 'us', 'issu', 'screen', 'new', 'screen', 'would', 'need', 'instal', 'appl', 'start', 'replac', 'screen', 'found', 'phone', 'not', 'origin', 'sold', 'us', 'third', 'parti', 'screen', 'not', 'abl', 'replac', 'fraud', 'compani', 'not', 'sell', 'us', 'origin', 'phone', 'defect', 'phone'], ['pleas', 'fast', 'receiv', 'order', 'phone', 'seem', 'work', 'fine', 'small', 'minor', 'scratch', 'big', 'deal', 'thank'], ['reliabl', 'fast'], ['nice', 'price'], ['purchas', 'use', 'iphon', 'got', 'look', 'use', 'scratch', 'screen', 'put', 'otter', 'box', 'protect', 'also', 'work', 'cover', 'use', 'look', 'phone', 'work', 'great', 'good', 'phone', 'kid'], ['horribl', 'phone', 'stolen', 'alreadi', 'activ', 'someonels', 'account', 'need', 'say'], ['work', 'perfect'], ['brought', 'phone', 'love', 'took', 'sprint', 'got', 'sim', 'card', 'good', 'go', 'star', 'seller'], ['phone', 'like', 'new', 'need', 'sim', 'card', 'got', 'free', 'appl', 'store', 'instal', 'sprint', 'store', 'work', 'great'], ['detail', 'list', 'not', 'correct', 'reciev', 'phone', 'screen', 'liter', 'come', 'phone'], ['phone', 'broke', 'not', 'elig', 'upgrad', 'thought', 'luck', 'search', 'amazon', 'found', 'littl', 'thing', 'happi', 'buy', 'refurbish', 'lot', 'better', 'use', 'basic', 'brand', 'new', 'phone', 'look', 'work', 'perfect', 'not', 'come', 'sim', 'card', 'went', 'sprint', 'store', 'ask', 'one', 'gave', 'free', 'i', 'happi', 'purchas', 'phone', 'would', 'definit', 'recommend', 'buy', 'compani', 'need', 'new', 'phone', 'not', 'upgrad', 'fast', 'ship'], ['phone', 'not', 'good', 'condit', 'phone', 'kept', 'go', 'not', 'charg', 'offer', 'credit'], ['great', 'purchas'], ['good', 'phone', 'work', 'well'], ['i', 'surpris', 'amazon', 'suport', 'kind', 'seller', 'phone', 'stolen'], ['excel', 'condit', 'better', 'expect', 'arriv', 'earli', 'great'], ['great', 'price', 'great', 'product', 'brand', 'new', 'iphon', 'realli', 'good', 'price'], ['good', 'minim', 'scratch'], ['not', 'happi'], ['great', 'purchas'], ['could', 'not', 'even', 'activ', 'came', 'get', 'sprint', 'extra', 'stuff', 'servic', 'still', 'blink', 'sometim', 'like', 'not', 'sim', 'card'], ['work', 'perfect'], ['great', 'phone', 'reason', 'price', 'not', 'green', 'yellow'], ['work', 'describ', 'fast', 'ship'], ['sincer', 'like', 'order', 'item', 'know', 'usual', 'meet', 'expect', 'problem', 'producti', 'assur', 'return', 'satisfact'], ['work', 'well'], ['phone', 'spotti', 'come', 'charg', 'plug', 'regist', 'power', 'plug', 'not', 'alway', 'charg', 'check', 'four', 'five', 'time', 'unplug', 'plug', 'back', 'might', 'get', 'charg', 'also', 'speaker', 'go', 'within', 'three', 'day', 'use', 'fix', 'somehow', 'work'], ['cheapest', 'iphon', 'could', 'find', 'look', 'fine', 'came', 'pretti', 'fast', 'howev', 'seem', 'littl', 'glitchi', 'though'], ['phone', 'good', 'new', 'work', 'great'], ['exact', 'describ', 'packag', 'well'], ['work', 'great'], ['look', 'beauti', 'could', 'not', 'find', 'scratch', 'work', 'great', 'clean'], ['love', 'love', 'extra', 'seller', 'sent', 'thank'], ['exact', 'descript', 'said', 'would', 'love'], ['paid', 'premium', 'thought', 'organ', 'paid', 'attent', 'refurbish', 'plug', 'not', 'charg'], ['purchas', 'use', 'iphon', 'got', 'look', 'use', 'scratch', 'screen', 'put', 'otter', 'box', 'protect', 'also', 'work', 'cover', 'use', 'look', 'phone', 'work', 'great', 'good', 'phone', 'kid'], ['excel', 'condit'], ['great', 'replac', 'damag', 'phone'], ['good', 'product', 'work', 'great'], ['like', 'new', 'work', 'well'], ['great', 'love'], ['earli', 'deliveri', 'great', 'qualiti'], ['great', 'jist', 'got', 'sim', 'card', 'thank', 'god', 'sister', 'minor', 'scuf'], ['phone', 'came', 'like', 'new', 'condit', 'advertis', 'includ', 'condit', 'earbud', 'charger', 'well', 'troubl', 'activ', 'devic', 'get', 'new', 'sim', 'card', 'satisfi', 'condit', 'perform', 'devic', 'great', 'experi', 'ship', 'extrem', 'fast'], ['hard', 'time', 'get', 'activ', 'sprint', 'activ', 'ear', 'piec', 'not', 'work', 'return', 'appl', 'get', 'anoth', 'one', 'problem', 'back', 'appl', 'store'], ['phone', 'look', 'brand', 'new', 'beauti', 'shini', 'scratch', 'whatsoev', 'problem', 'activ', 'even', 'though', 'bought', 'phone', 'expect', 'buy', 'sim', 'card', 'someth', 'sinc', 'said', 'not', 'come', 'one', 'not', 'even', 'leav', 'room', 'activ', 'look', 'like', 'old', 'phone', 'app', 'minus', 'like', 'within', 'minut', 'even', 'still', 'text', 'messag'], ['not', 'like', 'went', 'go', 'switch', 'servic', 'could', 'not', 'still', 'someon', 'els', 'name'], ['great'], ['phone', 'ship', 'quick', 'work', 'perfect'], ['came', 'earli', 'terribl', 'get', 'unless', 'work', 'proper', 'not', 'even', 'come', 'charger', 'said', 'would', 'provid', 'also', 'not', 'read', 'sim', 'card', 'not', 'let', 'use', 'like', 'regular', 'phone', 'sim', 'card', 'need', 'get', 'pass', 'set'], ['great', 'phone', 'work', 'better', 'old', 'one', 'ever'], ['work', 'great', 'look', 'like', 'new', 'ad', 'said', 'scratch', 'howev', 'not', 'see'], ['love', 'phone'], ['work', 'perfect'], ['phone', 'dirti', 'receiv', 'came', 'inch', 'charg', 'cord', 'outback', 'plug', 'worst', 'part', 'not', 'sim', 'card', 'phone', 'not', 'abl', 'activ', 'night', 'receiv', 'phone', 'thank', 'whoever', 'sold', 'not', 'mention', 'would', 'need', 'purchas', 'sim', 'card', 'wait', 'longer', 'activ', 'phone'], ['phone', 'great', 'work', 'fine', 'brand', 'new', 'wish', 'came', 'headphon', 'good'], ['phone', 'imei', 'number', 'invalid', 'phone', 'complet', 'unabl', 'use'], ['unfortun', 'screen', 'shatter', 'mine', 'due', 'incid', 'howev', 'great', 'cute', 'phone', 'great', 'color'], ['thank', 'bought', 'friend', 'love'], ['version', 'iphon', 'want', 'intern', 'travel', 'state', 'either', 'iphon', 'not', 'get', 'factori', 'unlock', 'version', 'onlin', 'buy', 'verizon', 'wireless', 'version', 'unlik', 'sprint', 'not', 'buy', 'sprint', 'model', 'not', 'support', 'enough', 'lte', 'band', 'intern', 'travel', 'verizon', 'sell', 'phone', 'unlock', 'go', 'lot', 'red', 'tape', 'get', 'unlock', 'not', 'cool', 'decid', 'buy', 'direct', 'verzion', 'store', 'buy', 'phone', 'without', 'contract', 'go', 'plan', 'peopl', 'think', 'get', 'deal', 'phone', 'get', 'contract', 'long', 'run', 'spend', 'waayi', 'would', 'spend', 'money', 'phone', 'right', 'go', 'prepaid', 'plan', 'save', 'lot', 'money', 'way', 'spend', 'freedom', 'go', 'phone', 'compani', 'want', 'spend', 'next', 'two', 'year', 'choic'], ['compat', 'verizon', 'not', 'pink', 'peach', 'pretti', 'beaten', 'not', 'bad', 'enough', 'return', 'descent', 'valu', 'anyon', 'not', 'want', 'spend', 'fortun', 'phone'], ['norm'], ['not', 'receiv', 'verizon', 'wireless', 'state', 'titl', 'instead', 'wireless'], ['nice', 'iphon'], ['love', 'extra', 'memori', 'tri', 'might', 'not', 'fill', 'memori'], ['look', 'brand', 'new', 'get', 'sim', 'card', 'carrier', 'good', 'go'], ['phone', 'work', 'great', 'minor', 'scratch', 'use', 'work', 'fine', 'batteri', 'life', 'short', 'live', 'need', 'charg', 'daili', 'overal', 'good', 'major', 'problem', 'charger', 'came', 'phone', 'not', 'work', 'i', 'ask', 'replac', 'free', 'second', 'one', 'still', 'not', 'work', 'luckili', 'old', 'charger', 'i', 'use'], ['work', 'perfect', 'would', 'purchas', 'vendor'], ['review', 'phone', 'tri', 'everyth', 'ywsteadi', 'switch', 'phone', 'would', 'not', 'work', 'order', 'new', 'sim', 'well', 'long', 'stori', 'short', 'boh', 'wast', 'time', 'money', 'phone', 'not', 'come', 'charger', 'phone', 'great', 'condit', 'wast'], ['work', 'like', 'new', 'got', 'faster', 'expect'], ['honest', 'freak', 'littl', 'not', 'come', 'sim', 'card', 'expect', 'anyway', 'seller', 'gave', 'nice', 'institut', 'get', 'sim', 'card', 'activ', 'phone', 'phone', 'activ', 'happi'], ['phone', 'mani', 'issu', 'one', 'thing', 'not', 'letter', 'work', 'text', 'random', 'switch', 'screen', 'i', 'not', 'high', 'tech', 'person', 'tri', 'live', 'frustrat', 'turn', 'file', 'claim', 'howev', 'claim', 'day', 'past', 'day', 'guarante', 'gizmotrad', 'would', 'not', 'exchang', 'shame', 'amazon', 'advertis', 'day', 'z', 'guarante', 'product', 'cours', 'led', 'believ', 'would', 'guarante', 'good', 'resolut', 'problem', 'defect', 'merchandis', 'not', 'case', 'said', 'said', 'claim', 'file', 'luck', 'see', 'fine', 'print'], ['nice', 'phone', 'price', 'great', 'kid', 'first', 'phone', 'enough', 'gb', 'good', 'featur', 'low', 'price'], ['everyth', 'went', 'plan'], ['great', 'product'], ['phone', 'like', 'new', 'work', 'perfect', 'thank'], ['look', 'work', 'hope', 'refurbish', 'phone', 'seller', 'answer', 'question', 'got', 'phone', 'quick', 'mail', 'pleas', 'high', 'recommend', 'seller'], ['fals', 'inform', 'not', 'mention', 'crack', 'screen', 'last', 'minut'], ['phone', 'came', 'quick', 'great', 'shape', 'like', 'brand', 'new', 'accessori', 'charger', 'head', 'phone', 'almost', 'year', 'issu'], ['crappi', 'send', 'back'], ['happi', 'phone', 'work', 'describ', 'abl', 'connect', 'verizon', 'account', 'without', 'extend', 'contract'], ['purchas', 'phone', 'took', 'verizon', 'corpor', 'store', 'told', 'not', 'verizon'], ['like', 'price', 'color'], ['item', 'screen', 'alreadi', 'come', 'phone', 'phone', 'alreadi', 'not', 'work', 'school', 'month', 'save', 'anoth', 'buy', 'iphon', 'lie', 'condit'], ['need', 'new', 'one', 'one', 'glitch', 'need', 'new', 'one', 'not', 'send', 'one', 'back', 'either'], ['work', 'great', 'verizon', 'carrier', 'one', 'two', 'refurbish', 'iphon', 'order', 'arriv', 'day', 'place', 'order', 'arriv', 'way', 'arriv', 'date', 'state', 'work', 'great', 'verizon', 'carrier', 'took', 'verizon', 'store', 'put', 'free', 'sim', 'card', 'activ', 'work', 'great', 'high', 'recommend', 'everyon', 'order', 'seller', 'futur'], ['pleas', 'wish', 'could', 'afford', 'larger', 'storag'], ['good'], ['worri', 'first', 'consid', 'low', 'price', 'i', 'happi', 'small', 'scratch', 'abl', 'put', 'att', 'sim', 'switch', 'cricket', 'star', 'day'], ['arriv', 'time', 'phone', 'like', 'brand', 'new', 'clean', 'everyth'], ['not', 'new', 'use', 'scrtch', 'bad', 'box'], ['item', 'not', 'factori', 'unlock', 'not', 'work', 'south', 'america', 'pay', 'extra', 'unlock', 'work', 'ok'], ['own', 'amazon', 'fire', 'phone', 'iphon', 'fire', 'phone', 'quit', 'work', 'amazon', 'refund', 'full', 'amount', 'sinc', 'still', 'warranti', 'longer', 'make', 'phone', 'decid', 'go', 'ahead', 'purchas', 'iphon', 'instead', 'amazon', 'sinc', 'great', 'custom', 'servic', 'not', 'say', 'enough', 'phone', 'pictur', 'video', 'qualiti', 'great', 'take', 'lot', 'clearer', 'video', 'pictur', 'thought', 'would', 'take', 'littl', 'worri', 'storag', 'phone', 'like', 'download', 'ton', 'differ', 'app', 'game', 'far', 'good', 'not', 'storag', 'problem', 'not', 'delet', 'program', 'abl', 'upgrad', 'new', 'io', 'awesom', 'realli', 'happi', 'iphon', 'first', 'iphon', 'sinc', 'sad', 'right', 'glad', 'went', 'iphon', 'instead', 'android', 'way', 'better', 'phone'], ['phone', 'last', 'well', 'deal'], ['phone', 'came', 'promis', 'origin', 'packag', 'store', 'abl', 'transfer', 'inform', 'old', 'phone', 'easili', 'great', 'purchas'], ['first', 'appl', 'ever', 'would', 'never', 'anyth', 'els', 'user', 'friend'], ['excel', 'product'], ['purchas', 'gb', 'rather', 'gb'], ['great'], ['fast'], ['came', 'mail', 'day', 'earli', 'work', 'perfect'], ['five', 'star', 'product'], ['nice', 'phone', 'work', 'perfect'], ['fast', 'ship', 'product', 'like', 'descript'], ['own', 'amazon', 'fire', 'phone', 'iphon', 'fire', 'phone', 'quit', 'work', 'amazon', 'refund', 'full', 'amount', 'sinc', 'still', 'warranti', 'longer', 'make', 'phone', 'decid', 'go', 'ahead', 'purchas', 'iphon', 'instead', 'amazon', 'sinc', 'great', 'custom', 'servic', 'not', 'say', 'enough', 'phone', 'pictur', 'video', 'qualiti', 'great', 'take', 'lot', 'clearer', 'video', 'pictur', 'thought', 'would', 'take', 'littl', 'worri', 'storag', 'phone', 'like', 'download', 'ton', 'differ', 'app', 'game', 'far', 'good', 'not', 'storag', 'problem', 'not', 'delet', 'program', 'abl', 'upgrad', 'new', 'io', 'awesom', 'realli', 'happi', 'iphon', 'first', 'iphon', 'sinc', 'sad', 'right', 'glad', 'went', 'iphon', 'instead', 'android', 'way', 'better', 'phone'], ['batteri', 'not', 'last', 'hour', 'goe', 'minut'], ['year', 'old', 'bought', 'not', 'understand', 'work', 'sprint', 'absolut', 'useless', 'live', 'not', 'use', 'anyth', 'would', 'realli', 'appreci', 'someth', 'could', 'work', 'mayb', 'refund', 'unlock', 'phone', 'could', 'put', 'straight', 'talk', 'one', 'children', 'detassl', 'corn', 'summer', 'phone', 'pleas', 'help', 'thank'], ['awesom'], ['scam', 'buy', 'sim', 'card', 'not', 'iphon', 'cost', 'cent', 'not', 'work', 'get', 'review', 'chang', 'descript', 'shame'], ['reciv', 'iphon', 'live', 'kosovo', 'europ', 'work', 'amazon'], ['excel'], ['iphon', 'inde', 'unlock', 'slight', 'misfit', 'charger', 'prompt', 'replac', 'seller', 'phone', 'look', 'good', 'need', 'nano', 'sim', 'need', 'buy', 'buck', 'typic', 'absolut', 'new'], ['awesom'], ['came', 'fast', 'cute', 'phone', 'cours', 'amaz', 'appl', 'qualiti', 'weird', 'thing', 'even', 'phone', 'new', 'came', 'sim', 'card', 'insid', 'phone'], ['i', 'love', 'phone', 'i', 'satisfi'], ['goodby', 'phone', 'got', 'gb', 'even', 'though', 'say', 'gb'], ['excel', 'condit'], ['gb', 'not', 'enough', 'gone'], ['got', 'phone', 'work', 'perfect', 'happi', 'phine'], ['great', 'item', 'perfect', 'condit'], ['bought', 'replac', 'phone', 'daughter', 'need', 'one', 'quick', 'repair', 'phone', 'ran', 'love', 'came', 'describ', 'hold', 'charg', 'perfect', 'everi', 'way'], ['product', 'work', 'verizon', 'compani', 'not', 'unlock', 'phone'], ['product', 'stellar', 'look', 'brand', 'new', 'work', 'great', 'could', 'not', 'ask', 'better'], ['good'], ['work', 'perfect'], ['item', 'describ'], ['excel', 'product', 'ty'], ['phone', 'not', 'new', 'describ', 'phone', 'stop', 'work', 'month', 'took', 'appl', 'store', 'told', 'phone', 'made', 'part', 'mani', 'old', 'phone', 'appl', 'not', 'repair', 'serious', 'doubt', 'see', 'money', 'not', 'buy', 'seller'], ['came', 'timefram', 'state', 'exact', 'reason', 'price', 'excel', 'around'], ['good'], ['good'], ['phone', 'work', 'perfect', 'like', 'brand', 'new', 'beauti', 'amaz', 'phone'], ['came', 'time', 'i', 'satisfi', 'phone', 'unlock'], ['son', 'like'], ['phone', 'work', 'fine', 'came', 'charger', 'block', 'piec', 'not', 'work'], ['buen', 'vendedor', 'respondió', 'de', 'manera', 'rápida', 'eficient', 'cada', 'inquietud'], ['great'], ['skeptic', 'buy', 'use', 'phone', 'love', 'much', 'not', 'scratch', 'work', 'perfect', 'not', 'buy', 'anyon', 'els', 'save', 'much', 'money', 'i', 'satisfi'], ['bought', 'gift', 'mom', 'bday', 'absolut', 'ador', 'much', 'better', 'previous', 'iphon', 'fast', 'sleek', 'standard', 'appl', 'product', 'might', 'get', 'pink', 'ship', 'super', 'quick', 'busi'], ['gift', 'mum', 'mexico', 'work', 'perfect', 'mex', 'compani'], ['arriv', 'time', 'per', 'descript'], ['batteri', 'life', 'terribl'], ['nightmar', 'phone', 'not', 'unlock', 'took', 'forev', 'tri', 'activ', 'found', 'phone', 'report', 'stolen', 'send', 'back', 'purchas', 'differ', 'phone', 'never', 'buy', 'phone', 'onlin'], ['good', 'work', 'okay', 'gift'], ['good'], ['outstand', 'product', 'outstand', 'ship', 'speed', 'thank'], ['met', 'expect'], ['phone', 'orang', 'pink', 'color', 'not', 'yellow', 'like', 'order'], ['marvel', 'phone'], ['everyth', 'ok'], ['phone', 'list', 'like', 'new', 'tri', 'activ', 'camera', 'not', 'work', 'could', 'make', 'call', 'person', 'call', 'could', 'not', 'hear'], ['old', 'style', 'phone', 'work', 'great'], ['good'], ['great'], ['charger', 'not', 'work', 'everyth', 'els', 'fulli', 'function'], ['littl', 'wari', 'nowher', 'descript', 'say', 'new', 'came', 'knew', 'right', 'away', 'new', 'nobodi', 'packag', 'phone', 'like', 'appl', 'yes', 'verizon', 'sim', 'not', 'mean', 'lock', 'csr', 'carrier', 'consum', 'celluar', 'abl', 'determin', 'unlock', 'transit', 'flawless', 'yes', 'tad', 'smaller', 'iphon', 'big', 'finger', 'mayb', 'problem', 'also', 'need', 'nano', 'sim', 'card', 'phone', 'phone', 'avail', 'walmart', 'price', 'not', 'know', 'commit', 'requir', 'straight', 'talk', 'contract', 'servic'], ['muy', 'bueno'], ['i', 'wonder', 'phone', 'even', 'new', 'start', 'regret', 'buy', 'phone', 'receiv', 'today', 'not', 'even', 'silenc', 'camera', 'shutter', 'sound'], ['love', 'phone', 'fact', 'almost', 'cheaper', 'appl', 'store'], ['love', 'came', 'realli', 'fast', 'perfect', 'condit', 'side', 'note', 'may', 'screen', 'protector', 'devic', 'may', 'look', 'littl', 'worn'], ['vert', 'good'], ['scratch', 'present', 'screen', 'back', 'phone', 'show', 'sign', 'heavi', 'usag', 'howev', 'put', 'case', 'eventu', 'forget', 'back', 'side', 'xd', 'realli', 'not', 'mind', 'minor', 'scratch', 'back', 'long', 'screen', 'not', 'scratch', 'phone', 'work', 'well', 'abl', 'program', 'list', 'carrier', 'use', 'phone', 'moment', 'write', 'review', 'xd'], ['yes', 'came', 'time', 'not', 'big', 'scratch', 'fine'], ['person', 'prefer', 'android', 'daughter', 'love', 'phone', 'everyth', 'want', 'got', 'realli', 'good', 'price', 'need', 'extra', 'want', 'happi'], ['i', 'happi', 'salesman', 'arriv', 'time', 'iphon', 'everyth', 'expect', 'love'], ['like'], ['work', 'fine', 'issu', 'far', 'good', 'purchas'], ['price', 'excel', 'entri', 'level', 'io', 'interest', 'phone', 'cheaper', 'new', 'ipod', 'drop', 'toilet', 'great', 'replac'], ['perfect'], ['phone', 'arriv', 'condit', 'promis', 'work', 'great'], ['good'], ['excel', 'like', 'new', 'still', 'work', 'great'], ['phone', 'not', 'factori', 'unlock'], ['met', 'expect', 'thank'], ['phone', 'came', 'great', 'shape', 'work', 'well'], ['bought', 'christma', 'gift', 'daughter', 'worri', 'would', 'not', 'expect', 'per', 'onlin', 'pic', 'worri', 'whether', 'not', 'could', 'get', 'activ', 'metro', 'pcs', 'cours', 'daughter', 'complaint', 'see', 'get', 'love'], ['actual', 'purchas', 'daughter', 'readi', 'upgrad', 'want', 'phone', 'littl', 'worri', 'read', 'review', 'carrier', 'straight', 'talk', 'review', 'said', 'phone', 'would', 'not', 'work', 'lock', 'receiv', 'hurri', 'call', 'carrier', 'got', 'switch', 'put', 'sim', 'card', 'minut', 'later', 'run', 'absolut', 'love'], ['excel', 'product', 'great', 'condit'], ['come', 'lock', 'thank', 'super', 'easi', 'unlock', 'legit', 'model', 'number', 'websit', 'work', 'great'], ['happi', 'product', 'price'], ['son', 'love', 'iphon'], ['great'], ['got', 'phone', 'may', 'first', 'coupl', 'month', 'great', 'sinc', 'major', 'problem', 'charg', 'phone', 'use', 'microphon', 'random', 'softwar', 'glitch', 'effect', 'render', 'phone', 'useless', 'price', 'great', 'deal', 'worth', 'risk', 'want', 'guarante', 'phone', 'perform', 'would', 'not', 'recommend', 'purchas', 'one'], ['son', 'first', 'iphon', 'love', 'better', 'price', 'walmart'], ['nice', 'phone', 'easi', 'setup', 'brilliant', 'qualiti', 'love', 'camera', 'better', 'android', 'know', 'sure', 'took', 'phone', 'activ', 'pros', 'excel', 'rear', 'camera', 'awesom', 'facetim', 'camera', 'respons', 'touchscreen', 'absolut', 'lag', 'easi', 'transfer', 'android', 'item', 'iphon', 'previous', 'android', 'user', 'con', 'slipperi', 'plastic', 'back', 'easili', 'fix', 'buy', 'case'], ['work', 'great', 'problem', 'love'], ['scratch', 'dent'], ['brought', 'grandaught', 'love', 'still', 'work', 'want', 'one', 'work', 'underwat', 'phone', 'soon', 'guess', 'need', 'get', 'updat', 'short', 'good', 'ole', 'pantech', 'matrix', 'flip', 'phone', 'keypad'], ['excel', 'product', 'fast'], ['phone', 'came', 'within', 'week', 'phone', 'fit', 'descript', 'unlock', 'use', 'phone', 'great', 'condit', 'definit', 'order'], ['phone', 'work', 'perfect', 'minim', 'scratch', 'satisfi'], ['great', 'condit'], ['phone', 'everyth', 'expect', 'iphon', 'user', 'sinc', 'not', 'go', 'anywher'], ['gave', 'star', 'not', 'come', 'charger', 'box', 'batteri', 'alreadi', 'half', 'way', 'gone', 'first', 'turn', 'thought', 'broke', 'screen', 'clariti', 'think', 'not', 'worth', 'much', 'not', 'come', 'need', 'accessori', 'sim', 'card', 'could', 'brought', 'new', 'phone', 'togeth'], ['great', 'qualiti', 'phone', 'even', 'though', 'refurbish', 'hand', 'worth', 'everi', 'penni'], ['expect', 'great', 'met'], ['purchas', 'phone', 'advertis', 'new', 'dec', 'recent', 'becam', 'unrespons', 'took', 'appl', 'assum', 'would', 'help', 'one', 'year', 'warranti', 'inform', 'phone', 'origin', 'activ', 'top', 'replac', 'screen', 'instal', 'damag', 'phone', 'longer', 'work', 'noth', 'appl', 'could', 'would', 'new', 'phone', 'like', 'thought', 'would', 'fix', 'replac', 'sinc', 'within', 'one', 'year', 'activ', 'basic', 'refurbish', 'phone', 'sinc', 'month', 'luck', 'bad', 'experi'], ['littl', 'leeri', 'brand', 'new', 'phone', 'problem', 'activ', 'get', 'switch', 'sim', 'new', 'phone'], ['cell', 'phone', 'total', 'system', 'failur', 'month', 'cost', 'repair', 'almost', 'equal', 'purchas', 'price', 'take', 'iphon', 'local', 'appl', 'store', 'tri', 'identifi', 'problem', 'learn', 'not', 'option', 'appl', 'repair', 'phone', 'turn', 'phone', 'previous', 'damag', 'repair', 'repair', 'center', 'use', 'approv', 'part', 'quick', 'learn', 'appl', 'warranti', 'void', 'not', 'even', 'attempt', 'repair', 'modifi', 'phone', 'price'], ['recent', 'lost', 'old', 'iphon', 'desper', 'need', 'new', 'phone', 'reciev', 'use', 'iphon', 'although', 'come', 'ahead', 'time', 'not', 'happi', 'condit', 'problem', 'came', 'iphon', 'seller', 'neglect', 'notifi', 'phone', 'not', 'come', 'activ', 'sim', 'card', 'told', 'attempt', 'set', 'new', 'phone', 'hous', 'pay', 'extra', 'dollar', 'purchas', 'activ', 'new', 'sim', 'card', 'not', 'understand', 'would', 'deactiv', 'previous', 'sim', 'card', 'complet', 'useless', 'basic', 'trash', 'proceed', 'not', 'notifi', 'make', 'problem', 'dispos', 'product', 'descript', 'list', 'phone', 'minor', 'blemish', 'scratch', 'back', 'come', 'find', 'four', 'corner', 'chip', 'back', 'side', 'torn', 'like', 'thrown', 'across', 'pavement', 'also', 'button', 'loos', 'difficult', 'press', 'not', 'happi', 'seller', 'reason', 'keep', 'phone', 'dear', 'need', 'phone', 'never', 'buy', 'use', 'phone', 'especi', 'not', 'suggest', 'not', 'either', 'deffinit', 'worth', 'splurg', 'littl', 'someth', 'better', 'qualiti'], ['final', 'move', 'c', 'sign', 'data', 'plan', 'lowest', 'cours', 'anyway', 'ipad', 'ipod', 'know', 'iphon', 'work', 'like', 'featur', 'except', 'phone', 'not', 'know', 'smart', 'phone', 'work', 'not', 'like', 'take', 'sever', 'step', 'make', 'call', 'type', 'secur', 'code', 'get', 'app', 'open', 'open', 'phone', 'app', 'either', 'find', 'number', 'want', 'call', 'favorit', 'recent', 'call', 'dial', 'number', 'miss', 'speed', 'dial', 'dumb', 'phone', 'wish', 'could', 'use', 'devic', 'phone', 'without', 'open', 'app', 'first', 'i', 'sure', 'i', 'suppos', 'use', 'siri', 'make', 'dial', 'experi', 'better', 'not', 'alway', 'cellular', 'turn', 'mani', 'time', 'want', 'dial', 'phone', 'silent', 'without', 'make', 'voic', 'command', 'like', 'iphon', 'enough', 'overal', 'though', 'not', 'give', 'star', 'rate'], ['phone', 'stop', 'work', 'not', 'even', 'month', 'later', 'tri', 'email', 'compani', 'got', 'respons', 'could', 'wrong'], ['arriv', 'time', 'scratch', 'work', 'i', 'happi', 'product'], ['bought', 'gf', 'iphon', 'damag'], ['look', 'beauti', 'could', 'not', 'find', 'scratch', 'work', 'great', 'clean'], ['love', 'love', 'extra', 'seller', 'sent', 'thank'], ['work', 'fine'], ['receiv', 'iphon', 'time', 'manner', 'phone', 'work', 'great'], ['good', 'condit'], ['star'], ['alreadi', 'iphon', 'storag', 'need', 'much', 'order', 'phone', 'came', 'earlier', 'expect', 'fulli', 'function', 'problem', 'also', 'look', 'brand', 'new', 'i', 'own', 'month', 'everyth', 'work', 'fine', 'offer', 'plenti', 'storag', 'good', 'deal', 'price'], ['work', 'promis', 'condit', 'better', 'list'], ['everyth', 'except', 'would', 'remind', 'appl', 'phone', 'far'], ['advertis', 'new', 'not', 'speaker', 'not', 'work', 'therefor', 'siri', 'not', 'work', 'not', 'sure', 'anyth', 'not', 'work', 'yet'], ['phone', 'came', 'time', 'phone', 'exact', 'describ', 'post', 'extrem', 'happi', 'choic', 'buy', 'iphon'], ['product', 'arriv', 'quick', 'describ', 'defect', 'charg', 'cabl', 'replac', 'immedi', 'contact'], ['great', 'product', 'got', 'two', 'day'], ['great', 'phone', 'work', 'perfect', 'fast', 'oper', 'system', 'month', 'never', 'issu'], ['exact', 'describ', 'work', 'great', 'thank', 'expedit', 'ship'], ['not', 'believ', 'ship', 'appl', 'product', 'rep', 'verizon', 'store', 'could', 'not', 'regist', 'phone', 'verizon', 'system', 'closer', 'inspect', 'felt', 'agre', 'home', 'button', 'not', 'correct', 'center', 'bodi', 'phone', 'pull', 'away', 'screen', 'one', 'end', 'far', 'spent', 'hour', 'deal', 'phone', 'process', 'return', 'refund', 'purchas', 'anoth', 'differ', 'supplier'], ['great'], ['phone', 'alreadi', 'mess', 'need', 'code', 'send', 'back', 'replac', 'anoth', 'one', 'not', 'happi'], ['son', 'love', 'phone', 'thank', 'guy'], ['packag', 'came', 'fast', 'work', 'fine', 'exact', 'describ', 'honest', 'thought', 'price', 'get', 'rip', 'not'], ['came', 'exact', 'describ', 'need', 'back', 'not', 'sure', 'purchas', 'use', 'far', 'good', 'work', 'like', 'iphon'], ['phone', 'type', 'freez'], ['good'], ['fone', 'month', 'stolen', 'i', 'money', 'one', 'would', 'anyth', 'even', 'discount', 'i', 'readi', 'purchas', 'anoth', 'fone', 'felt', 'someth', 'could', 'done', 'lot', 'money'], ['awesom', 'coupl', 'scuff', 'mark', 'along', 'edg', 'pleasant', 'surpris', 'afford', 'ecspeci', 'year', 'old', 'small', 'happi'], ['work', 'perfect'], ['good'], ['phone', 'list', 'stolen'], ['buen', 'vendedor', 'respondió', 'de', 'manera', 'rápida', 'eficient', 'cada', 'inquietud'], ['product', 'defect', 'end', 'spend', 'addit', 'repair', 'lcd', 'not', 'send', 'back', 'due', 'small', 'child', 'need', 'phone', 'moment', 'advis', 'compani', 'review', 'product', 'ship'], ['get', 'instead', 'paid', 'attent', 'gb', 'bought'], ['came', 'fast', 'cute', 'phone', 'cours', 'amaz', 'appl', 'qualiti', 'weird', 'thing', 'even', 'phone', 'new', 'came', 'sim', 'card', 'insid', 'phone'], ['still', 'work', 'great'], ['reciev', 'broken', 'not', 'charg', 'not', 'expect'], ['love', 'love', 'love'], ['still', 'get', 'know', 'phone'], ['love', 'phone', 'fact', 'almost', 'cheaper', 'appl', 'store'], ['came', 'mail', 'day', 'earli', 'work', 'perfect'], ['excel'], ['great'], ['exact', 'describ', 'good', 'price'], ['not', 'get', 'yr', 'appl', 'warranti', 'purchas', 'phone', 'stop', 'work', 'month', 'damag', 'contact', 'appl', 'told', 'alreadi', 'replac', 'contact', 'seller', 'refund', 'close', 'request', 'horribl', 'experi', 'never', 'buy', 'seller'], ['excel', 'product', 'respons'], ['receiv', 'advertis'], ['good', 'phone', 'mean', 'great', 'one', 'look', 'batteri', 'life', 'not', 'buy', 'last', 'like', 'four', 'hour', 'busi', 'woman', 'like'], ['card', 'work', 'perfect', 'new', 'iphon'], ['love', 'phone', 'best', 'thing', 'ever'], ['phone', 'not', 'unlock', 'lock', 'not', 'work', 'servic', 'provid'], ['buy', 'new', 'charger', 'not', 'work', 'regular', 'charger'], ['nice', 'deal', 'price', 'howev', 'think', 'servic', 'provid', 'soso', 'citi'], ['would', 'issu', 'first', 'phone', 'sent', 'great', 'correct', 'problem'], ['work', 'fine', 'issu', 'far', 'good', 'purchas'], ['love', 'phone', 'exact', 'want'], ['look', 'beauti', 'could', 'not', 'find', 'scratch', 'work', 'great', 'clean'], ['phone', 'came', 'sooner', 'expect', 'scratch', 'good', 'condit', 'work', 'great'], ['excel', 'condit'], ['month', 'daughter', 'drop', 'broke', 'said', 'less', 'foot', 'plastic', 'case', 'i', 'write', 'say', 'pleas', 'bc', 'took', 'phone', 'appl', 'store', 'compon', 'verif', 'phone', 'pass', 'truli', 'labl', 'brand', 'new', 'box', 'full', 'appl', 'warranti'], ['front', 'camera', 'stop', 'work', 'today'], ['phone', 'good', 'condit', 'wear', 'tear', 'phone', 'self', 'not', 'get', 'super', 'hot', 'part', 'screen', 'not', 'work', 'correct', 'use', 'iphon', 'not', 'happen', 'price', 'not', 'satisfi', 'ever'], ['pretti', 'skeptic', 'read', 'review', 'phone', 'got', 'one', 'two', 'small', 'scratch', 'complaint', 'charg', 'screen', 'not', 'act', 'right', 'tri', 'use', 'phone', 'unplug', 'task', 'plug', 'back', 'love', 'phone', 'though', 'i', 'would', 'still', 'recommend', 'buy'], ['exact', 'expect'], ['pleas', 'fast', 'receiv', 'order', 'phone', 'seem', 'work', 'fine', 'small', 'minor', 'scratch', 'big', 'deal', 'thank'], ['love', 'love', 'extra', 'seller', 'sent', 'thank'], ['own', 'lot', 'refurbish', 'phone', 'never', 'problem', 'first', 'day', 'phone', 'seem', 'fine', 'last', 'week', 'work', 'sometim', 'either', 'alway', 'say', 'servic', 'sim', 'card', 'unhappi'], ['work', 'great'], ['purchas', 'gift', 'year', 'old', 'daughter', 'function', 'perfect', 'durabl', 'watch', 'drop', 'regular', 'everyth', 'want', 'negat', 'take', 'problem', 'burn', 'gig', 'data', 'two', 'week', 'better', 'sinc', 'still', 'heavi', 'data', 'usag', 'even', 'use', 'wifi', 'told', 'known', 'issu', 'model', 'best', 'friend'], ['describ', 'got', 'sooner', 'expect', 'could', 'not', 'happi'], ['good'], ['great', 'qualiti', 'product'], ['seem', 'work', 'fine'], ['work', 'great', 'pleas', 'item', 'thank'], ['horribl', 'recept', 'rural', 'area', 'design', 'antenna', 'stay', 'away', 'i', 'back', 'g', 'amaz'], ['exact', 'descript', 'said', 'would', 'love'], ['work', 'problem', 'far', 'go', 'get', 'new', 'sim', 'card', 'nice', 'phone'], ['love', 'phone', 'problem'], ['fast', 'deliveri', 'brand', 'new', 'iphon', 'love'], ['order', 'phone', 'tuesday', 'night', 'almost', 'midnight', 'receiv', 'today', 'even', 'though', 'ship', 'said', 'may', 'june', 'use', 'go', 'phone', 'go', 'local', 'store', 'sim', 'card', 'set', 'pleas', 'purchas'], ['grand', 'daughter', 'love'], ['middl', 'screen', 'unus', 'not', 'detect', 'touch', 'vibrat', 'also', 'loud', 'not', 'factori'], ['excel', 'phone'], ['not', 'carrier', 'actual', 'sprint', 'fail', 'mention', 'giant', 'gash', 'bottom', 'corner', 'fact', 'came', 'headphon', 'also', 'still', 'regist', 'anoth', 'user', 'aw'], ['came', 'day', 'like', 'suppos', 'everyth', 'good', 'crack', 'scrape', 'noth'], ['great', 'price', 'good', 'valu', 'good', 'qualiti', 'held', 'decent', 'phone', 'case'], ['phone', 'work', 'good', 'hard', 'scratch', 'daughter', 'love', 'phone'], ['amaz', 'iphon', 'met', 'standard', 'brought', 'cover', 'galaxi', 'phone', 'instead', 'iphon', 'end', 'not', 'use', 'like'], ['came', 'mail', 'crack', 'screen', 'not', 'oper', 'abl', 'get', 'refund', 'nice', 'product', 'aw'], ['phone', 'last', 'good', 'year', 'work', 'well', 'upgrad', 'last', 'week', 'honest', 'like', 'differ', 'screen', 'bigger', 'not', 'see', 'much', 'differ', 'camera', 'like', 'small', 'phone', 'scare', 'drop', 'big', 'phone', 'phone', 'get', 'job', 'phone', 'done'], ['phone', 'not', 'work', 'well', 'sometim', 'usabl', 'sometim', 'not'], ['phone', 'not', 'work', 'well', 'sometim', 'usabl', 'sometim', 'not'], ['phone', 'seem', 'decent', 'not', 'sure', 'list', 'say', 'unlock', 'use', 'verizon', 'wireless', 'lte', 'plan', 'tri', 'activ', 'carrier', 'told', 'not', 'use', 'suppos', 'son', 'birthday', 'gift', 'make', 'plan'], ['phone', 'last', 'good', 'year', 'work', 'well', 'upgrad', 'last', 'week', 'honest', 'like', 'differ', 'screen', 'bigger', 'not', 'see', 'much', 'differ', 'camera', 'like', 'small', 'phone', 'scare', 'drop', 'big', 'phone', 'phone', 'get', 'job', 'phone', 'done'], ['iphon', 'excel'], ['good', 'iphon', 'model', 'problem', 'hope', 'get', 'resolv', 'later', 'accident', 'push', 'bottom', 'center', 'button', 'long', 'goe', 'voic', 'mode', 'difficult', 'get'], ['phone', 'exact', 'expect', 'size', 'motiv'], ['ítem', 'expect', 'receiv', 'date', 'suppos'], ['phone', 'major', 'transit', 'android', 'base', 'phone', 'week', 'realli', 'get', 'accustom', 'appl', 'iphon', 'realli', 'chang', 'perspect', 'appl', 'first', 'pricey', 'worth', 'invest', 'smooth', 'qualiti', 'warm', 'feel', 'ownership', 'give', 'second', 'batteri', 'life', 'substanti', 'improv', 'mani', 'android', 'phone', 'own', 'not', 'problem', 'drain', 'time', 'siri', 'awesom', 'person', 'not', 'use', 'vocal', 'command', 'devic', 'great', 'time', 'issu', 'command', 'ask', 'con', 'wish', 'mani', 'android', 'base', 'app', 'transferr', 'complaint', 'way', 'technolog', 'common', 'adapt', 'deliv', 'best', 'consum', 'matter', 'screen', 'display', 'excel', 'unfortun', 'phone', 'not', 'big', 'either', 'compar', 'ultra', 'smartphon', 'definit', 'make', 'sleek', 'traditionalist', 'screen', 'clariti', 'think', 'afford', 'product', 'need', 'devic', 'use', 'wonder', 'person', 'profession', 'set'], ['work', 'good', 'thing', 'bad', 'not', 'get', 'proper', 'charger', 'devic', 'expect', 'buy', 'self'], ['came', 'time', 'littl', 'skeptic', 'whether', 'not', 'actual', 'product', 'work', 'great', 'i', 'use', 'type', 'review', 'right'], ['phone', 'came', 'quick', 'everyth', 'fine', 'work', 'okay', 'far'], ['horribl', 'batteri', 'suckss', 'disappoint', 'purchas'], ['perfect', 'qualiti', 'packag', 'expect', 'charger', 'headphon', 'thank'], ['definit', 'worth', 'extra', 'dollar', 'compar', 'fingerprint', 'unlock', 'system', 'clever', 'effect', 'phone', 'may', 'seem', 'smaller', 'imagin', 'opinion', 'not', 'annoy', 'warn', 'would', 'give', 'user', 'interest', 'buy', 'use', 'product', 'pleas', 'take', 'consider', 'batteri', 'life', 'not', 'best'], ['came', 'right', 'time', 'work', 'perfect', 'recommend', 'buy', 'sure'], ['amaz', 'qualiti', 'knew', 'receiv', 'alreadi', 'own', 'iphon', 'unexpect', 'fast', 'deliveri', 'definit', 'buy', 'break'], ['speaker', 'not', 'workingi', 'want', 'fixi', 'not', 'know', 'send', 'back'], ['phone', 'brand', 'new', 'advertis', 'seller', 'thank', 'much'], ['not', 'iphon', 'fan', 'bought', 'one', 'meet', 'expect', 'camera', 'featur', 'strorag', 'space', 'easi', 'access', 'app', 'easi', 'use', 'featur', 'not', 'like', 'itun', 'inconvi', 'download', 'music', 'rington', 'phone', 'transfer', 'comput', 'back', 'phone', 'remov', 'particular', 'app', 'phone', 'great', 'phone'], ['work', 'perfect', 'right', 'box', 'problem', 'describ', 'seller'], ['excel', 'product', 'fast', 'deliveri', 'recomenden'], ['good'], ['phone', 'keeran', 'come', 'describ', 'lock', 'abl', 'take', 'though', 'appl', 'id', 'lock', 'not', 'regist'], ['love', 'phone', 'cut', 'origin', 'sim', 'card', 'samsung', 'galaxi', 'put', 'new', 'iphon', 'work', 'respond', 'super', 'fast', 'fingerprint', 'unlock', 'amaz', 'condit', 'perfect', 'came', 'origin', 'box', 'i', 'happi', 'purchas'], ['found', 'minor', 'cosmet', 'issu', 'work', 'fine'], ['arriv', 'specifi', 'time', 'cell', 'phone', 'excel', 'condit', 'happi', 'purchas'], ['excel'], ['daughter', 'love', 'iphon', 'want', 'smaller', 'work', 'well'], ['know', 'skeptic', 'get', 'use', 'iphon', 'not', 'sure', 'anyth', 'buy', 'phone', 'sold', 'seller', 'name', 'k', 'k', 'realti', 'descriptor', 'phone', 'good', 'condit', 'need', 'phone', 'pretti', 'quick', 'chose', 'base', 'fact', 'prime', 'elig', 'seller', 'posit', 'rate', 'took', 'phone', 'came', 'great', 'condit', 'hard', 'scratch', 'iphon', 'met', 'expect', 'seller', 'good', 'condit', 'state', 'hurri', 'toward', 'corpor', 'verizon', 'store', 'corpor', 'store', 'not', 'charg', 'sim', 'card', 'transfer', 'account', 'info', 'number', 'iphon', 'took', 'happi', 'purchas', 'even', 'though', 'skeptic', 'first', 'problem', 'anyth'], ['never', 'go', 'back', 'android', 'window', 'phone', 'super', 'reliabl', 'simpl', 'use', 'batteri', 'life', 'could', 'better', 'howev'], ['glad', 'bought', 'marketplac', 'return', 'first', 'one', 'tri', 'work'], ['oper', 'system', 'fail', 'within', 'month', 'beyond', 'repair', 'warranti', 'seller', 'day', 'unfriend', 'polici', 'expens', 'item', 'one', 'expect', 'last', 'least', 'coupl', 'year', 'not', 'recommend'], ['love', 'phone', 'i', 'learn', 'mani', 'option', 'i', 'fascin', 'may', 'take', 'class', 'hastenth', 'learn', 'process'], ['phone', 'otter', 'box', 'absolut', 'perfect', 'ship', 'super', 'fast'], ['mobil', 'phone', 'qualiti', 'problem', 'site', 'give', 'reason', 'solut', 'hope', 'care', 'check', 'good'], ['husband', 'complaint', 'android', 'user', 'year', 'love', 'smooth', 'app'], ['worksfin'], ['well', 'unfortun', 'phone', 'went', 'swim', 'forc', 'decid', 'buy', 'new', 'phone', 'buy', 'use', 'one', 'got', 'iphon', 'mint', 'condit', 'less', 'ship', 'door', 'step', 'day', 'pleas', 'would', 'high', 'recommend', 'phone', 'anybodi', 'face', 'situat'], ['went', 'galaxi', 'hate', 'went', 'back', 'iphon', 'time', 'perform', 'notic', 'better', 'much', 'better', 'especi', 'lollipop', 'updat', 'batteri', 'life', 'much', 'better', 'love'], ['phone', 'grest'], ['complaint', 'ship', 'prompt', 'item', 'arriv', 'describ'], ['love', 'phone', 'lost', 'mine', 'use', 'old', 'phone', 'two', 'week', 'get', 'back', 'eas', 'use', 'speed', 'memori', 'perfect'], ['may', 'say', 'new', 'screen', 'replac', 'third', 'parti', 'aftermarket', 'screen', 'not', 'refus', 'servic', 'iphon', 'aftemarket', 'screen'], ['like', 'owner', 'say'], ['excel', 'phone', 'good', 'seller'], ['phone', 'work', 'most', 'descript', 'explain', 'work', 'order', 'not', 'case', 'volum', 'button', 'not', 'work', 'clean', 'ear', 'piec', 'gunk', 'gross', 'also', 'mention', 'minor', 'scratch', 'not', 'truth', 'goug', 'around', 'whole', 'phone', 'back', 'also', 'charger', 'mount', 'connect', 'cord', 'alreadi', 'loos', 'eventu', 'jave', 'get', 'place', 'soon', 'over', 'pay', 'dollar', 'phone', 'wish', 'better', 'condit'], ['bad', 'batteri', 'not', 'stay', 'charg', 'scratch'], ['thank'], ['onlin', 'thing', 'not', 'come', 'verizon', 'sim', 'card', 'like', 'descript', 'lead', 'believ', 'fast', 'ship', 'phone', 'brand', 'new', 'expect', 'wait', 'sim', 'card', 'enjoy'], ['phone', 'great', 'everyth', 'like', 'said', 'descript', 'go', 'phone', 'store', 'help', 'set', 'minor', 'delay', 'work', 'short', 'day', 'warranti', 'howev', 'not', 'return', 'phone', 'happi', 'thank'], ['great', 'form', 'finish', 'metal', 'glass', 'feel', 'phenomen', 'case', 'not', 'add', 'much', 'bulk', 'due', 'alreadi', 'minim', 'dimens', 'fantast', 'phone', 'reliabl', 'oper', 'system', 'would', 'definit', 'recommend', 'even'], ['verizon', 'indic', 'phone', 'not', 'compat', 'system'], ['great', 'buy', 'fast', 'ship'], ['i', 'give', 'thumb', 'say', 'went', 'beyond', 'resolv', 'error', 'receiv', 'incorrect', 'item', 'error', 'impress', 'custom', 'servic', 'respons', 'pleas', 'product', 'receiv'], ['not', 'get', 'sim', 'card', 'phone'], ['good'], ['far', 'good', 'complaint'], ['bought', 'yesterday', 'earphon', 'went', 'appl', 'store', 'repair', 'told', 'earphon', 'not', 'origin', 'find', 'not', 'find', 'word', 'earphon', 'assembl', 'think', 'sell', 'fake', 'think', 'serious', 'problem'], ['phone', 'advertis', 'new', 'defect', 'took', 'appl', 'store', 'said', 'came', 'comput', 'recycl', 'hmm', 'return'], ['charg', 'cord', 'came', 'suck', 'fri', 'week', 'bare', 'use', 'realli', 'poor', 'qualiti', 'also', 'phone', 'volum', 'button', 'jam', 'bare', 'even', 'use', 'use', 'earphon', 'adjust', 'volum', 'would', 'not', 'buy', 'got', 'new', 'realli', 'caus', 'problem', 'alreadi'], ['everyth', 'true', 'advertis'], ['return', 'phone', 'refund', 'daughter', 'insist', 'told', 'us', 'want', 'someth', 'phone'], ['refurbish', 'look', 'like', 'new', 'work', 'great', 'solid', 'phone'], ['bought', 'best', 'price', 'phone', 'februari', 'list', 'new', 'today', 'june', 'batteri', 'dead', 'not', 'hold', 'charg', 'seller', 'disappear', 'i', 'model', 'phone', 'sinc', 'first', 'issu', 'still', 'go', 'strong'], ['good'], ['excel'], ['great', 'phone', 'work', 'perfect'], ['good'], ['okay', 'first', 'email', 'seller', 'ask', 'way', 'would', 'abl', 'get', 'order', 'quicker', 'second', 'phone', 'came', 'readi', 'use', 'came', 'half', 'way', 'charg', 'need', 'turn', 'also', 'phone', 'came', 'describ', 'use', 'like', 'new', 'scuff', 'top', 'scratch', 'crack', 'not', 'previous', 'mention', 'seller', 'final', 'put', 'sim', 'card', 'phone', 'work', 'right', 'away', 'not', 'call', 'phone', 'compani', 'phone', 'set', 'way', 'great', 'seller', 'great', 'product'], ['excel'], ['like'], ['ship', 'fast', 'came', 'expect', 'accessori', 'state', 'descript'], ['all', 'good', 'phone', 'excel', 'condit'], ['work', 'great', 'complaint'], ['work', 'like', 'suppos', 'problem', 'payment', 'not', 'take', 'visa', 'camera', 'insid', 'not', 'work', 'upset'], ['work', 'fine', 'serv', 'purpos'], ['phone', 'good', 'work', 'condit'], ['help', 'buy', 'phone', 'boyfriend', 'complaint', 'even', 'though', 'previous', 'own', 'excel', 'condit', 'honest', 'would', 'not', 'abl', 'tell', 'use', 'not', 'say'], ['cellphon', 'scren', 'lock', 'need', 'enter', 'pin', 'know', 'anyonecan', 'gime', 'advic'], ['buyer', 'good', 'iphon', 'camera', 'not', 'work', 'touch', 'id', 'not', 'work', 'never', 'buy', 'anoth', 'phone'], ['great', 'servic', 'product', 'world', 'seller', 'brand', 'new', 'seal', 'iphon', 'came', 'io', 'instead', 'made', 'end', 'not', 'like'], ['nice'], ['first', 'batteri', 'not', 'charg', 'bought', 'batteri', 'not', 'charg', 'bought', 'charg', 'port', 'still', 'not', 'charg', 'went', 'technician', 'fix', 'came', 'servic', 'fee', 'new', 'batteri', 'phone', 'lock', 'pay', 'unlock', 'realiz', 'sprint', 'unlock', 'phone', 'not', 'work', 'page', 'plus', 'verizon', 'network', 'give', 'spend', 'came', 'noth', 'money', 'could', 'get', 'brand', 'new', 'appl', 'store'], ['super'], ['item', 'arriv', 'perfect', 'fine', 'time', 'look', 'great', 'outsid', 'part', 'charg', 'phone', 'old', 'moldi', 'burnt', 'way', 'fix', 'wast'], ['phone', 'came', 'way', 'said', 'condit', 'wise'], ['brought', 'phone', 'son', 'love', 'perfect', 'shape', 'like', 'seller', 'said', 'would'], ['came', 'perfect', 'condit', 'daughter'], ['order', 'phone', 'expect', 'imagin', 'shock', 'open', 'box', 'find', 'phone', 'good', 'condit', 'not', 'list'], ['iphon', 'legit'], ['excit', 'receiv', 'phone', 'short', 'amount', 'time', 'see', 'basic', 'brand', 'new', 'charg', 'could', 'activ', 'right', 'away', 'also', 'happi', 'came', 'not', 'charger'], ['phone', 'work', 'fit', 'well', 'pocket', 'screen', 'good', 'never', 'problem'], ['look', 'great', 'mani', 'dent', 'around', 'edg', 'phone', 'not', 'come', 'headphon', 'fast', 'ship'], ['great', 'condit'], ['bought', 'new', 'get', 'today', 'open', 'use', 'broken', 'not', 'activ', 'yet', 'go', 'tomorrow', 'hope', 'work', 'upset'], ['love'], ['great'], ['take', 'great', 'care', 'custom', 'would', 'buy', 'anoth', 'product'], ['brand', 'new', 'seal', 'box', 'took', 'awhil', 'get', 'i', 'get', 'pleas'], ['product', 'came', 'less', 'week', 'perfect', 'condit', 'describ', 'abl', 'activ', 'phone', 'immedi', 'issu', 'ever'], ['purchas', 'phone', 'new', 'daughter', 'birthday', 'start', 'troubl', 'within', 'coupl', 'month', 'final', 'would', 'not', 'take', 'charg', 'took', 'certifi', 'appl', 'repair', 'shop', 'took', 'apart', 'notic', 'damag', 'insid', 'phone', 'research', 'notic', 'aftermarket', 'interior', 'screen', 'phone', 'not', 'new', 'two', 'differ', 'aftermarket', 'part', 'random', 'loos', 'screw', 'insid', 'not', 'even', 'belong', 'phone', 'cours', 'made', 'warranti', 'void', 'technician', 'could', 'longer', 'work', 'phone', 'would', 'not', 'recommend', 'dealer', 'anyon', 'sell', 'product', 'fals', 'pretens'], ['order', 'phone', 'think', 'sprint', 'phone', 'went', 'activ', 'sprint', 'network', 'not', 'actual', 'sprint', 'phone', 'frustrat'], ['pleas', 'purchas', 'work', 'great', 'love'], ['like', 'new', 'work', 'great', 'straight', 'box'], ['item', 'not', 'origin', 'charger', 'plz', 'send', 'orgin', 'mobil', 'thankx'], ['great', 'work', 'expect'], ['product', 'great', 'said', 'iphon', 'look', 'brand', 'new', 'buy'], ['excel', 'product'], ['good', 'new'], ['work', 'fine'], ['phone', 'came', 'mail', 'dead', 'scratch', 'screen', 'charg', 'tri', 'multipl', 'letter', 'keyboard', 'not', 'work', 'top', 'one', 'day', 'own', 'good', 'condit', 'iphon', 'screen', 'went', 'complet', 'bizarr', 'terribl', 'seller'], ['sold', 'fail', 'unlock', 'phone', 'longer', 'compat', 'sprint', 'not', 'devic', 'arriv', 'greasi', 'dirti'], ['not', 'unlock', 'useless', 'refund', 'return'], ['great', 'purchas', 'daughter', 'love', 'new', 'phone', 'ecstat', 'memori'], ['great'], ['bad', 'experi', 'phone', 'never', 'work', 'i', 'still', 'wait', 'seller', 'money', 'back'], ['perfect'], ['muy', 'mal', 'el', 'telefono', 'muy', 'estropeado', 'con', 'golp', 'sin', 'audifono', 'ni', 'cargador', 'bad'], ['work', 'great', 'good', 'condit'], ['good'], ['luff'], ['not', 'get', 'car', 'charger', 'cell', 'phone', 'not', 'unblock', 'contact', 'alex'], ['said', 'new', 'phone', 'scratch', 'not', 'get', 'touch', 'said', 'unlock', 'not', 'true'], ['buy', 'one', 'good', 'friend', 'venezuela', 'would', 'like', 'know', 'telephon', 'oper', 'request', 'unlock', 'countri'], ['love', 'iphon'], ['phone', 'arriv', 'right', 'time', 'great', 'shape', 'work', 'great', 'i', 'satisfi', 'phone'], ['not', 'good', 'old', 'need', 'may', 'mani', 'back', 'pleas'], ['item', 'describ'], ['phone', 'store', 'twice', 'help', 'appl', 'support', 'may', 'serious', 'problem', 'not', 'sure', 'iif', 'send', 'back', 'give', 'time'], ['phone', 'work', 'fit', 'well', 'pocket', 'screen', 'good', 'never', 'problem'], ['unlock', 'phone', 'site', 'use', 'countri', 'usd'], ['prompt', 'deliveri', 'good', 'price', 'problem', 'issu'], ['product', 'brand', 'new', 'work', 'brand', 'new'], ['awesom'], ['first', 'time', 'receiv', 'phone', 'seller', 'everyth', 'seem', 'fine', 'day', 'loud', 'speaker', 'stop', 'work', 'sent', 'phone', 'back', 'seller', 'told', 'anoth', 'phone', 'get', 'test', 'appl', 'make', 'sure', 'everyth', 'work', 'proper', 'come', 'find', 'wait', 'week', 'repair', 'one', 'sent', 'not', 'ever', 'buy', 'item', 'rolyg', 'disappoint'], ['advertis', 'new', 'took', 'appl', 'batteri', 'deplet', 'month', 'refus', 'work', 'batteri', 'third', 'parti', 'mani', 'button', 'inner', 'work', 'not', 'advertis'], ['i', 'go', 'honest', 'i', 'not', 'go', 'give', 'long', 'page', 'review', 'i', 'go', 'say', 'not', 'best', 'get', 'phone', 'plan', 'anyth', 'like', 'phone', 'came', 'like', 'brand', 'new', 'except', 'small', 'problem', 'phone', 'would', 'start', 'turn', 'random', 'month', 'get', 'not', 'bad', 'month', 'later', 'got', 'bad', 'could', 'not', 'phone', 'minut', 'without', 'turn', 'littl', 'would', 'turn', 'stay', 'appl', 'turn', 'could', 'not', 'phone', 'get', 'fix', 'not', 'lot', 'rais', 'price', 'pay', 'phone', 'found', 'piec', 'insid', 'phone', 'would', 'heat', 'bad', 'would', 'turn', 'phone', 'fix', 'restart', 'phone', 'hope', 'review', 'help', 'guy'], ['use', 'phone', 'iphon', 'great', 'life', 'still', 'blaze', 'fast'], ['give', 'zero', 'star', 'phone', 'still', 'someon', 'els', 'appl', 'id', 'send', 'back'], ['shop', 'internet', 'conveni', 'disappoint', 'get', 'phone', 'go', 'post', 'offic', 'pick', 'go', 'verizon', 'store', 'get', 'phone', 'configur', 'verizon', 'tell', 'phone', 'not', 'verizon', 'phone', 'not', 'mention', 'verizon', 'store', 'receiv', 'inform', 'price', 'way', 'high', 'model', 'true', 'determin', 'price', 'fair', 'ultim', 'respons', 'sure', 'would', 'nice', 'product', 'list', 'alway', 'good', 'degre', 'fair', 'main', 'complaint', 'wrong', 'phone', 'not', 'verizon', 'phone', 'advertis', 'need', 'return', 'shop', 'proper', 'phone'], ['product', 'came', 'great', 'scratch', 'issu', 'leav', 'cellular', 'data', 'turn', 'time', 'order', 'imessag', 'work', 'turn', 'cellular', 'data', 'shut', 'app', 'not', 'use', 'data'], ['phone', 'arriv', 'time', 'not', 'mark', 'blemish', 'button', 'speaker', 'camera', 'work', 'like', 'new', 'actual', 'much', 'better', 'condit', 'refurbish', 'iphon', 'previous', 'use', 'phone', 'prepay', 'plan', 'work', 'perfect', 'went', 'servic', 'provid', 'vrzn', 'store', 'gave', 'free', 'sim', 'card'], ['bought', 'phone', 'teenag', 'get', 'tire', 'spend', 'ridicul', 'amount', 'money', 'latest', 'greatest', 'regret', 'iphon', 'work', 'great', 'save', 'hundr', 'dollar', 'price', 'latest', 'iphon'], ['good', 'new', 'machin'], ['great', 'phone', 'fast', 'ship', 'thank'], ['awesom', 'buy', 'wpuld', 'si', 'song'], ['love', 'new', 'phoneit', 'light', 'scratch', 'not', 'badon', 'littl', 'bum', 'batteri', 'dead', 'arriv'], ['unabl', 'use', 'phone', 'arriv', 'lock', 'return'], ['receiv', 'fast', 'shipment', 'decent', 'price', 'factori', 'seal', 'packag', 'doodad', 'incl', 'ear', 'bud', 'charg', 'block', 'cabl'], ['phone', 'look', 'brand', 'new', 'mark', 'perform', 'optimum', 'capabl', 'best', 'purchas', 'complaint', 'thus', 'far'], ['phone', 'exact', 'advertis'], ['happi'], ['purchas', 'phone', 'brand', 'new', 'amaz', 'better', 'expect', 'concern', 'would', 'not', 'good', 'look', 'great', 'not', 'sure', 'bad', 'review', 'compani', 'sell'], ['son', 'pleas', 'new', 'phone', 'batteri', 'not', 'stay', 'charg', 'long'], ['work', 'fine'], ['excel'], ['phone', 'sent', 'manufactur', 'sale', 'japan', 'anoth', 'similar', 'countri', 'thus', 'not', 'shut', 'camera', 'shutter', 'sound', 'annoy'], ['work', 'great', 'destroy'], ['excel'], ['poor', 'descript', 'product', 'phone', 'stolen', 'resold', 'also', 'anoth', 'carrier'], ['terribl', 'sprint', 'phone', 'could', 'not', 'turn', 'tri', 'return', 'never', 'heard', 'back', 'seller', 'tri', 'unlock', 'turn', 'could', 'not', 'either', 'wast', 'money'], ['love'], ['love', 'phone', 'lot', 'not', 'come', 'scratch', 'ding', 'came', 'fast', 'like', 'suppos', 'first', 'iphon', 'thing', 'not', 'understand', 'restart', 'sometim', 'without', 'warn', 'sometim', 'give', 'blue', 'screen', 'death', 'shut', 'right', 'back', 'tri', 'find', 'solut', 'way', 'blue', 'screen', 'death', 'stop', 'charg', 'phone', 'not', 'wait', 'ran', 'juic', 'overal', 'good', 'nice', 'phone'], ['sold', 'appl', 'iphon', 'need', 'unblock', 'unit', 'although', 'thought', 'by', 'unblock', 'version', 'turn', 'not', 'sinc', 'acquir', 'machin', 'south', 'africa', 'best', 'thing', 'ever', 'acquir'], ['phone', 'arriv', 'time', 'condit', 'promis', 'great', 'shape', 'intent', 'use', 'phone', 'wifi', 'network', 'cell', 'servic', 'surpris', 'find', 'even', 'not', 'use', 'cellular', 'voic', 'data', 'still', 'must', 'sim', 'card', 'phone', 'activ', 'phone', 'not', 'come', 'one', 'purchas', 'card', 'amazon', 'without', 'one', 'not', 'get', 'past', 'welcom', 'screen', 'new', 'iphon', 'setup', 'process', 'make', 'emerg', 'call', 'would', 'nice', 'includ', 'disclaim', 'effect', 'slight', 'nuisanc', 'phone', 'otherwis', 'work', 'perfect'], ['satisfi', 'purchas', 'would', 'recommend', 'anyon', 'also', 'ship', 'amaz'], ['upgrad', 'issu', 'phone', 'not', 'come', 'sim', 'card', 'nice', 'guy', 'call', 'att', 'told', 'phone', 'work', 'like', 'charm', 'happi', 'phone', 'excel', 'shape', 'one', 'minor', 'blemish', 'easili', 'ignor', 'cover', 'spark', 'phone', 'case'], ['phone', 'right', 'size', 'fast', 'purchas', 'son', 'birthday', 'happi', 'phone', 'son', 'prefer', 'smaller', 'phone', 'work', 'larger', 'one', 'like', 'iphon', 'big', 'tast'], ['phone', 'bit', 'quirki', 'i', 'would', 'hope', 'touchscreen', 'seem', 'lose', 'letter', 'motion', 'think', 'weird', 'hope', 'get', 'better', 'next', 'updat'], ['look', 'good', 'batteri', 'shot', 'not', 'charg', 'fast', 'stuck', 'christma', 'money', 'not', 'buy', 'use', 'took', 'hour', 'half', 'sprint', 'store', 'get', 'updat', 'load'], ['love', 'deliv', 'day', 'thank'], ['come', 'without', 'charger', 'headphon'], ['good'], ['fantast'], ['phone', 'work', 'realli', 'good', 'condit', 'reason', 'not', 'give', 'star', 'order', 'silver', 'iphon', 'reciev', 'space', 'grey', 'iphon'], ['got', 'daughter', 'birthday', 'list', 'good', 'condit', 'practic', 'brand', 'new', 'not', 'box', 'super', 'fast', 'ship', 'thank'], ['purchas', 'phone', 'use', 'use', 'past', 'month', 'recommend', 'phone', 'price', 'good', 'cameratouch', 'id', 'accur', 'convenientgood', 'inch', 'sizefast', 'processorpurchas', 'year', 'use', 'still', 'work', 'wellit', 'run', 'io', 'home', 'button', 'work', 'small', 'click', 'appl', 'nfc'], ['not', 'search', 'iphon', 'search', 'iphon', 'gsm', 'unlock', 'present', 'cdma', 'iphon', 'specif', 'whether', 'cdma', 'someth', 'els', 'reach', 'seller', 'whether', 'phone', 'gsm', 'not', 'learnt', 'cdma', 'poor', 'search', 'categori', 'item'], ['good'], ['perman', 'lock', 'sprint', 'travel', 'differ', 'countri', 'not', 'abl', 'use', 'inform', 'miss', 'time', 'purchas'], ['comment', 'everyth', 'perfect'], ['amaz', 'came', 'earlier', 'expect', 'exact', 'explain'], ['advertis', 'refurbish', 'phone', 'use', 'not', 'refurbish', 'refurbish', 'almost', 'alway', 'new', 'definit', 'fulli', 'test', 'rigor', 'test', 'new', 'product', 'howev', 'phone', 'scratch', 'microphon', 'not', 'work', 'other', 'muffl'], ['great', 'item', 'thank', 'nice', 'deal'], ['great'], ['mine', 'work', 'perfect', 'yet', 'find', 'scratch', 'screen', 'great', 'condit', 'plus', 'song', 'ton', 'app', 'phone', 'still', 'gb', 'free', 'space', 'extrem', 'pleas'], ['fingerprint', 'reader', 'not', 'work'], ['great', 'phone', 'realli', 'easi', 'use', 'i', 'realli', 'flad', 'chose', 'phone', 'amaz', 'phone'], ['bought', 'gift', 'daughter', 'far', 'love', 'fast', 'deliveri'], ['worst', 'thing', 'ever', 'order', 'home', 'think', 'go', 'abl', 'use', 'turn', 'wrong', 'carrier', 'describ', 'ad', 'upset', 'first', 'time', 'someth', 'like', 'ever', 'happen'], ['best', 'qualiti', 'use', 'phone'], ['bought', 'son', 'love', 'want', 'one', 'long', 'time', 'price', 'reason', 'appl', 'store'], ['perfect'], ['love', 'love', 'love'], ['son', 'purchas', 'phone', 'august', 'taken', 'extrem', 'good', 'care', 'phone', 'not', 'let', 'anyth', 'come', 'contact', 'except', 'phone', 'case', 'charger', 'cord', 'month', 'day', 'later', 'phone', 'crash', 'faulti', 'logic', 'board', 'phone', 'new', 'advertis', 'unabl', 'return', 'exchang', 'would', 'like', 'know', 'get', 'contact', 'seller', 'refund', 'son', 'debit', 'card', 'without', 'phone'], ['write', 'review', 'phone', 'love', 'alway', 'use', 'samsung', 'lg', 'product', 'sinc', 'got', 'first', 'cell', 'phone', 'smart', 'phone', 'came', 'scene', 'wait', 'becom', 'afford', 'general', 'tight', 'public', 'admit', 'first', 'smart', 'phone', 'iphon', 'alreadi', 'discontinu', 'free', 'renew', 'contract', 'easi', 'use', 'instant', 'hook', 'year', 'old', 'not', 'comput', 'illiter', 'alway', 'love', 'photographi', 'would', 'often', 'take', 'pictur', 'sunris', 'way', 'home', 'work', 'peopl', 'facebook', 'could', 'not', 'believ', 'pic', 'taken', 'iphon', 'xperia', 'came', 'megapixel', 'want', 'fuze', 'togeth', 'thought', 'perfect', 'option', 'wrong', 'within', 'month', 'scour', 'internet', 'look', 'anoth', 'iphon', 'found', 'phone', 'instant', 'pull', 'box', 'love', 'solid', 'balanc', 'feel', 'not', 'heavi', 'heavi', 'solid', 'reassur', 'feel', 'eas', 'use', 'oppos', 'android', 'phone', 'still', 'amaz', 'pictur', 'decent', 'kept', 'xperia', 'camera', 'hate', 'carri', 'phone', 'around', 'especi', 'sinc', 'xperia', 'bulki', 'heavi', 'compact', 'version', 'not', 'afford', 'chang', 'phone', 'whenev', 'someon', 'get', 'good', 'idea', 'iphon', 'easi', 'use', 'not', 'get', 'launcher', 'overload', 'everyth', 'thing', 'need', 'except', 'camera', 'thing'], ['awesom', 'thank'], ['well'], ['yes', 'i', 'happi', 'outcom', 'thank', 'happi'], ['work', 'good', 'thank'], ['phone', 'sold', 'new', 'not', 'activ', 'month', 'earli', 'could', 'not', 'activ', 'appl', 'itun', 'theregot', 'feel', 'time', 'snd', 'money', 'wast'], ['phone', 'fine', 'much', 'better', 'price', 'att'], ['love', 'iphon'], ['love', 'never', 'iphon', 'glad', 'bought', 'one', 'like', 'new', 'seen', 'other', 'like', 'sale', 'got', 'great', 'deal'], ['phone', 'stolen', 'need', 'send', 'back'], ['great', 'phone', 'time', 'defect', 'bought', 'se', 'could', 'not', 'happier'], ['happi', 'everyth', 'thank', 'much'], ['batteri', 'dead'], ['camera', 'crack', 'not', 'state', 'hand'], ['came', 'without', 'sim', 'card', 'peopl', 'buy', 'phone', 'brand', 'new', 'reimburs', 'spend', 'take', 'get', 'activ', 'time', 'near', 'appl', 'store', 'would', 'gone', 'get', 'one', 'free', 'sinc', 'suppos', 'come', 'phone', 'stop', 'charg', 'keep', 'start', 'shut', 'immedi', 'not', 'hold', 'charg'], ['excel', 'product'], ['great', 'seller', 'great', 'phone'], ['month', 'use', 'iphon', 'still', 'work', 'fine', 'problem', 'fast', 'ship', 'thank'], ['stolen', 'block', 'phone', 'good', 'thing', 'abl', 'return', 'full', 'refund'], ['product', 'last', 'half', 'month', 'softwar', 'crash', 'back', 'squar', 'one'], ['everyth', 'expect', 'good', 'condit', 'work', 'setup', 'glad', 'purchas', 'use', 'phone'], ['amaz', 'work', 'great', 'love'], ['good'], ['perfect', 'condit'], ['perfect', 'condit', 'thank'], ['given', 'time', 'submit', 'feedback', 'happi', 'say', 'phone', 'great', 'arriv', 'expect', 'excel', 'condit', 'troubl', 'get', 'activ', 'except', 'usual', 'verizon', 'hassl', 'troubl', 'transfer', 'old', 'phone', 'googl', 'verizon', 'phone', 'work', 'great', 'tini', 'tini', 'problem', 'p', 'get', 'stuck', 'someth', 'push', 'screen', 'coupl', 'time', 'appear', 'great', 'would', 'buy', 'happi', 'custom'], ['work', 'fine'], ['got', 'quick', 'great', 'phone', 'workabl'], ['far', 'phone', 'good', 'condit', 'like'], ['got', 'time', 'like', 'much', 'lot', 'easier', 'use', 'android'], ['phone', 'warranti', 'abl', 'replac', 'sever', 'time', 'appl', 'howev', 'fact', 'replac', 'much', 'use', 'phone', 'not', 'get', 'pic', 'messag', 'imessag', 'use', 'page', 'plus', 'coverag', 'decent', 'area', 'use', 'verizon', 'overal', 'prepaid', 'verizon', 'coverag', 'decent', 'howev', 'fact', 'replac', 'phone', 'appl', 'sever', 'time', 'annoy', 'appreci', 'abil', 'year', 'warranti'], ['onlin', 'thing', 'not', 'come', 'verizon', 'sim', 'card', 'like', 'descript', 'lead', 'believ', 'fast', 'ship', 'phone', 'brand', 'new', 'expect', 'wait', 'sim', 'card', 'enjoy'], ['nice', 'phone', 'great', 'shape', 'advertis'], ['appl', 'iphon', 'verizon', 'wireless', 'space', 'gray', 'bought', 'iphon', 'secondari', 'seller', 'quit', 'hesit', 'even', 'though', 'photo', 'phone', 'never', 'purchas', 'anyth', 'not', 'amazon', 'glad', 'say', 'not', 'disappoint', 'phone', 'purchas', 'match', 'descript', 'everyth', 'hope', 'phone', 'not', 'visibl', 'scratch', 'could', 'see', 'complain', 'could', 'tell', 'previous', 'owner', 'took', 'good', 'care', 'got', 'packag', 'right', 'time', 'excel', 'upgrad', 'iphon', 'definit', 'recommend', 'purchas', 'valeri', 'seller', 'sweet', 'left', 'nice', 'note', 'along', 'phone', 'see', 'concern', 'would'], ['met', 'criteria'], ['excel', 'condit'], ['oper', 'system', 'fail', 'within', 'month', 'beyond', 'repair', 'warranti', 'seller', 'day', 'unfriend', 'polici', 'expens', 'item', 'one', 'expect', 'last', 'least', 'coupl', 'year', 'not', 'recommend'], ['call', 'verizon', 'activ', 'phone', 'not', 'actual', 'unabl', 'activ', 'network', 'not', 'use', 'phone'], ['telephon', 'good', 'practic', 'normal', 'origin', 'box', 'headset', 'charger', 'new', 'appear', 'said', 'perfect', 'oh', 'like'], ['verizon', 'indic', 'phone', 'not', 'compat', 'system'], ['phone', 'not', 'work'], ['first', 'smartphon', 'take', 'time', 'learn', 'use', 'goe', 'dead', 'hour', 'limit', 'use', 'suck', 'phone', 'list', 'look', 'good', 'work', 'good', 'guess'], ['thank'], ['iphon', 'arriv', 'seal', 'box', 'everyth', 'perfect', 'need', 'mine', 'verizon', 'wireless', 'not', 'say', 'unlock', 'not', 'phone', 'accessori', 'suppos', 'come', 'everyth', 'work', 'well', 'pleas'], ['product', 'near', 'perfect', 'condit', 'amaz', 'price', 'thank'], ['work', 'good', 'thing', 'bad', 'not', 'get', 'proper', 'charger', 'devic', 'expect', 'buy', 'self'], ['phone', 'flawlesslook', 'brand', 'new'], ['work', 'fine', 'far'], ['phone', 'fine', 'first', 'two', 'week', 'constant', 'shut', 'power', 'button', 'got', 'stuck', 'took', 'phone', 'appl', 'said', 'toast', 'abl', 'return', 'phone', 'amazon', 'though', 'full', 'refund', 'end', 'buy', 'new', 'wireless', 'provid'], ['perfect'], ['arriv', 'super', 'fast', 'glad', 'purchas', 'not', 'complain'], ['not', 'iphon', 'fan', 'bought', 'one', 'meet', 'expect', 'camera', 'featur', 'strorag', 'space', 'easi', 'access', 'app', 'easi', 'use', 'featur', 'not', 'like', 'itun', 'inconvi', 'download', 'music', 'rington', 'phone', 'transfer', 'comput', 'back', 'phone', 'remov', 'particular', 'app', 'phone', 'great', 'phone'], ['good'], ['great', 'condit', 'problem'], ['great', 'phone', 'work', 'well', 'game', 'new', 'perfect', 'mint', 'condit', 'right', 'size', 'phone', 'samsung', 'galaxi', 'would', 'not', 'fit', 'pocket', 'phone', 'lightn', 'fastsync', 'itun', 'automat', 'not', 'say', 'enough', 'good', 'thing', 'seller', 'ship', 'fast', 'issu'], ['work', 'fine', 'like', 'two', 'week', 'stop', 'work', 'go', 'appl', 'store', 'get', 'replac', 'lucki', 'warranti'], ['return', 'phone', 'day', 'phone', 'phone', 'becam', 'block', 'could', 'not', 'use', 'phone', 'came', 'servic', 'could', 'not', 'not', 'use', 'call', 'text'], ['great', 'iphon'], ['good', 'phone', 'good', 'condit', 'recent', 'discov', 'iphon', 'not', 'also', 'not', 'come', 'stock', 'earbud', 'expens', 'fals', 'advertis'], ['person', 'scam', 'artist', 'bought', 'phone', 'everyth', 'work', 'great', 'report', 'payment', 'not', 'made', 'imi', 'block', 'person', 'know', 'exact', 'crimin'], ['touch', 'screen', 'not', 'work', 'sent', 'back', 'wait', 'new', 'one', 'return'], ['found', 'minor', 'cosmet', 'issu', 'work', 'fine'], ['got', 'time', 'packag', 'not', 'great', 'phone', 'perfect', 'brand', 'new', 'even', 'use', 'flaw', 'work', 'perfect', 'fine'], ['phone', 'goe', 'also', 'say', 'batteri', 'charg', 'goe', 'dead', 'anytim', 'never', 'purchas', 'phone', 'person', 'ever', 'brought', 'daughter', 'not', 'call', 'time', 'phone', 'goe', 'dead', 'batteri', 'say'], ['gostei'], ['well', 'work', 'great', 'much', 'lower', 'price', 'phone', 'provid'], ['i', 'real', 'happi', 'iphon', 'work', 'great', 'lot', 'featur', 'upgrad', 'better', 'phone', 'love', 'track', 'system', 'amazon', 'offer', 'know', 'exact', 'go', 'receiv'], ['appl', 'iphon', 'verizon', 'wireless', 'space', 'gray', 'bought', 'iphon', 'secondari', 'seller', 'quit', 'hesit', 'even', 'though', 'photo', 'phone', 'never', 'purchas', 'anyth', 'not', 'amazon', 'glad', 'say', 'not', 'disappoint', 'phone', 'purchas', 'match', 'descript', 'everyth', 'hope', 'phone', 'not', 'visibl', 'scratch', 'could', 'see', 'complain', 'could', 'tell', 'previous', 'owner', 'took', 'good', 'care', 'got', 'packag', 'right', 'time', 'excel', 'upgrad', 'iphon', 'definit', 'recommend', 'purchas', 'valeri', 'seller', 'sweet', 'left', 'nice', 'note', 'along', 'phone', 'see', 'concern', 'would'], ['came', 'like', 'would', 'get', 'store', 'instead', 'come', 'front', 'door', 'love', 'iphon'], ['awesom'], ['replac', 'wife', 'broken', 'phone', 'new', 'great', 'shape'], ['excel', 'item', 'survivor', 'vendor', 'realli', 'help', 'knowledg', 'subject'], ['well', 'unfortun', 'phone', 'went', 'swim', 'forc', 'decid', 'buy', 'new', 'phone', 'buy', 'use', 'one', 'got', 'iphon', 'mint', 'condit', 'less', 'ship', 'door', 'step', 'day', 'pleas', 'would', 'high', 'recommend', 'phone', 'anybodi', 'face', 'situat'], ['nice', 'phone', 'great', 'shape', 'advertis'], ['better', 'expect', 'day', 'far', 'good'], ['may', 'say', 'new', 'screen', 'replac', 'third', 'parti', 'aftermarket', 'screen', 'not', 'refus', 'servic', 'iphon', 'aftemarket', 'screen'], ['met', 'expect'], ['great', 'refurbish', 'product', 'great', 'price', 'bought', 'cow', 'sinc', 'verizon', 'wireless', 'store', 'refurbish', 'equival', 'expens', 'price', 'bought', 'phone', 'ad', 'exist', 'plan', 'versus', 'get', 'discount', 'new', 'phone', 'verizon', 'sinc', 'would', 'forc', 'new', 'plan', 'cost', 'phone', 'buy', 'phone', 'cell', 'cow', 'via', 'amazon', 'liter', 'pay', 'phone', 'instead', 'higher', 'cost', 'new', 'verizon', 'wireless', 'plan', 'calcul', 'first', 'month', 'phone', 'work', 'great', 'issu', 'high', 'recommend', 'use', 'wife', 'replac', 'droid'], ['flashlight', 'die', 'pretti', 'quick', 'kind', 'stunk', 'fantast'], ['need', 'upgrad', 'iphon', 'not', 'sure', 'go', 'turn', 'found', 'decent', 'price', 'comparison', 'everyth', 'want', 'love', 'iphon'], ['charg', 'cord', 'came', 'suck', 'fri', 'week', 'bare', 'use', 'realli', 'poor', 'qualiti', 'also', 'phone', 'volum', 'button', 'jam', 'bare', 'even', 'use', 'use', 'earphon', 'adjust', 'volum', 'would', 'not', 'buy', 'got', 'new', 'realli', 'caus', 'problem', 'alreadi'], ['great', 'phone'], ['batteri', 'defect'], ['screen', 'coupl', 'glitch', 'bright', 'initi', 'seem', 'resolv', 'work', 'well', 'would', 'purchas', 'new', 'phone', 'seller'], ['first', 'smartphon', 'take', 'time', 'learn', 'use', 'goe', 'dead', 'hour', 'limit', 'use', 'suck', 'phone', 'list', 'look', 'good', 'work', 'good', 'guess'], ['love', 'phone'], ['excel', 'deal', 'got', 'exact', 'advertis', 'like', 'new', 'condit', 'posit', 'experi', 'thank'], ['purchas', 'iphon', 'masstechtron', 'unsatisfi', 'post', 'said', 'problem', 'phone', 'got', 'phone', 'alreadi', 'problem', 'keep', 'freez', 'turn', 'everi', 'time', 'tri', 'text', 'someon', 'tri', 'type', 'time', 'social', 'media', 'scroll', 'post', 'like', 'thing', 'fix', 'lock', 'unlock', 'screen', 'everi', 'second', 'time', 'not', 'even', 'unlock', 'screen', 'restart', 'phone', 'sometim'], ['mean', 'iphon', 'easi', 'use', 'sleek', 'sync', 'macbook', 'pro', 'everyth', 'need', 'color', 'way', 'brighter', 'vivid', 'actual', 'put', 'time', 'dread', 'get', 'text', 'someon', 'not', 'use', 'imessag', 'green', 'bright', 'slimmer', 'smaller', 'part', 'general', 'appeal', 'taken', 'get', 'use', 'camera', 'back', 'way', 'better', 'not', 'taken', 'mani', 'pictur', 'one', 'awesom', 'took', 'great', 'one', 'feel', 'like', 'option', 'custom', 'one', 'even', 'though', 'without', 'jailbreak', 'phone', 'still', 'pretti', 'standard', 'appl', 'stuff', 'shove', 'app', 'not', 'like', 'folder', 'never', 'touch'], ['noth', 'wrong', 'arriv', 'quick', 'wait', 'coupl', 'week', 'get', 'sign', 'verizon', 'everyth', 'seem', 'work', 'fine'], ['ok'], ['good', 'purchas', 'batteri', 'life', 'not', 'good', 'hope', 'sometim', 'die', 'left', 'go', 'price', 'got', 'not', 'realli', 'expect', 'perfect', 'problem'], ['phone', 'came', 'small', 'box', 'surround', 'bubbl', 'rap', 'first', 'check', 'batter', 'life', 'thought', 'ok', 'last', 'day', 'die', 'bought', 'plan', 'sim', 'card', 'accessori', 'set', 'phone', 'began', 'die', 'less', 'hour', 'small', 'scratch', 'hard', 'notic', 'not', 'laggi', 'ever', 'annoy', 'spend', 'new', 'batteri', 'kit', 'annoy'], ['first', 'smartphon', 'take', 'time', 'learn', 'use', 'goe', 'dead', 'hour', 'limit', 'use', 'suck', 'phone', 'list', 'look', 'good', 'work', 'good', 'guess'], ['phone', 'exact', 'advertis'], ['product', 'came', 'seal', 'box', 'like', 'describ', 'everyth', 'work', 'great', 'love', 'iphon'], ['pleas', 'purchas', 'detail', 'phone', 'note', 'minor', 'scratch', 'receiv', 'phone', 'look', 'brand', 'new', 'came', 'new', 'accessori', 'high', 'recommend'], ['chang'], ['great'], ['choos', 'star', 'otherwis', 'would', 'zero', 'not', 'like'], ['good'], ['replac', 'wife', 'broken', 'phone', 'new', 'great', 'shape'], ['product', 'almost', 'new', 'not', 'issu', 'love'], ['great', 'think', 'good', 'bad', 'iphon', 'well', 'known', 'not', 'dwell', 'iphon', 'want', 'upgrad', 'newer', 'model', 'storag', 'gb', 'not', 'want', 'get', 'iphon', 'sinc', 'discontinu', 'new', 'model', 'iphon', 'appl', 'way', 'get', 'resel', 'like', 'amazon', 'high', 'recommend', 'amazon', 'warehous', 'deal', 'return', 'not', 'satisfi', 'initi', 'got', 'iphon', 'return', 'without', 'troubl', 'one', 'keep', 'work', 'well', 'suit', 'need'], ['work', 'great', 'i', 'almost', 'six', 'month', 'never', 'issu', 'refurbish'], ['nice', 'phone', 'great', 'shape', 'advertis'], ['phone', 'daughter', 'work', 'perfect', 'sinc', 'bought', 'think', 'month', 'ago', 'seem', 'like', 'buy', 'refurbish', 'phone', 'sometim', 'gambl', 'littl', 'hesit', 'phone', 'arriv', 'quick', 'look', 'brand', 'spankin', 'new', 'call', 'verizon', 'tech', 'support', 'activ', 'easi', 'process', 'troubl', 'buy', 'refurbish', 'iphon', 'great', 'option', 'us', 'not', 'spend', 'ridicul', 'amount', 'money', 'new', 'phone', 'daughter'], ['major', 'con', 'not', 'negoti', 'speaker', 'phone', 'function', 'rough', 'loud', 'need', 'make', 'listen', 'music', 'talk', 'peopl', 'use', 'speaker', 'pointless', 'without', 'bluetooth', 'function', 'not', 'even', 'display', 'devic', 'link', 'complet', 'inoper', 'bluetooth', 'capabilitypro', 'screen', 'littl', 'scratch', 'ding'], ['everyth', 'work', 'fine', 'got', 'finger', 'scan', 'finger', 'print', 'work', 'certain', 'amount', 'time', 'stop', 'work'], ['phone', 'work', 'fine', 'state'], ['not', 'buy', 'phone', 'not', 'new', 'phone', 'jailbroken', 'look', 'new', 'spent', 'hour', 'tri', 'get', 'phone', 'work', 'verizon', 'find', 'actual', 'not', 'brand', 'new', 'actual', 'mess', 'not', 'buy'], ['good', 'phone', 'minor', 'scratch', 'dent', 'work', 'perfect'], ['mobil', 'good', 'awesom', 'price', 'problem', 'far', 'check', 'store', 'clean', 'unlock'], ['good', 'phone', 'good', 'condit', 'recent', 'discov', 'iphon', 'not', 'also', 'not', 'come', 'stock', 'earbud', 'expens', 'fals', 'advertis'], ['exact', 'describ'], ['excel'], ['horribl', 'servic', 'phone', 'not', 'work', 'lock'], ['got', 'exact', 'want', 'scratch', 'crack', 'noth', 'practic', 'brand', 'new'], ['definit', 'worth', 'extra', 'dollar', 'compar', 'fingerprint', 'unlock', 'system', 'clever', 'effect', 'phone', 'may', 'seem', 'smaller', 'imagin', 'opinion', 'not', 'annoy', 'warn', 'would', 'give', 'user', 'interest', 'buy', 'use', 'product', 'pleas', 'take', 'consider', 'batteri', 'life', 'not', 'best'], ['love', 'phone', 'seller', 'solv', 'issu', 'time', 'manner'], ['problem', 'phone', 'came', 'brand', 'new'], ['work', 'well'], ['iphon', 'unlock', 'good', 'phone', 'bad', 'ime', 'att'], ['charger', 'port', 'not', 'work', 'pink', 'shadow', 'screen', 'return', 'glad', 'got', 'money', 'back'], ['excel'], ['good'], ['bad', 'product', 'bought', 'ship', 'phone', 'not', 'work'], ['everyth', 'went', 'great', 'phone', 'great', 'shape', 'work', 'perfect'], ['came', 'state'], ['great', 'custom', 'servic', 'love', 'new', 'phone', 'best', 'part', 'got', 'realli', 'good', 'price', 'place', 'charg', 'almost', 'phone', 'got', 'i', 'pleas', 'thank'], ['not', 'get', 'not', 'get', 'not', 'get'], ['fit', 'purpos', 'arriv', 'describ', 'time'], ['great', 'phone', 'great', 'phone', 'system', 'phone', 'also', 'feel', 'like', 'one', 'part', 'bodi', 'system', 'realli', 'enjoy', 'phone', 'without', 'phone', 'feel', 'like', 'handicap'], ['everyth', 'expect'], ['good'], ['arriv', 'super', 'fast', 'glad', 'purchas', 'not', 'complain'], ['granddaught', 'love'], ['not', 'good'], ['love', 'thx'], ['phone', 'not', 'work', 'correct', 'not', 'get', 'lte', 'finger', 'scan', 'dissent', 'work', 'gps', 'way', 'often', 'drop', 'servic'], ['pleas', 'except', 'batteri', 'not', 'stay', 'charg', 'long', 'think', 'not', 'unusu'], ['item', 'damag'], ['good', 'phone', 'price', 'came', 'box', 'charger', 'headphon'], ['excel'], ['omg', 'good', 'surpris', 'good', 'absolut', 'love', 'far', 'receiv', 'today'], ['admit', 'littl', 'skeptic', 'first', 'purchas', 'phone', 'son', 'realli', 'want', 'one', 'birthday', 'could', 'not', 'afford', 'usual', 'cost', 'took', 'leap', 'faith', 'glad', 'phone', 'scratch', 'none', 'screen', 'son', 'not', 'seem', 'care', 'hook', 'take', 'cell', 'phone', 'carrier', 'got', 'sim', 'card', 'fit', 'put', 'sim', 'took', 'usual', 'new', 'cell', 'phone', 'set', 'good', 'go', 'overal', 'pleas', 'phone', 'son', 'absolut', 'love'], ['exceed', 'expect', 'like', 'new', 'condit', 'understat'], ['bought', 'phone', 'seller', 'garrettr', 'perfect', 'condit', 'abl', 'connect', 'cricket', 'great', 'phone', 'great', 'buy'], ['far', 'iphon', 'goe', 'like', 'far', 'particular', 'one', 'screen', 'sometim', 'unrespons', 'requir', 'restart', 'not', 'downgrad', 'one', 'star', 'quit', 'last', 'night', 'still', 'screen', 'not', 'come', 'return', 'not', 'even', 'wipe', 'not', 'cool'], ['receiv', 'phone', 'alreadi', 'activ', 'anoth', 'person', 'name', 'not', 'put', 'account', 'want', 'either', 'want', 'phone', 'deactiv', 'money', 'back', 'unsatisfi', 'product', 'went', 'three', 'sprint', 'store', 'said', 'thing', 'phone', 'like', 'stolen', 'want', 'money', 'back', 'soon', 'possibl'], ['love', 'new', 'phone'], ['wonder'], ['i', 'write', 'review', 'use', 'phone', 'year', 'easi', 'hook', 'w', 'sprint', 'right', 'box', 'work', 'well', 'sinc', 'dec', 'upgrad', 'new', 'phone', 'not', 'need', 'refurbish', 'phone', 'still', 'function', 'without', 'notic', 'hiccup'], ['good'], ['sound', 'not', 'work', 'proper', 'make', 'hard', 'not', 'hear', 'text', 'messag', 'peopl', 'answer', 'phone', 'first', 'foremost', 'must', 'work', 'phone', 'custom', 'servic', 'great', 'facilit', 'return', 'would', 'nice', 'doubl', 'check', 'everyth', 'ship', 'thing'], ['great', 'purchas', 'daughter', 'love', 'new', 'phone', 'ecstat', 'memori'], ['phone', 'describ', 'awesom', 'deal', 'satisfi', 'custom'], ['product', 'discrib', 'happi', 'purchas'], ['good'], ['seller', 'exagger', 'qualiti', 'bit', 'product', 'still', 'excel', 'buy', 'price', 'set', 'high', 'recommend', 'seller'], ['soo', 'good'], ['broke', 'screen', 'iphon', 'third', 'time', 'decid', 'buy', 'new', 'one', 'not', 'need', 'latest', 'greatest', 'version', 'actual', 'prefer', 'new', 'rather', 'commit', 'month', 'total', 'risk', 'craigslist', 'fiasco', 'chose', 'tri', 'compani', 'satisfi', 'sent', 'profession', 'packag', 'charg', 'readi', 'activ', 'itun', 'swap', 'sim', 'card', 'plug', 'itun', 'readi', 'roll', 'new', 'phone', 'multipoint', 'inspect', 'refurbish', 'process', 'major', 'factor', 'get', 'decid', 'buy', 'plus', 'guarante', 'return', 'within', 'day', 'phone', 'advertis', 'slight', 'scratch', 'honest', 'look', 'brand', 'new', 'not', 'find', 'whatev', 'scratch', 'talk', 'work', 'perfect', 'new', 'compani', 'smart', 'phone', 'replac', 'bye', 'bye', 'best', 'buy', 'line', 'suck', 'price', 'not', 'low', 'enough', 'extend', 'contract', 'time', 'great', 'sourc', 'i', 'realli', 'satisfi', 'custom', 'return', 'famili', 'member', 'futur', 'phone', 'replac', 'need'], ['good'], ['complaint', 'peopl', 'read', 'understand', 'go', 'buy', 'start', 'complain', 'got', 'phone', 'good', 'condit', 'price', 'honest', 'servic'], ['year', 'old', 'daughter', 'select', 'phone', 'order', 'arriv', 'perfect'], ['work', 'great'], ['excel', 'product', 'great', 'custom', 'servic', 'return', 'would', 'recommend', 'would', 'definit', 'buy'], ['greas', 'product'], ['wife', 'iphon', 'die', 'want', 'new', 'one', 'not', 'want', 'commit', 'anoth', 'contract', 'bought', 'new', 'amazon', 'less', 'sprint', 'would', 'charg'], ['realli', 'love', 'gift', 'thank'], ['littl', 'skeptic', 'first', 'receiv', 'phone', 'activ', 'incred', 'happi', 'bought', 'recommend', 'seller', 'anybodi', 'look', 'buy', 'iphon', 'amazon', 'start', 'qualiti', 'sure'], ['horribl'], ['great', 'phone', 'amaz', 'seller', 'polit'], ['phone', 'work', 'great', 'i', 'realli', 'happi', 'bought'], ['phone', 'excel', 'condit', 'describ', 'work', 'great', 'love', 'phone'], ['good'], ['not', 'buy', 'phone', 'within', 'two', 'week', 'own', 'headphon', 'jack', 'alreadi', 'problem', 'phone', 'not', 'charg', 'discov', 'headphon', 'jack', 'problem', 'left', 'earbud', 'not', 'work', 'tri', 'sever', 'pair', 'headphon', 'find', 'jack', 'problem', 'look', 'possibl', 'way', 'solv', 'problem', 'find', 'would', 'replac', 'whole', 'lower', 'part', 'phone', 'second', 'phone', 'began', 'act', 'funki', 'yesterday', 'phone', 'charg', 'check', 'said', 'charg', 'turn', 'phone', 'turn', 'back', 'find', 'right', 'not', 'charg', 'told', 'charger', 'not', 'support', 'accessori', 'phone', 'plug', 'night', 'still', 'not', 'charg', 'not', 'tri', 'differ', 'charger', 'yet', 'not', 'wast', 'money', 'not', 'blame', 'appl', 'i', 'bought', 'direct', 'wonder', 'would', 'not', 'recommend', 'buy', 'seller', 'want', 'iphon', 'save', 'money', 'buy', 'direct', 'appl', 'worth'], ['amaz', 'came', 'earlier', 'expect', 'exact', 'explain'], ['second', 'time', 'i', 'bought', 'iphon', 'onlin', 'wish', 'i', 'would', 'known', 'compani', 'first', 'time', 'around', 'phone', 'exact', 'describ', 'work', 'look', 'perfect', 'would', 'absolut', 'buy', 'thank', 'much'], ['got', 'exact', 'ask', 'far', 'problem'], ['work', 'great', 'good', 'condit'], ['realli', 'like', 'iphon', 'first', 'smart', 'phone', 'not', 'judg', 'accord', 'make', 'learn', 'curv', 'terribl', 'appl', 'tell', 'much', 'use', 'even', 'start', 'assum', 'know', 'basic', 'smart', 'phone', 'appar', 'amazon', 'warehous', 'excel', 'busi'], ['iphon', 'great', 'phone', 'surpris', 'plenti', 'nifti', 'featur', 'camera', 'take', 'excel', 'qualiti', 'photo', 'video', 'meet', 'social', 'media', 'navig', 'need', 'complaint', 'fill', 'fast', 'take', 'lot', 'photo', 'fantast', 'i', 'year', 'expect', 'year', 'come', 'one', 'iphon', 'huge', 'like', 'size'], ['phone', 'exact', 'expect', 'earpod', 'not', 'work', 'seller', 'replac', 'prompt', 'contact'], ['bought', 'use', 'minor', 'scratch', 'impress'], ['gave', 'everyth', 'yhey', 'said', 'go', 'give', 'also', 'gave', 'pic', 'imei', 'number', 'verifi', 'unlock'], ['great', 'iphoneno', 'problem'], ['exact', 'list', 'great', 'custom', 'servic'], ['love', 'phone', 'great', 'condit', 'iphon', 'not', 'pay', 'not', 'ship', 'qualiti', 'phone', 'great', 'want'], ['phone', 'got', 'decent', 'visual', 'condit', 'howev', 'batteri', 'not', 'last', 'hour', 'use', 'also', 'day', 'speaker', 'stop', 'work', 'buyer', 'bewar', 'junk', 'refurbish', 'phone'], ['excel', 'phone', 'qualiti', 'built', 'phone', 'appl', 'want', 'anoth', 'appl', 'chose', 'one', 'i', 'glad', 'love', 'pleas', 'advis', 'phone', 'list', 'new', 'must', 'arriv', 'origin', 'box', 'factori', 'seal', 'appl', 'white', 'appl', 'box', 'arriv', 'without', 'factori', 'seal', 'consid', 'use', 'not', 'head', 'futur', 'buyer'], ['disapiont', 'i', 'australia', 'fone', 'not', 'use', 'understood', 'fone', 'lock', 'sprint', 'would', 'axept', 'oversea', 'sim', 'use', 'side', 'state', 'stuck', 'fone', 'carrier', 'not', 'unlock'], ['i', 'phone', 'two', 'month', 'absolut', 'love', 'great', 'phone', 'one', 'problem', 'though', 'bright', 'sometim', 'chang', 'even', 'turn', 'great', 'phone'], ['could', 'not', 'happier', 'product', 'receiv', 'two', 'day', 'came', 'perfect', 'box', 'everyth', 'wrap', 'like', 'brand', 'new', 'got', 'headphon', 'charger', 'iphon', 'perfect', 'i', 'wait', 'receiv', 'sim', 'card', 'sprint', 'everyth', 'fine', 'could', 'not', 'happier', 'product', 'i', 'would', 'definit', 'order'], ['good', 'phone'], ['sprint', 'refus', 'activ', 'phone', 'plan', 'end', 'return', 'phone', 'appear', 'unus', 'origin', 'box', 'howev', 'not', 'appl', 'factori', 'seal', 'box', 'appar', 'not', 'new'], ['excel', 'product', 'great', 'custom', 'servic', 'return', 'would', 'recommend', 'would', 'definit', 'buy'], ['nice', 'one', 'bad', 'thing', 'not', 'includ', 'accessari'], ['great', 'phone'], ['said', 'new', 'phone', 'scratch', 'not', 'get', 'touch', 'said', 'unlock', 'not', 'true'], ['came', 'lock', 'not', 'get', 'still', 'set', 'ass', 'phone', 'need', 'inform', 'get'], ['year', 'old', 'daughter', 'select', 'phone', 'order', 'arriv', 'perfect'], ['order', 'phone', 'think', 'sprint', 'phone', 'went', 'activ', 'sprint', 'network', 'not', 'actual', 'sprint', 'phone', 'frustrat'], ['like', 'iphon', 'easi', 'use', 'noth', 'complic', 'fast', 'smoothiphon', 'batteri', 'good', 'alsoexcel', 'comput', 'mac', 'os', 'x', 'icloud'], ['daughter', 'love'], ['purchas', 'item', 'around', 'two', 'month', 'ago', 'first', 'screen', 'not', 'work', 'proper', 'ithought', 'nice', 'new', 'screen', 'could', 'not', 'get', 'oil', 'idiot', 'excus', 'put', 'screen', 'protector', 'work', 'fine', 'fast', 'forward', 'two', 'month', 'screen', 'random', 'die', 'went', 'repair', 'shop', 'said', 'two', 'screw', 'miss', 'indic', 'someon', 'work', 'phone', 'essenti', 'put', 'bad', 'part', 'onto', 'phone', 'resel'], ['deliv', 'fast', 'everyth', 'promis', 'satisfi'], ['came', 'describ'], ['phone', 'purchas', 'lock', 'not', 'use'], ['good', 'phone'], ['far', 'phone', 'exact', 'want', 'nice', 'get', 'iphon', 'lower', 'price', 'not', 'big', 'buck', 'time', 'phone', 'glitch', 'work', 'restart', 'overal', 'want'], ['good'], ['great', 'product'], ['great'], ['phone', 'would', 'not', 'turn', 'not', 'charg', 'unfortun', 'not', 'open', 'day', 'recours', 'disappoint'], ['pleas'], ['realli', 'good', 'sometim', 'not', 'find', 'good', 'signal', 'not', 'know', 'cellphon', 'carrier', 'product', 'amaz', 'found'], ['product', 'exact', 'describ', 'like', 'new', 'origin', 'packag', 'accessori'], ['excel', 'condit', 'iemi', 'clean', 'icould', 'unlock'], ['great'], ['good'], ['littl', 'skeptic', 'first', 'receiv', 'phone', 'activ', 'incred', 'happi', 'bought', 'recommend', 'seller', 'anybodi', 'look', 'buy', 'iphon', 'amazon', 'start', 'qualiti', 'sure'], ['problem', 'happi', 'phone', 'smooth', 'transact', 'thank'], ['order', 'iphon', 'got', 'iphon', 'not', 'cool'], ['love', 'form', 'factor', 'right', 'size', 'need', 'larg', 'someon', 'usual', 'keep', 'phone', 'pocket', 'extra', 'memori', 'mean', 'i', 'never', 'run', 'room', 'app', 'pic', 'plenti', 'fast', 'even', 'new', 'os'], ['son', 'purchas', 'phone', 'august', 'taken', 'extrem', 'good', 'care', 'phone', 'not', 'let', 'anyth', 'come', 'contact', 'except', 'phone', 'case', 'charger', 'cord', 'month', 'day', 'later', 'phone', 'crash', 'faulti', 'logic', 'board', 'phone', 'new', 'advertis', 'unabl', 'return', 'exchang', 'would', 'like', 'know', 'get', 'contact', 'seller', 'refund', 'son', 'debit', 'card', 'without', 'phone'], ['good', 'product'], ['daughter', 'love', 'fingerprint', 'access', 'instead', 'use', 'code'], ['well'], ['great', 'product'], ['got', 'daughter', 'birthday', 'list', 'good', 'condit', 'practic', 'brand', 'new', 'not', 'box', 'super', 'fast', 'ship', 'thank'], ['iphon', 'arriv', 'time', 'flawless'], ['good', 'deal'], ['new', 'iphon', 'arriv', 'ahead', 'schedul', 'iphon', 'arriv', 'good', 'condit', 'without', 'incid', 'price', 'purchas', 'iwatch', 'thank', 'jame', 'thom'], ['took', 'phone', 'sprint', 'store', 'activ', 'kept', 'get', 'error', 'messag', 'not', 'recogn', 'sprint', 'network', 'could', 'not', 'activ', 'tri', 'get', 'help', 'appl', 'onlin', 'technic', 'support', 'phone', 'expir', 'regret', 'buy', 'seller', 'unlimit', 'wireless', 'return', 'phone'], ['great'], ['phone', 'store', 'twice', 'help', 'appl', 'support', 'may', 'serious', 'problem', 'not', 'sure', 'iif', 'send', 'back', 'give', 'time'], ['good', 'like', 'much'], ['love', 'perfect', 'arriv', 'iphon', 'great', 'happi', 'arriv', 'time', 'would', 'recommend', 'seller'], ['not', 'good', 'old', 'need', 'may', 'mani', 'back', 'pleas'], ['love'], ['not', 'new'], ['deliv', 'expect', 'within', 'expect', 'timefram'], ['hesit', 'purchas', 'phone', 'i', 'glad', 'phone', 'got', 'day', 'earlier', 'expect', 'look', 'almost', 'new', 'everyth', 'work', 'great', 'came', 'charg', 'cabl', 'happi', 'purchas'], ['great'], ['phone', 'fine', 'much', 'better', 'price', 'att'], ['screen', 'spotless', 'phone', 'almost', 'flawless', 'happi', 'purchas', 'would', 'buy'], ['great', 'price'], ['hi', 'order', 'phone', 'arriv', 'day', 'late', 'plug', 'everyth', 'seem', 'normal', 'charger', 'come', 'begin', 'melt', 'weird', 'plug', 'new', 'charger', 'melt', 'notic', 'take', 'hour', 'complet', 'charg', 'phone', 'phone', 'not', 'even', 'hold', 'charg', 'leav', 'home', 'everi', 'morn', 'catch', 'bus', 'go', 'school', 'use', 'phone', 'music', 'mayb', 'phone', 'call', 'phone', 'dead', 'email', 'compani', 'tri', 'fix', 'situat', 'straight', 'ignor', 'terribl', 'compani', 'terribl', 'product', 'wish', 'ciuld', 'give', 'star'], ['good'], ['nice', 'product'], ['second', 'time', 'i', 'bought', 'iphon', 'onlin', 'wish', 'i', 'would', 'known', 'compani', 'first', 'time', 'around', 'phone', 'exact', 'describ', 'work', 'look', 'perfect', 'would', 'absolut', 'buy', 'thank', 'much'], ['came', 'time', 'work', 'like', 'charm'], ['perfect'], ['phone', 'not', 'turn', 'plain', 'simpl', 'birthday', 'gift', 'son', 'excit', 'receiv', 'phone', 'disappoint', 'not', 'work'], ['excelent'], ['wish', 'appl', 'would', 'put', 'instruct', 'reli', 'spous', 'inform', 'old', 'fell', 'ow', 'like'], ['lot', 'scracht', 'bad', 'condit'], ['advertis', 'new', 'took', 'appl', 'batteri', 'deplet', 'month', 'refus', 'work', 'batteri', 'third', 'parti', 'mani', 'button', 'inner', 'work', 'not', 'advertis'], ['excel'], ['receiv', 'iphon', 'day', 'earli', 'practic', 'brand', 'new'], ['suspic', 'first', 'decid', 'take', 'chanc', 'phone', 'arriv', 'brand', 'new', 'condit', 'accessori', 'everyth', 'seal', 'plastic', 'protector', 'consid', 'price', 'amaz', 'deal', 'probabl', 'get', 'one', 'ebay', 'usual', 'not', 'includ', 'accessori', 'phone', 'new', 'condit', 'whatev', 'took', 'minut', 'phone', 'not', 'come', 'logo', 'though', 'not', 'sure', 'actual', 'made', 'carrier', 'even', 'oversea', 'far', 'good', 'updat', 'month', 'anybodi', 'almost', 'month', 'everyth', 'still', 'good', 'daughter', 'love', 'game', 'wife', 'satisfi', 'batteri', 'life', 'curios', 'check', 'esn', 'appl', 'websit', 'glad', 'found', 'warranti', 'next', 'juli', 'guess', 'got', 'good', 'luck'], ['excel', 'product', 'fast', 'deliveri', 'recomenden'], ['new', 'box', 'batteri', 'beyond', 'dead', 'took', 'minut', 'charg', 'batter', 'icon', 'appear', 'phone', 'came', 'aliv', 'half', 'way', 'charg', 'work', 'great', 'insert', 'sim', 'hard', 'push', 'paper', 'clip', 'open', 'slot', 'call', 'gave', 'phone', 'serial', 'number', 'instruct', 'show', 'display', 'number', 'sim', 'serial', 'number', 'work', 'great', 'nice', 'size', 'phone', 'phone', 'keep', 'get', 'bigger', 'phone', 'great', 'display', 'fit', 'comfort', 'hand'], ['work', 'fine', 'like', 'two', 'week', 'stop', 'work', 'go', 'appl', 'store', 'get', 'replac', 'lucki', 'warranti'], ['exact', 'describ', 'great', 'buy'], ['great', 'phone'], ['glitch', 'alot'], ['phone', 'not', 'unlock', 'appar', 'work', 'brazil'], ['good', 'one'], ['batteri', 'not', 'last', 'longer', 'hour', 'someth', 'wrong', 'circuitri', 'insid', 'phone', 'took', 'appl', 'store', 'appl', 'tech', 'inform', 'batteri', 'offici', 'fail', 'would', 'replac', 'phone'], ['i', 'guess', 'one', 'japanes', 'one', 'not', 'use', 'wifi', 'without', 'sim', 'card', 'see', 'work', 'everi', 'way', 'not', 'afford', 'sim', 'card', 'right', 'chang', 'review', 'get', 'sim', 'check', 'not', 'even', 'know', 'got', 'gig', 'matter'], ['bought', 'like', 'new', 'not', 'refurbish', 'sudden', 'stop', 'work'], ['came', 'good', 'condit', 'not', 'got', 'turn', 'yet', 'crack', 'scratch'], ['nice'], ['product', 'absolut', 'perfect', 'definit', 'worth', 'buy'], ['great', 'phone', 'minor', 'scratch', 'work', 'like', 'charm', 'still', 'mint', 'condit', 'meet', 'descript', 'i', 'look'], ['camera', 'volum', 'not', 'work'], ['came', 'expect'], ['everyth', 'good', 'tx'], ['love', 'work', 'great', 'tracfon', 'carrier'], ['sum', 'comparison', 'phonepro', 'look', 'good', 'workscon', 'need', 'extern', 'backup', 'batteri', 'last', 'work', 'dayne', 'protector', 'casene', 'screen', 'protectorne', 'money', 'app', 'monopolistmi', 'old', 'phone', 'not', 'need'], ['awesom'], ['purchas', 'phone', 'gift', 'wife', 'pleas'], ['good', 'product', 'grandson', 'proud'], ['idk'], ['phone', 'sprint', 'prepaid'], ['got', 'realli', 'great', 'condit'], ['great', 'overal'], ['great', 'custom', 'servic', 'support', 'phone', 'look', 'work', 'great', 'activ', 'new', 'phone', 'eas', 'took', 'impress', 'overal', 'purchas'], ['year', 'use', 'screen', 'turn', 'grey', 'not', 'respond'], ['quaili', 'phone', 'cheap', 'prive'], ['lock', 'sprint', 'not', 'clear', 'describ'], ['phone', 'came', 'good', 'condit'], ['phone', 'look', 'work', 'great'], ['order', 'phone', 'expect', 'abl', 'connect', 'sprint', 'unfortun', 'not', 'happen', 'could', 'not', 'connect', 'sprint', 'still', 'attach', 'someon', 'els', 'account', 'although', 'offer', 'refund', 'not', 'phone', 'stock', 'substitut', 'one', 'fail', 'make', 'oper', 'bought', 'anoth', 'iphon', 'elsewher', 'wonder'], ['phone', 'sprint', 'unlock', 'basic'], ['bought', 'phone', 'clear', 'state', 'compat', 'sprint', 'call', 'sprint', 'tell', 'not', 'case', 'wast', 'time'], ['work', 'like', 'charm', 'good', 'new'], ['return', 'longer', 'need'], ['nice'], ['could', 'not', 'hear', 'good', 'phone'], ['order', 'sever', 'month', 'ago', 'save', 'money', 'got', 'good', 'phone'], ['item', 'appear', 'slight', 'use', 'not', 'brand', 'new', 'box', 'advertis', 'box', 'not', 'seal', 'open', 'sim', 'card', 'instal', 'nevertheless', 'accept'], ['item', 'arriv', 'quick', 'describ', 'nice', 'appl', 'packag', 'phone', 'great', 'work', 'order'], ['great', 'phone', 'tremend', 'discount'], ['bought', 'devic', 'unlock', 'receiv', 'one', 'lock', 'alreadi', 'contatec', 'ask', 'return', 'devic', 'problem', 'i', 'brazil', 'not', 'want', 'return', 'devic', 'want', 'cellphon', 'work', 'supos', 'contact', 'carrier', 'ask', 'unlock', 'i', 'chenag', 'review'], ['phone', 'describ', 'one', 'small', 'scratch', 'back', 'big', 'deal', 'see', 'perform', 'time', 'get', 'warranti', 'item', 'difficult', 'third', 'parti', 'seller', 'squar', 'trade', 'alway', 'go', 'seem', 'expens', 'deduct', 'requir', 'purchas', 'use', 'phone', 'carrier', 'phone', 'current', 'insur', 'must', 'contact', 'seller', 'click', 'warranti', 'link', 'take', 'page', 'tell', 'contact', 'seller', 'ok', 'not', 'readili', 'avail', 'must', 'cover', 'warranti', 'refurbish', 'item', 'per', 'day', 'would', 'appear', 'dollar', 'get', 'refurbish', 'phone', 'appl', 'new', 'sinc', 'order', 'phone', 'warranti', 'note', 'limit', 'warranti', 'uncertainti', 'knock', 'one', 'star', 'caveat', 'emptor'], ['brought', 'iphon', 'gold', 'came', 'perfect', 'condit', 'real', 'deal', 'brand', 'new', 'reason', 'price', 'high', 'recommend', 'anyon', 'look', 'forward', 'save', 'iphon'], ['not', 'thrill', 'purchas', 'thought', 'would', 'came', 'case', 'said', 'new', 'certifi', 'refurbish', 'came', 'iphon', 'dirti', 'wall', 'charger', 'paid', 'extra', 'bought', 'brand', 'new', 'one'], ['everyth', 'perfect', 'except', 'not', 'abl', 'take', 'still', 'photo', 'iphon', 'abl', 'take', 'video', 'camera', 'not', 'let', 'click', 'still', 'photo', 'screen', 'not', 'blink', 'click', 'photo', 'see', 'photo', 'photo', 'app', 'album', 'bad', 'experi'], ['love', 'brand', 'new'], ['could', 'expect', 'like', 'brand', 'new', 'phone', 'work', 'perfect', 'venezuelan', 'compani'], ['look', 'like', 'new', 'one'], ['extrem', 'pleas', 'purchas', 'first', 'thought', 'good', 'true', 'made', 'order', 'matter', 'day', 'work', 'well', 'problem', 'yet'], ['work', 'perfect', 'not', 'problem', 'far'], ['hesit', 'buy', 'phone', 'mywit', 'first', 'use', 'qualiti', 'refurbish', 'phone', 'not', 'disappoint', 'one', 'bit'], ['first', 'time', 'bought', 'refurbish', 'iphon', 'last', 'one', 'regret', 'buy', 'phone', 'big', 'time', 'fulli', 'charg', 'batteri', 'run', 'less', 'month', 'use', 'home', 'button', 'start', 'act', 'power', 'button', 'not', 'buy', 'refurbish', 'phone', 'like', 'box', 'chocol', 'never', 'know', 'go', 'get', 'sum', 'like', 'gambl', 'get', 'use', 'phone', 'someon', 'know', 'person', 'friend', 'also', 'better', 'option', 'would', 'promo', 'deal', 'phone', 'compani', 'provid', 'get', 'instal', 'deal', 'appl', 'store', 'never', 'refurbish', 'phone'], ['phone', 'great', 'work', 'perfect'], ['good'], ['far', 'problem', 'work', 'great', 'came', 'expect'], ['excelent'], ['great'], ['disappoint'], ['love', 'iphon'], ['love', 'iphon', 'problem', 'yet'], ['good', 'condit', 'got', 'even', 'though', 'descript', 'accept', 'came', 'work', 'charger', 'everyth', 'work', 'perfect'], ['phone', 'great', 'order', 'att', 'phone', 'arriv', 'verizon', 'sim', 'card'], ['i', 'not', 'happi', 'lay', 'plastic', 'screen', 'cover', 'practic', 'attract', 'dirt', 'top', 'bottom', 'plastic', 'screen', 'matter', 'care', 'appli', 'care'], ['one', 'month', 'issu', 'whatsoev', 'phone', 'came', 'perfect', 'work', 'order', 'maintain', 'order'], ['great', 'phone', 'absolut', 'happi', 'purchas'], ['excel'], ['good', 'phone', 'like'], ['like', 'appl', 'iphon', 'make', 'life', 'much', 'easier', 'updat', 'app', 'make', 'easi', 'use', 'like', 'fact', 'iphon', 'came', 'us', 'almost', 'perfect', 'condit', 'small', 'blemish', 'side', 'phone', 'met', 'exceed', 'expect'], ['exact', 'expect', 'daughter', 'love'], ['year', 'old', 'niec', 'love', 'phone', 'want', 'ugrad', 'iphon', 'long', 'time', 'excit', 'receiv'], ['excel', 'phone', 'work', 'great', 'look', 'great', 'work', 'fantast'], ['per', 'expect'], ['love', 'brand', 'new'], ['cell', 'phon', 'okey', 'bt', 'not', 'get', 'headset'], ['pro', 'iphon', 'con', 'need', 'ship', 'sim', 'tool', 'appl', 'certifi', 'light', 'cabl'], ['everyth', 'accord', 'descript', 'scratch'], ['phone', 'work', 'month', 'not', 'hold', 'charg', 'not', 'use', 'text', 'messag', 'camera', 'phone', 'complet', 'dud'], ['excel', 'problem', 'new'], ['post', 'good', 'review', 'day', 'touch', 'screen', 'would', 'not', 'work', 'fine', 'two', 'week', 'sudden', 'touch', 'screen', 'stop', 'half', 'day', 'work', 'fine', 'stop', 'work', 'took', 'store', 'said', 'screen', 'bad', 'would', 'new', 'one', 'wait', 'receiv', 'return', 'get', 'money', 'back', 'get', 'anoth', 'phone', 'left', 'sad', 'inconvenienc'], ['work', 'well', 'problem', 'arriv', 'quick'], ['excel', 'devic', 'great', 'deal', 'thank', 'lot'], ['good', 'iphon'], ['use', 'one', 'month', 'not', 'work', 'home', 'buttonpl', 'not', 'buy', 'one', 'friend', 'problem'], ['product', 'excel', 'condit'], ['alway', 'concern', 'purchas', 'electron', 'thing', 'mail', 'order', 'place', 'phone', 'perfect', 'condit', 'actual', 'better', 'expect'], ['excel', 'product', 'arriv', 'time', 'new', 'box', 'unlock', 'work', 'well', 'small', 'blemish', 'expect', 'refurbish', 'product', 'home', 'button', 'stick', 'occasion', 'easili', 'fix', 'rub', 'alcohol', 'isopropyl', 'alcohol', 'cotton', 'swab', 'appli', 'home', 'button', 'phone', 'turn', 'light', 'tap', 'second', 'let', 'sit', 'minut', 'live', 'east', 'africa', 'phone', 'work', 'perfect', 'well', 'use', 'local', 'cell', 'phone', 'carrier'], [], ['phone', 'not', 'work', 'good', 'network'], ['great', 'product', 'nervous', 'order', 'perfect', 'unlock', 'not', 'look', 'use', 'order', 'got', 'day', 'later', 'fast', 'ship', 'hasel'], ['look', 'brand', 'new', 'fast', 'deliveri'], ['nice'], ['great', 'phone', 'work', 'perfect'], ['extrem', 'pleas', 'purchas', 'first', 'thought', 'good', 'true', 'made', 'order', 'matter', 'day', 'work', 'well', 'problem', 'yet'], ['great', 'phone', 'absolut', 'happi', 'purchas'], ['item', 'arriv', 'quick', 'describ', 'nice', 'appl', 'packag', 'phone', 'great', 'work', 'order'], ['simpli', 'excel', 'phone'], ['everyth', 'went', 'accord', 'plan'], ['smooth', 'sale'], ['phone', 'work', 'great', 'great', 'price'], ['great', 'devic'], ['pleas', 'phone', 'howev', 'sim', 'card', 'remov', 'tool', 'miss'], ['love'], ['awesom'], ['excel'], ['superb', 'screen', 'phone', 'substanti', 'capac', 'constant', 'get', 'look', 'envi', 'quot', 'corelon', 'keep', 'enemi', 'close', 'iphon', 'closer'], ['phone', 'good', 'condit'], ['like'], ['best', 'phone', 'ever', 'work', 'fine', 'unlock', 'cellphon'], ['appl', 'win'], ['good'], ['not', 'buy', 'not', 'even', 'use', 'phone', 'came', 'without', 'sim', 'card', 'tray', 'purchas', 'phone', 'not', 'even', 'unlock', 'list', 'unhappi', 'purchas'], ['skeptic', 'first', 'buy', 'refurb', 'onlin', 'store', 'price', 'great', 'honest', 'best', 'phone', 'i', 'ever', 'own', 'not', 'problem', 'great', 'condit', 'definit', 'buy', 'seller', 'futur', 'thank', 'awesom', 'phone'], ['larger', 'w', 'great', 'vision', 'problem', 'everyth', 'factori', 'fresh'], ['phone', 'arriv', 'time', 'expect', 'howev', 'problem', 'sim', 'card', 'reader', 'caus', 'sim', 'card', 'either', 'not', 'recogn', 'phone', 'signal', 'took', 'appl', 'store', 'got', 'replac'], ['phone', 'not', 'work', 'got', 'stuck', 'week'], ['love', 'iphon', 'plus', 'took', 'time', 'get', 'aggrav', 'good', 'phone'], ['hope', 'charger', 'includ', 'headphon'], ['phone', 'great', 'storag', 'would', 'recommend', 'seller', 'quicknship'], ['everi', 'thing', 'good'], ['ok'], ['good', 'phone', 'usual'], ['good'], ['use', 'phone', 'probabl', 'stolen', 'phone', 'somebodi', 'sim', 'card', 'phone', 'get', 'worst', 'deal', 'ever'], [], ['work', 'great'], ['product', 'got', 'good'], ['great', 'iphon'], ['like', 'thank', 'phone', 'work', 'well', 'venezuela'], ['damag', 'product'], ['origin', 'product', 'good', 'ship', 'box', 'deliv', 'exact', 'time'], ['phone', 'volum', 'low', 'speaker', 'person', 'talk', 'not', 'hear', 'voic', 'sound', 'volum', 'problem', 'phone'], ['good'], ['phone', 'work', 'good', 'everyth', 'come', 'time'], ['excel'], ['dun', 'ask', 'love'], ['buena'], ['brand', 'new', 'box', 'work', 'great', 'happi'], ['bought', 'husband', 'birthday', 'love', 'good', 'phone', 'great', 'qualiti'], ['new', 'box', 'advertis', 'got', 'time', 'work', 'great', 'els', 'say'], ['phone', 'perfect', 'condit', 'arriv', 'far', 'not', 'given', 'us', 'problem'], ['broke'], ['ok'], ['appl', 'win'], ['work', 'perfect', 'arriv', 'time', 'visibl', 'damag', 'refurbish', 'product'], ['ok'], ['like', 'thank', 'phone', 'work', 'well', 'venezuela'], ['good', 'use', 'middl', 'east', 'countri', 'work', 'fine'], ['good'], ['order', 'iphon', 'plus', 'unlock', 'version', 'tri', 'start', 'phone', 'continu', 'receiv', 'messag', 'iphon', 'could', 'not', 'activ', 'activ', 'server', 'temporarili', 'unavail', 'tri', 'connect', 'iphon', 'itun', 'activ', 'tri', 'coupl', 'problem', 'persist', 'contact', 'appl', 'support'], ['thorough', 'enjoy', 'buy', 'experi', 'could', 'not', 'pleas', 'purchas'], ['love', 'phone'], ['love'], ['good'], ['look'], ['bad', 'phone', 'not', 'brand', 'new'], ['thank', 'much', 'receiv', 'order', 'fast', 'i', 'pleas', 'yes', 'order', 'againthank', 'younadin', 'joseph'], ['need', 'solut', 'phone', 'not', 'work', 'suposs', 'cell', 'phone', 'warranti', 'realli', 'need', 'inmediat', 'answer', 'pleas', 'tell', 'touch', 'screen', 'not', 'work'], ['phone', 'stop', 'work', 'week'], ['great'], ['imei', 'lock'], ['great', 'condit'], ['tini', 'outfit', 'new', 'great', 'deal'], ['receiv', 'empti', 'box'], ['great', 'love'], ['great', 'phone', 'not', 'scratch', 'simpl', 'set', 'i', 'would', 'buy', 'seller', 'quick', 'ship'], ['love', 'phone'], ['perfect', 'phone', 'unlock', 'work', 'perfect', 'venezuela'], ['work', 'awesom'], ['dun', 'ask', 'love'], ['wander'], ['love'], ['best', 'best', 'love', 'great', 'price', 'lot'], ['nice'], ['nice', 'phone', 'got', 'fast'], ['mother', 'day', 'present', 'husband', 'turn', 'complet', 'fake', 'iphon', 'plus', 'arriv', 'time', 'open', 'box', 'dirti', 'found', 'two', 'heavi', 'weight', 'not', 'turn', 'charger', 'fall', 'phone', 'attach', 'side', 'button', 'joke', 'fake'], ['not', 'buy', 'devic', 'call', 'carrier', 'said', 'not', 'unlock', 'not', 'buy', 'wast', 'money', 'heard', 'mad', 'not', 'buy', 'wast', 'money'], ['big', 'screen', 'great', 'product'], ['phone', 'perfect', 'describ', 'accident', 'bought', 'return', 'process', 'easi', 'not', 'hesit', 'buy'], ['use', 'descript', 'said', 'reburnish'], ['arriv', 'quick', 'packag', 'great', 'work', 'expect', 'love'], ['deliv', 'time', 'exact', 'said'], ['satisfi', 'item', 'work', 'expect'], ['excelent'], ['best'], ['excelletn'], ['look', 'brand', 'new', 'pay', 'excel', 'product'], ['nice', 'phone'], ['love'], ['excel'], ['daughter', 'love', 'phone', 'problem', 'far', 'week'], ['excel', 'product'], ['love', 'iphon', 'plus', 'took', 'time', 'get', 'aggrav', 'good', 'phone'], ['imei', 'lock'], ['phone', 'good', 'brand', 'new'], ['yes', 'love', 'need', 'phone', 'plus', 'unlock', 'pleas', 'thank'], ['love'], ['work', 'great'], ['excel'], ['good'], ['excelent'], ['iphon', 'not', 'problem', 'work', 'perfect', 'charger', 'not', 'origin', 'one', 'got', 'one', 'week', 'alreadi', 'broken', 'realli', 'like', 'take', 'care', 'abouth', 'stuff', 'servic', 'time', 'great'], ['nnice', 'phone', 'cheapest', 'one', 'found', 'easili', 'activ', 'problem'], ['work', 'well', 'got', 'gig', 'version', 'huge', 'amount', 'space', 'video', 'pictur', 'easi', 'set', 'batteri', 'life', 'good', 'screen', 'great', 'easi', 'read', 'older', 'pair', 'eye', 'like', 'mine', 'watch', 'video', 'much', 'happi', 'purchas'], ['ok'], ['everyth', 'great', 'excel', 'condit', 'said', 'thank'], ['transit', 'quick', 'phone', 'great'], ['love', 'love', 'love', 'phone', 'long', 'batteri', 'life', 'quick', 'featur', 'great', 'not', 'mention', 'bright', 'pictur', 'glad', 'bought', 'phone', 'look', 'forward', 'use', 'need', 'use', 'instead', 'ipad', 'ipod', 'mac', 'air', 'wise', 'purchas', 'negat', 'itouch', 'thumb', 'print', 'quirki', 'work'], ['awesom', 'iphon', 'came', 'charger', 'appl', 'headphon', 'batteri', 'charg', 'phone', 'look', 'brand', 'new', 'could', 'not', 'tell', 'use', 'amaz', 'buy'], ['realli', 'play', 'screen', 'keep', 'freez', 'make', 'phone', 'unrespons', 'touch', 'finger', 'id', 'sensor', 'still', 'work', 'home', 'button', 'not', 'work', 'promis', 'not', 'work', 'reason', 'deal', 'hear', 'attorney', 'soon'], ['lost', 'item', 'sell', 'hand', 'okay', 'conscienti', 'sell', 'hand'], ['wow', 'love', 'new', 'iphon', 'case', 'light'], ['great'], ['date', 'not', 'abl', 'unlock', 'feel', 'rob', 'product'], ['love'], ['need', 'explan', 'simpli', 'good'], ['advertis', 'thank'], ['great', 'i', 'android', 'person', 'realli', 'love', 'phone'], ['deliveri', 'took', 'littl', 'longer', 'expect', 'sinc', 'paid', 'extra', 'expedit', 'also', 'not', 'realiz', 'phone', 'not', 'come', 'charger', 'accessori', 'otherwis', 'phone', 'work', 'great'], ['receiv', 'phone', 'quick', 'expect', 'met'], ['not', 'realli', 'good'], ['came', 'broken', 'unabl', 'sprint', 'activ', 'could', 'give', 'star', 'would', 'not', 'incred', 'frustrat', 'took', 'two', 'hour', 'sprint', 'troubl', 'shoot', 'find', 'could', 'not', 'fix', 'wast', 'time', 'money'], ['i', 'phone', 'month', 'phone', 'work', 'great', 'though', 'switch', 'phone', 'anoth', 'phone', 'tri', 'sell', 'i', 'not', 'see', 'phone', 'outstand', 'balanc', 'imei', 'not', 'allow', 'sell', 'swappa', 'i', 'upset', 'either', 'forc', 'use', 'use', 'paper', 'weight', 'i', 'would', 'like', 'answer'], ['got', 'phone', 'day', 'earlier', 'expect', 'look', 'brand', 'new', 'problem', 'i', 'notic', 'far', 'absolut', 'love'], ['post', 'lie', 'phone', 'brand', 'new', 'phone', 'got', 'well', 'arriv', 'date', 'alway', 'plus', 'could', 'not', 'happier'], ['i', 'happi'], ['great', 'condit', 'function', 'well', 'like', 'bought', 'brand', 'new'], ['excit', 'got', 'phone', 'went', 'go', 'activ', 'verizon', 'phone', 'report', 'lost', 'stolen', 'not', 'pleas'], ['nice', 'phone', 'hold', 'junk'], ['love', 'exact', 'want'], ['describ'], ['vse', 'ok'], ['amaz'], ['purchas', 'phone', 'gift', 'wife', 'pleas'], ['best', 'phone', 'veer', 'know', 'long', 'time', 'thank', 'amazon', 'pick', 'seller'], ['perfect', 'flawless', 'readi', 'use', 'quick', 'deliveri', 'pleas'], ['gucci'], ['beauti', 'phone', 'work', 'effici'], ['great', 'i', 'android', 'person', 'realli', 'love', 'phone'], ['phone', 'work', 'fine', 'work', 'boost', 'mobil', 'well', 'easi', 'transit'], ['work', 'great', 'describ', 'sender', 'usp', 'not', 'favorit', 'got'], ['phone', 'good', 'condit', 'batteri', 'lost', 'charg', 'quick'], ['came', 'time', 'everyth', 'work', 'great', 'thank'], ['phone', 'great', 'condit', 'lock', 'sprint', 'imposs', 'unlock', 'carrier', 'disappoint'], ['phone', 'not', 'unlock', 'sprint', 'employe', 'could', 'not', 'get', 'work', 'disappoint'], ['got', 'realli', 'great', 'condit'], ['iphon', 'order', 'amazon', 'work', 'great', 'issu', 'turn', 'get', 'activ', 'came', 'unscath', 'charg', 'equip', 'high', 'satisfi', 'love', 'phone'], ['nice', 'go', 'web', 'download', 'app', 'smooth', 'fast', 'nice', 'phone'], ['exel', 'great', 'cell', 'like', 'iphon', 'work', 'perfect', 'l', 'happi', 'buy'], ['god'], ['stop', 'charg', 'cabl', 'cost', 'repair'], ['good', 'product'], ['littl', 'wear', 'side', 'would', 'like', 'sinc', 'go', 'mophi', 'case', 'look', 'great'], ['great', 'seller', 'thank', 'phone'], ['purchas', 'two', 'iphon', 'arriv', 'quick', 'good', 'condit', 'charger', 'price', 'color', 'right'], ['came', 'broken', 'unabl', 'sprint', 'activ', 'could', 'give', 'star', 'would', 'not', 'incred', 'frustrat', 'took', 'two', 'hour', 'sprint', 'troubl', 'shoot', 'find', 'could', 'not', 'fix', 'wast', 'time', 'money'], ['transact', 'high', 'recommend'], ['deliveri', 'took', 'littl', 'longer', 'expect', 'sinc', 'paid', 'extra', 'expedit', 'also', 'not', 'realiz', 'phone', 'not', 'come', 'charger', 'accessori', 'otherwis', 'phone', 'work', 'great'], ['extrem', 'happi', 'phone', 'exact', 'state', 'littl', 'disappoint', 'product', 'not', 'ship', 'hour', 'purchas', 'even', 'though', 'purchas', 'non', 'holiday', 'monday'], ['love', 'phone', 'deliv', 'promis', 'time', 'brand', 'new', 'box', 'activ', 'work', 'like', 'charm'], ['phone', 'state', 'unlock', 'mean', 'work', 'sinc', 'sprint', 'not', 'done', 'therefor', 'phone', 'noth', 'big', 'ipod', 'useless', 'let', 'buy', 'ware', 'iphon', 'purchas', 'sprint', 'not', 'transfer', 'anoth', 'servic', 'suck', 'never', 'get', 'away', 'sprint', 'hook', 'line', 'sunk', 'stuck'], ['not', 'fan', 'buy', 'refurbish', 'stuff', 'great', 'condit', 'work', 'flawless'], ['perfect', 'flawless', 'readi', 'use', 'quick', 'deliveri', 'pleas'], ['great', 'phone'], ['thank'], ['good', 'much'], ['work', 'expect', 'sinc', 'bought', 'sever', 'month', 'ago', 'everyon', 'know', 'bigger', 'thinner', 'iphon', 'took', 'verizon', 'got', 'hook', 'network', 'without', 'incid', 'save', 'way', 'refurbish', 'phone'], ['three', 'month', 'sinc', 'got', 'phone', 'complaint', 'batteri', 'life', 'otherwis', 'phone', 'beauti', 'came', 'quick', 'look', 'like', 'new', 'wonder'], ['exact', 'said'], ['got', 'refurbish', 'iphon', 'mine', 'lost', 'great', 'price', 'got', 'day', 'look', 'work', 'like', 'brand', 'new', 'high', 'recommend', 'seller'], ['best', 'phone', 'i', 'ever'], ['return', 'unforeseen', 'blockag', 'phone', 'imei'], ['good'], ['perfect'], ['great', 'unit', 'love'], ['great', 'appl', 'product', 'high', 'recommend'], ['phone', 'came', 'true', 'detail', 'look', 'like', 'brand', 'new', 'phone'], ['purchas', 'phone', 'gift', 'wife', 'pleas'], ['could', 'not', 'hear', 'good', 'phone'], ['absolut', 'love', 'phone', 'sure', 'not', 'latest', 'one', 'get', 'job', 'done', 'batteri', 'life', 'suck', 'yes', 'okay', 'camera', 'qualiti', 'good', 'enough', 'color', 'avail', 'great', 'awesom', 'phone'], ['not', 'put', 'sim', 'phone', 'report', 'lost', 'not', 'activ', 'tri', 'write', 'seller', 'not', 'answer'], ['minor', 'problem', 'phone', 'love', 'came', 'charger', 'headphon', 'not', 'lock', 'need', 'sim', 'card', 'i', 'satisfi'], ['beauti', 'color', 'space', 'gray', 'advertis', 'pictur', 'ship', 'immedi', 'custom', 'servic', 'excel', 'purchas', 'packag', 'got', 'three', 'day', 'activ', 'phone', 'immedi', 'work', 'perfect', 'rate', 'i', 'happi'], ['told', 'phone', 'unlock', 'email', 'not', 'use', 'oversea', 'check', 'lock', 'not', 'trust'], ['switch', 'galaxi', 'continu', 'problem', 'blutooth', 'phone', 'previous', 'thought', 'problem', 'car', 'trade', 'acura', 'toyota', 'continu', 'problem', 'figur', 'phone', 'problem', 'tri', 'everyth', 'includ', 'call', 'samsung', 'not', 'respons', 'need', 'i', 'find', 'io', 'easi', 'learn', 'great', 'everyday', 'use', 'not', 'miss'], ['work', 'great', 'would', 'buy', 'buyer'], ['came', 'earli', 'suppos', 'work', 'great', 'cheaper', 'store'], ['lock', 'sprint', 'not', 'clear', 'describ'], ['good', 'much'], ['year', 'old', 'grandson', 'happi'], ['realli', 'love'], ['phone', 'not', 'unlock', 'sprint', 'employe', 'could', 'not', 'get', 'work', 'disappoint'], ['great', 'product'], ['happi', 'one'], ['problem', 'activ', 'verizon', 'work', 'perfect', 'not', 'price'], ['specif', 'one', 'got', 'minor', 'defect', 'made', 'phone', 'unus', 'recommend', 'proceed', 'extra', 'caution', 'buy', 'use', 'iphon'], ['got', 'gift', 'someon', 'love', 'love', 'love', 'camera', 'unbeliev', 'dslr', 'not', 'say', 'light'], ['bad'], ['good', 'product', 'grandson', 'proud'], ['phone', 'came', 'time', 'perfect', 'phone'], ['everyth', 'advertis', 'fast', 'ship'], ['told', 'phone', 'unlock', 'email', 'not', 'use', 'oversea', 'check', 'lock', 'not', 'trust'], ['not', 'trust'], ['great', 'phone'], ['phone', 'came', 'perfect', 'condit', 'everyth', 'said', 'would', 'come', 'not', 'one', 'scratch', 'pleas', 'purchas'], ['great', 'phone', 'like', 'fact', 'appl', 'allow', 'littl', 'freedom', 'custom'], ['deliv', 'ahead', 'schedul', 'mint', 'condit', 'issu', 'charg', 'cabl', 'not', 'seat', 'proper', 'intermitt', 'charg', 'abl', 'correct', 'work', 'great'], ['perfect', 'condit', 'threesom', 'search', 'corner', 'lol'], ['hello', 'want', 'unlock', 'phone', 'respond', 'pay', 'unlock', 'need', 'unlock', 'phone', 'remind', 'data', 'need', 'unlock', 'otherwis', 'i', 'open', 'case', 'amazon', 'cheat'], ['receiv', 'clay', 'instead', 'iphon', 'despond'], ['great', 'price', 'fast', 'ship', 'happi', 'purchas', 'problem', 'activ', 'phone'], ['second', 'day', 'receiv', 'phone', 'froze', 'not', 'work', 'took', 'appl', 'store', 'inform', 'preown', 'purchas', 'last', 'year', 'pre', 'own', 'iphon', 'fine', 'clear', 'say', 'suppos', 'new', 'price', 'new', 'phone', 'not', 'buy', 'return', 'purchas'], ['everyth', 'went', 'perfect', 'super', 'help', 'support', 'seller'], ['good', 'condit', 'post', 'pleas'], ['phone', 'came', 'accessori', 'box', 'i', 'disappoint', 'refund'], ['awesom', 'expect'], ['intern', 'version', 'not', 'unlock'], ['excel'], ['great', 'phone'], ['excel'], ['fulli', 'satisfi', 'order', 'good', 'seller'], ['love', 'phone', 'thank'], ['excel', 'mobil', 'phone'], ['good', 'condit', 'feel', 'like', 'practic', 'new'], ['excel', 'purchas'], ['use', 'not', 'new'], ['good'], ['look', 'nice', 'phone', 'camera', 'speaker', 'problem', 'talk', 'ohon', 'hear', 'side', 'not', 'hear', 'anyht', 'camera', 'get', 'frozen', 'time', 'automat', 'shut', 'idea', 'fix', 'suck'], ['product', 'expect'], ['expect', 'ir', 'ti', 'good', 'product'], ['awesom', 'expect'], ['box', 'open'], ['definit', 'worthi', 'work', 'like', 'new', 'item', 'good', 'condit', 'definit', 'recommend'], ['good', 'stuff', 'thank'], ['problem', 'use', 'sometim', 'start', 'type', 'thing', 'automat', 'also', 'open', 'app', 'could', 'not', 'return', 'not', 'leav', 'us', 'soon', 'got', 'deliv', 'took', 'countri'], ['love', 'love', 'love', 'love', 'item', 'look', 'brand', 'new', 'work', 'perfect', 'fine', 'recommend', 'seller'], ['excel'], ['sceptic', 'plan', 'unlock', 'phone', 'two', 'day', 'activ', 'problem', 'report', 'phone', 'arriv', 'generic', 'box', 'seem', 'origin', 'accessori', 'less', 'user', 'manual', 'littl', 'evid', 'previous', 'use', 'slight', 'blemish', 'surround', 'appl', 'back', 'side', 'phone', 'quick', 'internet', 'search', 'contact', 'purchas', 'transfer', 'via', 'itun', 'size', 'not', 'tell', 'differ', 'iphon', 'also', 'not', 'use', 'cell', 'phone', 'like', 'addit', 'appendag', 'i', 'sure', 'add', 'problem', 'meantim', 'far', 'good'], ['love'], ['ritgh'], ['amaz', 'not', 'expect', 'perfect', 'condit', 'turn', 'perfect', 'not', 'come', 'offici', 'box', 'regardless', 'amaz'], ['not', 'find', 'scratch', 'anyth', 'like', 'look', 'brand', 'new', 'function', 'set', 'incred', 'easi', 'liter', 'swap', 'sim', 'card', 'standard', 'new', 'phone', 'appl', 'instruct', 'knew', 'phone', 'readi', 'go', 'could', 'not', 'happier'], ['came', 'phone', 'iphon', 'box', 'not', 'origin', 'charger', 'unorigin', 'tradit', 'not', 'come', 'hand', 'free'], ['move', 'size', 'good', 'lighter', 'littl', 'bit', 'faster'], ['like', 'brand', 'new', 'thank', 'vius'], ['great', 'phone', 'look', 'brand', 'new', 'nice', 'clean', 'also', 'phone', 'unlock', 'bring', 'charger', 'headphon', 'ithi', 'review', 'helpulf', 'pleas', 'hit', 'thumb'], ['horribl', 'phone', 'keep', 'freez', 'keep', 'search', 'servic', 'look', 'new', 'phone', 'recommend'], ['perfect', 'like', 'new'], ['i', 'phone', 'month', 'point', 'extrem', 'nervous', 'buy', 'refurbish', 'iphon', 'read', 'review', 'use', 'phone', 'straight', 'talk', 'work', 'wonder', 'complaint', 'arriv', 'box', 'phone', 'power', 'cabl', 'accessori', 'not', 'appl', 'box', 'expect', 'appear', 'phone', 'small', 'verizon', 'sticker', 'back', 'happi', 'purchas'], ['awesom'], ['great', 'product', 'work', 'great', 'price', 'competit'], ['thank'], ['expect', 'nice', 'light', 'weight', 'pack', 'also', 'intact'], ['venezuela', 'phone', 'excel', 'condit', 'best', 'purchas', 'made', 'arriv', 'perfect', 'condit', 'place', 'shipment', 'recommend'], ['not', 'activ', 'phone', 'help', 'give', 'money', 'definit', 'someth', 'wrong'], ['phone', 'came', 'accessori', 'box', 'i', 'disappoint', 'refund'], ['phone', 'work', 'good', 'arriv', 'time', 'thank'], ['horribl'], ['second', 'day', 'receiv', 'phone', 'froze', 'not', 'work', 'took', 'appl', 'store', 'inform', 'preown', 'purchas', 'last', 'year', 'pre', 'own', 'iphon', 'fine', 'clear', 'say', 'suppos', 'new', 'price', 'new', 'phone', 'not', 'buy', 'return', 'purchas'], ['far', 'good'], ['love', 'phone', 'thank'], ['good', 'l', 'reciv', 'iphon', 'time', 'son', 'reali', 'happi', 'thank', 'much'], ['product', 'expect', 'good', 'seller'], ['reciev', 'perfect', 'condit', 'work', 'well', 'venezuela', 'good', 'devic'], ['phone', 'perfect', 'everyth', 'right'], ['appl', 'iphon', 'gb', 'us', 'warranti', 'unlock'], ['ghost', 'store'], ['got', 'box', 'accessori', 'iphon'], ['great'], ['love'], ['glitchi', 'camera', 'act', 'funni', 'use', 'flash', 'app', 'crash', 'often'], ['got', 'phone', 'transpar', 'box', 'without', 'headphon', 'scratch', 'case'], ['appl', 'appl', 'phone', 'surfac', 'not', 'worth', 'phone', 'not', 'offici', 'turn', 'data', 'line', 'not', 'phone', 'refurbish', 'machin'], ['far', 'not', 'problem', 'pleas', 'got', 'cell', 'phone', 'replac', 'old', 'iphon', 'price', 'good', 'expens', 'cell', 'price', 'appl', 'stuff', 'okay', 'instal', 'sim', 'card', 'work', 'issu', 'problem'], ['like', 'new'], ['password', 'phone', 'came', 'dirti', 'scratch', 'box', 'head', 'phone', 'dirti', 'bunch', 'charger', 'pay', 'much', 'someth', 'expect', 'look', 'clean', 'nice', 'box', 'origin', 'accessor', 'password'], ['good'], ['iphon', 'truli', 'mint', 'condit', 'describ', 'product', 'descript', 'hassl', 'activ', 'phone', 'provid', 'love', 'product', 'recommend', 'vendor', 'anyon', 'look', 'buy', 'purchas', 'use', 'cellphon'], ['look', 'nice', 'phone', 'camera', 'speaker', 'problem', 'talk', 'ohon', 'hear', 'side', 'not', 'hear', 'anyht', 'camera', 'get', 'frozen', 'time', 'automat', 'shut', 'idea', 'fix', 'suck'], ['exceed', 'expect', 'love'], ['good'], ['muy', 'bueno'], ['box', 'phone', 'author', 'shop'], ['product', 'expect'], ['great', 'product', 'work', 'great', 'price', 'competit'], ['iphon', 'coverag', 'angri'], ['excel'], [], ['perfect', 'best', 'smartphon', 'ever', 'deliv', 'less', 'preview', 'time'], ['bought', 'phone', 'gentl', 'use', 'month', 'ago', 'far', 'enjoy', 'use', 'use', 'comparison', 'speed', 'process', 'power', 'phone', 'like', 'lightn', 'i', 'notic', 'photo', 'qualiti', 'bit', 'higher', 'res', 'well', 'not', 'differ', 'also', 'accident', 'drop', 'phone', 'water', 'fulli', 'submerg', 'second', 'made', 'full', 'recoveri', 'dri', 'day', 'first', 'hiccup', 'screen', 'charg', 'everyth', 'perform', 'well', 'incid', 'appl', 'deliv', 'promis', 'water', 'resist', 'mom', 'done', 'thing', 'month', 'model', 'phone', 'ruin', 'water', 'new', 'io', 'softwar', 'unfortun', 'choic', 'instal', 'complet', 'disappoint', 'realli', 'enjoy', 'io', 'minor', 'tweak', 'appl', 'could', 'done', 'instead', 'make', 'superior', 'io', 'version', 'feel', 'ignor', 'took', 'complet', 'differ', 'direct', 'most', 'small', 'irrit', 'like', 'swipe', 'unlock', 'longer', 'thing', 'howev'], ['love', 'phone'], ['horribl'], ['excel'], ['excel', 'purchas', 'high', 'recommend', 'seller', 'answer', 'request', 'nice', 'fast'], ['fulli', 'satisfi', 'order', 'good', 'seller'], ['intern', 'version', 'not', 'unlock'], ['suppos', 'get', 'brand', 'new', 'iphon', 'alreadi', 'use'], ['box', 'phone', 'author', 'shop'], ['love', 'phone', 'thank'], ['arriv', 'expect'], ['good', 'condit', 'came', 'coupl', 'day', 'said', 'would', 'also', 'came', 'new', 'headphon', 'charger', 'bought', 'refurbish'], ['excel', 'product'], ['arriv'], ['i', 'realli', 'happi', 'even', 'though', 'noth', 'ground', 'break', 'phone', 'like', 'larger', 'screen', 'size', 'comparison', 'well', 'ad', 'ram', 'great', 'speed', 'product', 'run', 'app', 'suggest', 'anyon', 'think', 'phone', 'purchas', 'unlock', 'sign', 'one', 'cheaper', 'carrier', 'like', 'straight', 'talk', 'metro', 'pcs', 'pay', 'buck', 'month', 'contract', 'big', 'save'], ['receiv', 'phone', 'not', 'power', 'batteri', 'seem', 'like', 'bulg', 'screen', 'slight', 'pop', 'charg', 'cabl', 'also', 'not', 'complet', 'go', 'better', 'buy', 'store', 'buy', 'caution'], ['new', 'origin', 'box'], ['awesom', 'feel', 'phone', 'handi', 'high', 'perform'], ['time', 'deliv', 'hotel', 'stay', 'product', 'perfect', 'everyth', 'promis'], ['switch', 'soon', 'might', 'deal', 'garbag', 'new', 'galaxi', 'come', 'ok', 'like', 'everi', 'set', 'forc', 'noth', 'make', 'sens', 'camera', 'realli', 'nice', 'though', 'not', 'make', 'worth', 'star', 'still'], ['problem', 'first', 'phone', 'got', 'nonfunct', 'charger', 'two', 'scratch', 'would', 'fine', 'one', 'problem', 'not', 'quick', 'accept', 'return', 'refund', 'realli', 'good', 'review', 'decid', 'tri', 'sinc', 'price', 'great', 'time', 'sent', 'flawless', 'product', 'look', 'work', 'feel', 'like', 'new'], ['iphon', 'work', 'good', 'look', 'like', 'new', 'thank'], ['move', 'size', 'good', 'lighter', 'littl', 'bit', 'faster'], ['got', 'phone', 'came', 'day', 'expect', 'work', 'perfect', 'scratch', 'look', 'new', 'love', 'also', 'came', 'charger', 'i', 'happi', 'recommend', 'anyon'], ['problem', 'first', 'phone', 'got', 'nonfunct', 'charger', 'two', 'scratch', 'would', 'fine', 'one', 'problem', 'not', 'quick', 'accept', 'return', 'refund', 'realli', 'good', 'review', 'decid', 'tri', 'sinc', 'price', 'great', 'time', 'sent', 'flawless', 'product', 'look', 'work', 'feel', 'like', 'new'], ['far', 'good'], ['recent', 'decid', 'final', 'enter', 'centuri', 'get', 'smartphon', 'first', 'choic', 'android', 'phone', 'slow', 'not', 'user', 'friend', 'meanwhil', 'visit', 'two', 'friend', 'iphon', 'get', 'along', 'famous', 'knew', 'need', 'pick', 'refurbish', 'one', 'breed', 'perfect', 'condit', 'came', 'charg', 'cord', 'expect', 'i', 'fine', 'make', 'mistak', 'neglect', 'get', 'nano', 'sim', 'card', 'see', 'i', 'home', 'time', 'want', 'use', 'various', 'app', 'like', 'fitbit', 'text', 'home', 'plus', 'pictur', 'video', 'featur', 'got', 'free', 'phone', 'number', 'googl', 'play', 'text', 'hangout', 'without', 'plan', 'not', 'think', 'i', 'would', 'need', 'learn', 'quick', 'sim', 'need', 'get', 'home', 'screen', 'iphon', 'make', 'sure', 'pick', 'card', 'contract', 'pop', 'good', 'work', 'beauti', 'feel', 'spoil', 'especi', 'use', 'inferior', 'phone', 'high', 'recommend', 'pick', 'one', 'breed', 'especi', 'great', 'job', 'refurbish', 'phone'], ['excelent'], ['came', 'earlier', 'like', 'week', 'expect', 'scratch', 'sign', 'drop', 'anyth', 'like', 'new', 'thank', 'much', 'phone', 'best', 'price', 'ever', 'camera', 'amaz'], ['move', 'phone', 'work', 'well', 'want', 'keep', 'headphon', 'jack', 'unlik', 'phone', 'phone', 'arriv', 'prompt', 'work', 'fine'], ['perfect'], ['work', 'right', 'box', 'not', 'singl', 'scratch', 'dent', 'purchas', 'appl', 'store'], ['brilliant', 'phone'], ['work', 'right', 'box', 'not', 'singl', 'scratch', 'dent', 'purchas', 'appl', 'store'], ['thank'], ['love', 'ted', 'baker', 'far', 'differ', 'pair'], ['not', 'even', 'start', 'wait', 'refund'], ['perfect', 'jamaica'], ['nice'], ['not', 'believ', 'happen', 'stolen', 'reach', 'hand', 'sad'], ['excel', 'product', 'keep', 'phone', 'crack', 'must', 'buy'], ['iphon', 'decid', 'upgrad', 'plus', 'i', 'happi', 'purchas', 'not', 'see', 'go', 'back', 'inch', 'iphon', 'anymor', 'inch', 'screen', 'perfect', 'need', 'took', 'sometim', 'get', 'use', 'bigger', 'size', 'adapt', 'quick'], ['perfect'], ['good', 'servic', 'love', 'item'], ['alright', 'first', 'expect', 'like', 'asecond', 'hand', 'look', 'phone', 'not', 'phone', 'look', 'like', 'new', 'phone', 'condit', 'ship', 'realli', 'fast', 'not', 'happier', 'bought', 'phone'], ['usual', 'not', 'give', 'bad', 'review', 'phone', 'straight', 'trash', 'way', 'pick', 'call', 'use', 'speaker', 'button', 'without', 'headphon', 'i', 'done', 'type', 'reset', 'noth', 'work', 'not', 'done', 'first', 'place', 'suppos', 'new', 'phone', 'hope', 'appl', 'replac'], ['look', 'like', 'new', 'love', 'phone', 'big', 'phone', 'small', 'hand'], ['deliv', 'friend', 'bangladesh', 'love', 'play', 'find', 'differ', 'program', 'taken', 'sever', 'pictur', 'turn', 'nice', 'recept', 'big', 'thing', 'also', 'good', 'complaint', 'phone', 'feel', 'made', 'right', 'decis', 'purchas'], ['iphon', 'decid', 'upgrad', 'plus', 'i', 'happi', 'purchas', 'not', 'see', 'go', 'back', 'inch', 'iphon', 'anymor', 'inch', 'screen', 'perfect', 'need', 'took', 'sometim', 'get', 'use', 'bigger', 'size', 'adapt', 'quick'], ['love', 'larger', 'size', 'much', 'easier', 'see', 'use', 'elimin', 'need', 'read', 'devic', 'great', 'phone'], ['i', 'android', 'forev', 'first', 'iphon', 'love', 'nervous', 'switch', 'belov', 'samsung', 'not', 'regret', 'took', 'day', 'two', 'get', 'adjust', 'navig', 'phone', 'expect', 'still', 'reach', 'back', 'button', 'lol', 'want', 'phone', 'reliabl', 'not', 'glitch', 'reason', 'not', 'impress', 'edg', 'screen', 'new', 'flagship', 'galaxi', 'phone', 'figur', 'would', 'good', 'time', 'buy', 'iphon', 'sinc', 'releas', 'iphon', 'caus', 'price', 'drop', 'older', 'io', 'instal', 'not', 'feel', 'like', 'i', 'want', 'instant', 'go', 'back', 'android', 'display', 'beauti', 'even', 'compar', 'super', 'amol', 'display', 'phone', 'gorgeous', 'way', 'still', 'bright', 'color', 'crisp', 'everyth', 'fluid', 'beauti', 'navig', 'app', 'nice', 'look', 'phone', 'work', 'i', 'impress', 'batteri', 'life', 'well', 'hope', 'phone', 'last'], ['excel'], ['not', 'satisfi'], ['use', 'promis', 'otherwis'], ['excel'], ['usual', 'not', 'give', 'bad', 'review', 'phone', 'straight', 'trash', 'way', 'pick', 'call', 'use', 'speaker', 'button', 'without', 'headphon', 'i', 'done', 'type', 'reset', 'noth', 'work', 'not', 'done', 'first', 'place', 'suppos', 'new', 'phone', 'hope', 'appl', 'replac'], ['ok'], ['thisphon', 'not', 'unlock', 'friend', 'not', 'use'], ['alright', 'first', 'expect', 'like', 'asecond', 'hand', 'look', 'phone', 'not', 'phone', 'look', 'like', 'new', 'phone', 'condit', 'ship', 'realli', 'fast', 'not', 'happier', 'bought', 'phone'], ['good', 'work', 'great', 'thank'], ['deliv', 'friend', 'bangladesh', 'love', 'play', 'find', 'differ', 'program', 'taken', 'sever', 'pictur', 'turn', 'nice', 'recept', 'big', 'thing', 'also', 'good', 'complaint', 'phone', 'feel', 'made', 'right', 'decis', 'purchas'], ['nice', 'iphon'], ['beauti', 'phone', 'not', 'new', 'i', 'own', 'iphon', 'number', 'year', 'last', 'one', 'plus'], ['beauti', 'get', 'order'], ['not', 'buy', 'iphon', 'lock', 'use', 'japan'], ['i', 'android', 'forev', 'first', 'iphon', 'love', 'nervous', 'switch', 'belov', 'samsung', 'not', 'regret', 'took', 'day', 'two', 'get', 'adjust', 'navig', 'phone', 'expect', 'still', 'reach', 'back', 'button', 'lol', 'want', 'phone', 'reliabl', 'not', 'glitch', 'reason', 'not', 'impress', 'edg', 'screen', 'new', 'flagship', 'galaxi', 'phone', 'figur', 'would', 'good', 'time', 'buy', 'iphon', 'sinc', 'releas', 'iphon', 'caus', 'price', 'drop', 'older', 'io', 'instal', 'not', 'feel', 'like', 'i', 'want', 'instant', 'go', 'back', 'android', 'display', 'beauti', 'even', 'compar', 'super', 'amol', 'display', 'phone', 'gorgeous', 'way', 'still', 'bright', 'color', 'crisp', 'everyth', 'fluid', 'beauti', 'navig', 'app', 'nice', 'look', 'phone', 'work', 'i', 'impress', 'batteri', 'life', 'well', 'hope', 'phone', 'last'], ['great', 'phone'], ['certifi', 'refurbish', 'unlock', 'iphon', 'plus', 'two', 'week', 'pleas', 'phone', 'arriv', 'quick', 'came', 'plain', 'white', 'box', 'charger', 'headphon', 'not', 'expect', 'almost', 'return', 'label', 'verizon', 'iphon', 'pop', 'sim', 'card', 'work', 'like', 'charm', 'lte', 'work', 'back', 'phone', 'flawless', 'notic', 'minor', 'scratch', 'screen', 'not', 'notic', 'screen', 'not', 'bother', 'plus', 'knew', 'get', 'refurbish', 'phone', 'not', 'brand', 'new', 'one', 'scratch', 'not', 'surpris', 'much', 'batteri', 'life', 'phone', 'far', 'fantast', 'abl', 'go', 'two', 'day', 'without', 'charg', 'phone', 'worri', 'batteri', 'poor', 'shape', 'work', 'great', 'fenc', 'buy', 'one', 'certifi', 'refurbish', 'phone', 'say', 'go', 'price', 'great', 'not', 'expect', 'spotless', 'phone', 'anyon', 'look', 'iphon', 'not', 'notic', 'scratch', 'think', 'brand', 'new', 'get', 'realli', 'close', 'examin', 'screen', 'notic', 'minor', 'scratch'], ['everyth', 'work', 'great', 'still', 'home', 'button', 'littl', 'ehh', 'great', 'price', 'good', 'condit'], ['excel', 'iphon'], ['great', 'deal', 'phone', 'look', 'work', 'like', 'new'], ['bought', 'iphon', 'plus', 'describ', 'instead', 'receiv', 'iphon', 'not', 'plus'], ['iphon', 'came', 'amaz', 'condit', 'scratch', 'screen', 'back', 'phone', 'howev', 'slight', 'screen', 'discolor', 'bottom', 'left', 'hard', 'notic', 'appear', 'like', 'yellow', 'spot', 'not', 'mind', 'bare', 'see', 'nice', 'way', 'confirm', 'phone', 'actual', 'mine', 'anyon', 'tri', 'funni', 'take'], [], ['honest', 'iphon', 'plus', 'look', 'like', 'new', 'one'], ['everyth', 'work', 'great', 'still', 'home', 'button', 'littl', 'ehh', 'great', 'price', 'good', 'condit'], ['phone', 'spotless', 'came', 'appl', 'box', 'not', 'come', 'earbud', 'connect', 'metropc', 'work', 'great', 'get', 'lte', 'everyth'], ['great', 'phone'], ['everyth'], ['expect'], ['excel', 'product'], ['not', 'buy', 'iphon', 'lock', 'use', 'japan'], ['beauti', 'get', 'order'], ['iphon', 'decid', 'upgrad', 'plus', 'i', 'happi', 'purchas', 'not', 'see', 'go', 'back', 'inch', 'iphon', 'anymor', 'inch', 'screen', 'perfect', 'need', 'took', 'sometim', 'get', 'use', 'bigger', 'size', 'adapt', 'quick'], ['nice', 'iphon'], ['perfect'], ['refurbish', 'phone', 'not', 'brand', 'new', 'not', 'factori', 'seal', 'appl', 'box', 'fake', 'awar'], ['love', 'iphon', 'said', 'warranti', 'appl', 'store', 'still', 'let', 'us', 'get', 'servic'], ['good', 'yeah'], ['work', 'perfect'], ['great', 'iphon', 'advertis'], ['good', 'servic', 'love', 'item'], ['perfect', 'best'], ['receiv', 'order', 'best'], ['good'], ['great'], ['phone', 'box', 'charger', 'not', 'phone'], ['realli', 'surpris', 'bhow', 'new', 'phone', 'look', 'scratch', 'dent', 'everyth', 'perfect'], ['alright', 'first', 'expect', 'like', 'asecond', 'hand', 'look', 'phone', 'not', 'phone', 'look', 'like', 'new', 'phone', 'condit', 'ship', 'realli', 'fast', 'not', 'happier', 'bought', 'phone'], ['came', 'without', 'accessori'], ['i', 'android', 'forev', 'first', 'iphon', 'love', 'nervous', 'switch', 'belov', 'samsung', 'not', 'regret', 'took', 'day', 'two', 'get', 'adjust', 'navig', 'phone', 'expect', 'still', 'reach', 'back', 'button', 'lol', 'want', 'phone', 'reliabl', 'not', 'glitch', 'reason', 'not', 'impress', 'edg', 'screen', 'new', 'flagship', 'galaxi', 'phone', 'figur', 'would', 'good', 'time', 'buy', 'iphon', 'sinc', 'releas', 'iphon', 'caus', 'price', 'drop', 'older', 'io', 'instal', 'not', 'feel', 'like', 'i', 'want', 'instant', 'go', 'back', 'android', 'display', 'beauti', 'even', 'compar', 'super', 'amol', 'display', 'phone', 'gorgeous', 'way', 'still', 'bright', 'color', 'crisp', 'everyth', 'fluid', 'beauti', 'navig', 'app', 'nice', 'look', 'phone', 'work', 'i', 'impress', 'batteri', 'life', 'well', 'hope', 'phone', 'last'], ['work', 'great'], ['love'], ['excel'], ['phone', 'came', 'earlier', 'estim', 'ship', 'date', 'product', 'describ', 'seller', 'work', 'fantast', 'unlock', 'perfect', 'one', 'thing', 'though', 'thought', 'come', 'origin', 'box', 'okay'], ['not', 'use'], ['fist', 'week', 'receiv', 'iphon', 'found', 'big', 'problem', 'play', 'vedio', 'record', 'piano', 'performac', 'sound', 'regular', 'volum', 'second', 'becam', 'sound', 'retri', 'mani', 'time', 'record', 'differ', 'activ', 'play', 'flute', 'read', 'got', 'result', 'sound', 'not', 'stabl', 'made', 'sure', 'not', 'touch', 'key', 'record', 'frustrat', 'defect', 'one', 'hope', 'return', 'get', 'refund', 'soon', 'possibl'], ['nice', 'product', 'time'], ['perfect', 'condit', 'work', 'like', 'new'], ['love'], ['good'], ['nice', 'big', 'screen'], ['good'], ['perfect'], ['love'], ['turn', 'n', 'requir', 'activ', 'lock'], ['iphon', 'galaxi', 'return', 'got', 'nexus', 'got', 'iphon', 'plus', 'threw', 'nexus', 'confirm', 'appl', 'product', 'best', 'hand', 'android', 'still', 'unreli', 'materi', 'design', 'not', 'intuit', 'mvc', 'model', 'lot', 'realli', 'anoy', 'thing', 'design', 'oper', 'system', 'android', 'phone', 'hope', 'chang', 'thing', 'roll', 'photo', 'blast', 'valu', 'pictur', 'moment', 'life'], ['serious', 'impress', 'came', 'new', 'box', 'even', 'plastic', 'wrap', 'still', 'around', 'box', 'took', 'verizon', 'activ', 'not', 'singl', 'problem', 'thank', 'god'], ['good', 'thank'], ['appl', 'need', 'say'], ['first', 'appl', 'amazon', 'ok', 'everyth'], ['receiv', 'dummi', 'toy', 'phone', 'phone', 'fake', 'toy', 'phone', 'absolut', 'rip'], ['exact', 'expect'], ['first', 'ever', 'iphon', 'love', 'much', 'thank'], ['love', 'phone', 'pleasur', 'order', 'amazon', 'realli', 'like', 'size', 'clariti', 'video', 'screen', 'great', 'would', 'recommend', 'phone', 'anyon', 'look', 'upgrad'], ['weri', 'gud'], ['came', 'describ', 'work', 'nice'], ['mint', 'condit', 'wife', 'absolut', 'love'], ['look', 'review', 'worri', 'go', 'get', 'cheap', 'broken', 'phone', 'phone', 'great', 'work', 'perfect', 'also', 'includ', 'screen', 'protector', 'case'], [], ['i', 'phone', 'month', 'concern', 'go', 'big', 'love', 'actual', 'see', 'i', 'still', 'fit', 'back', 'pocket', 'problem', 'also', 'compani', 'fast'], ['perfect', 'phone', 'thank'], ['iphon', 'galaxi', 'return', 'got', 'nexus', 'got', 'iphon', 'plus', 'threw', 'nexus', 'confirm', 'appl', 'product', 'best', 'hand', 'android', 'still', 'unreli', 'materi', 'design', 'not', 'intuit', 'mvc', 'model', 'lot', 'realli', 'anoy', 'thing', 'design', 'oper', 'system', 'android', 'phone', 'hope', 'chang', 'thing', 'roll', 'photo', 'blast', 'valu', 'pictur', 'moment', 'life'], ['describ'], ['handi', 'item'], ['excel', 'nice', 'phone'], ['great', 'phone'], ['paid', 'got', 'phone', 'real', 'doll', 'masef'], ['not', 'buy', 'scam', 'read', 'negat', 'review', 'phone', 'smash', 'huge', 'dent', 'box', 'dirti', 'obvious', 'box', 'phone', 'repackag', 'basement', 'somewher', 'not', 'buy'], ['iphon'], ['great', 'phone'], ['bought', 'phone', 'one', 'month', 'carrier', 'said', 'black', 'list', 'phone', 'phone', 'would', 'not', 'work'], ['bought', 'phone', 'husband', 'iphon', 'last', 'not', 'know', 'mani', 'year', 'email', 'work', 'cell', 'phone', 'get', 'hard', 'read', 'email', 'small', 'screen', 'love', 'bigger', 'screen', 'gb', 'memori', 'great', 'also', 'like', 'play', 'game', 'like', 'unlimit', 'memori'], ['good'], ['phone', 'great', 'brand', 'new', 'activ', 'day', 'activ', 'could', 'chang', 'new', 'one', 'appl', 'store'], ['best', 'phone', 'ever', 'made'], [], ['perfect', 'product'], ['iphon', 'plus', 'great', 'phone', 'oper', 'system', 'faster', 'reliabl', 'brought', 'wife', 'rose', 'gold', 'look', 'great', 'ladi'], ['servic', 'product', 'great'], ['seller', 'appl', 'iphon', 'immedi', 'sent', 'american', 'wall', 'plug', 'charg', 'adapt', 'mail', 'notifi', 'correct', 'prompt', 'love', 'iphon', 'high', 'tech', 'miracl', 'work', 'wonder', 'would', 'recommend', 'everybodi', 'get', 'one', 'https'], ['fake'], ['coment', 'get', 'right', 'order'], ['receiv', 'dummi', 'toy', 'phone', 'phone', 'fake', 'toy', 'phone', 'absolut', 'rip'], ['need', 'talk', 'someon', 'phone', 'bought', 'need', 'know', 'warranti'], ['everyth', 'good'], ['seller', 'mention', 'perfect', 'new', 'iphon'], ['great'], ['excel', 'phone'], ['pleasur', 'buy', 'phone'], ['love'], ['phone', 'work', 'well', 'expect', 'issu', 'qualiti', 'deliveri', 'request', 'import', 'not', 'sure', 'iphon', 'plus', 'model', 'seem', 'shutter', 'nois', 'camera', 'not', 'silenc'], ['ok', 'time'], ['serious', 'impress', 'came', 'new', 'box', 'even', 'plastic', 'wrap', 'still', 'around', 'box', 'took', 'verizon', 'activ', 'not', 'singl', 'problem', 'thank', 'god'], ['good'], ['i', 'mean', 'get', 'new', 'iphon', 'sinc', 'got', 'job', 'final', 'got', 'major', 'upgrad', 'plus', 'love', 'iphon', 'color', 'fabul', 'like', 'alway', 'told', 'bigger', 'phone', 'better', 'life'], ['nice', 'product'], ['turn', 'n', 'requir', 'activ', 'lock'], ['came', 'time', 'product', 'describ', 'pleas', 'purchas'], ['good', 'phone', 'good', 'dealer'], ['excel'], ['love', 'iphon', 'super', 'fast', 'ship'], ['happi', 'item', 'time', 'took', 'reciev', 'provid', 'everyth', 'list', 'item', 'phone', 'new', 'unlock', 'state', 'also', 'provid', 'protect', 'screen', 'happi', 'purchas', 'would', 'order'], ['happi', 'purchas', 'still', 'allot', 'learn', 'phone'], ['good'], ['nice', 'describ'], ['work', 'great', 'hate', 'fact', 'not', 'mute', 'camera', 'shutter', 'screenshot', 'sound'], ['great'], ['prefect'], ['absolut', 'love'], ['great', 'phone', 'good', 'price', 'thought', 'i', 'would', 'littl', 'issu', 'larger', 'plus', 'feel', 'good', 'larger', 'screen'], ['deliveri', 'super', 'fast', 'cellphon', 'look', 'good', 'pretti', 'like'], ['phone', 'came', 'defect', 'provid', 'screen', 'error', 'say', 'unit', 'not', 'read', 'sim', 'card', 'countri', 'spect', 'open', 'function', 'phone', 'i', 'dollar', 'phone', 'not', 'work'], ['happi', 'item', 'time', 'took', 'reciev', 'provid', 'everyth', 'list', 'item', 'phone', 'new', 'unlock', 'state', 'also', 'provid', 'protect', 'screen', 'happi', 'purchas', 'would', 'order'], ['look', 'brand', 'new', 'better', 'describ', 'arriv', 'earli'], ['phone', 'never', 'paid', 'previous', 'owner', 'tri', 'switch', 'account', 'suspend', 'whole', 'verizon', 'account', 'caus', 'lose', 'number', 'real', 'frustrat', 'spent', 'money', 'phone', 'could', 'never', 'mind', 'feel', 'foolish', 'buy', 'want', 'refund', 'phone', 'one', 'day', 'ship', 'cost'], ['good'], ['receiv', 'item', 'time', 'clean', 'shown'], ['excel', 'phone'], ['not', 'buy', 'fake', 'verifi', 'verifi', 'appl', 'tech'], ['gold', 'iphon', 'plus', 'work', 'fine', 'app', 'not', 'function', 'app', 'ton', 'app', 'function', 'not', 'perturb', 'malfunct'], ['not', 'unlock', 'took', 'today', 'switch', 'sim', 'card', 'new', 'go', 'super', 'bum', 'i', 'got', 'take', 'appl', 'store', 'hate', 'go', 'hope', 'unlock', 'phone', 'pray', 'not', 'tell', 'fake', 'like', 'review', 'i', 'read', 'pain', 'butt', 'probabl', 'end', 'return', 'phone', 'much', 'hate', 'go', 'mall', 'boo', 'fals', 'advertis'], ['mint', 'condit', 'wife', 'absolut', 'love'], ['excel'], ['phone', 'amaz', 'good', 'seller'], ['phone', 'look', 'great'], ['receiv', 'dummi', 'toy', 'phone', 'phone', 'fake', 'toy', 'phone', 'absolut', 'rip'], ['good'], ['far', 'good'], ['nice'], ['good', 'phone', 'brand', 'new', 'use', 'perfect', 'sim', 'card'], ['great', 'phone', 'good', 'price', 'thought', 'i', 'would', 'littl', 'issu', 'larger', 'plus', 'feel', 'good', 'larger', 'screen'], ['perfect', 'ship', 'quit', 'accur', 'well'], ['star', 'pay', 'got', 'toy', 'phone', 'gift', 'scam', 'g', 'cube', 'seller'], ['excel'], ['nice', 'describ'], ['receiv', 'item', 'time', 'clean', 'shown'], ['brand', 'new', 'appl', 'logo', 'sticker', 'not', 'box'], ['not', 'unlock', 'not', 'use', 'write', 'advertis', 'unlock', 'say', 'open', 'sim', 'not', 'support', 'not', 'activ', 'phone'], ['turn', 'n', 'requir', 'activ', 'lock'], ['best', 'best', 'not', 'fan', 'appl', 'use', 'android', 'also', 'speed', 'perform', 'phone', 'amaz', 'excel', 'camera', 'favorit', 'part', 'design', 'best'], ['promis'], ['perfect'], [], ['excel', 'product', 'i', 'realli', 'happi'], ['first', 'appl', 'amazon', 'ok', 'everyth'], ['great', 'phone'], ['phone', 'never', 'paid', 'previous', 'owner', 'tri', 'switch', 'account', 'suspend', 'whole', 'verizon', 'account', 'caus', 'lose', 'number', 'real', 'frustrat', 'spent', 'money', 'phone', 'could', 'never', 'mind', 'feel', 'foolish', 'buy', 'want', 'refund', 'phone', 'one', 'day', 'ship', 'cost'], ['perfect', 'condit', 'work', 'like', 'new'], ['love', 'iphon', 'plus', 'came', 'great', 'condit', 'not', 'even', 'tell', 'use'], ['look', 'review', 'worri', 'go', 'get', 'cheap', 'broken', 'phone', 'phone', 'great', 'work', 'perfect', 'also', 'includ', 'screen', 'protector', 'case'], ['phone', 'great', 'brand', 'new', 'unlock', 'promis'], ['took', 'along', 'time', 'come', 'like'], ['nice', 'product'], ['phone', 'amaz', 'good', 'seller'], ['amazon', 'verifi', 'upgrad', 'iphon', 'iphon', 'plus', 'big', 'chang', 'size', 'would', 'never', 'regret', 'plus', 'extra', 'futur', 'faster', 'touch', 'id', 'live', 'photo', 'touch', 'phone', 'not', 'bend', 'crack', 'easi', 'iphon', 'got', 'tthe', 'band', 'i', 'use', 'outsid', 'without', 'problem', 'model', 'iphon', 'plus', 'gold', 'epsilion', 'littl', 'bit', 'scare', 'purchas', 'seller', 'not', 'amazon', 'llc', 'seller', 'best', 'ever'], ['met', 'expect', 'love', 'phone'], ['great', 'brand', 'new', 'problem'], ['perfect', 'phone', 'thank'], ['nice', 'big', 'screen'], ['best'], ['dealfish', 'best'], ['nice', 'big', 'screen'], ['love', 'phone', 'pleasur', 'order', 'amazon', 'realli', 'like', 'size', 'clariti', 'video', 'screen', 'great', 'would', 'recommend', 'phone', 'anyon', 'look', 'upgrad'], ['great', 'problem', 'ever'], ['mint', 'condit', 'wife', 'absolut', 'love'], ['phone', 'great', 'brand', 'new', 'unlock', 'promis'], ['everi', 'thing', 'perfect', 'thank', 'amazon'], ['bit', 'flimsi', 'bit', 'easi', 'break', 'glass', 'mind', 'broke', 'within', 'day', 'i', 'care', 'w', 'phone', 'clear', 'bumper', 'back', 'not', 'full', 'enclos', 'otterbox', 'defend', 'look', 'rather', 'ruin', 'look', 'rose', 'gold', 'phone', 'not', 'think', 'flimsi', 'rose', 'gold', 'phone', 'littl', 'clear', 'bumper', 'cover', 'sit', 'drawer', 'w', 'broken', 'screen'], ['everyth', 'great'], ['upgrad', 'iphon', 'plus', 'mobil', 'never', 'disappoint', 'silver', 'golden', 'rose', 'iphon', 'get', 'new', 'color', 'day', 'love', 'color', 'appl', 'portray', 'color', 'fascin', 'new', 'iphon', 'wise', 'plus', 'plus', 'most', 'ad', 'featur', 'make', 'differ', 'touch', 'bright', 'vibrant', 'display', 'not', 'bright', 'galaxi', 'edg', 'plus', 'cours', 'addit', 'new', 'color', 'rose', 'gold', 'best', 'part', 'iphon', 'plus', 'favorit', 'also', 'lightn', 'speed', 'mp', 'camera', 'siri', 'sweet', 'voic', 'inch', 'bigger', 'resolut', 'screen', 'touch', 'display', 'win', 'win', 'life', 'slight', 'better', 'plus', 'optic', 'imag', 'stabil', 'photo', 'video', 'sure', 'make', 'differ', 'deliv', 'photo', 'certain', 'light', 'condit', 'design', 'wise', 'look', 'ident', 'iphon', 'plus', 'differ', 'size', 'inch', 'compar', 'small', 'logo', 'rear', 'word', 'slight', 'thicker', 'plus', 'fingerprint', 'resist', 'glass', 'make', 'screen', 'smudg', 'not', 'attract', 'aspect', 'cost', 'higher', 'other', 'flat', 'rear', 'round', 'metal', 'edg', 'make', 'bit', 'fussi', 'nutshel', 'love', 'new', 'avatar', 'iphon', 'creat', 'appl'], ['coolest'], ['not', 'not', 'not', 'buy', 'receiv', 'bag', 'cake', 'mix', 'cocoa', 'powder', 'place', 'phone'], ['best', 'best', 'not', 'fan', 'appl', 'use', 'android', 'also', 'speed', 'perform', 'phone', 'amaz', 'excel', 'camera', 'favorit', 'part', 'design', 'best'], ['upgrad', 'iphon', 'plus', 'mobil', 'never', 'disappoint', 'silver', 'golden', 'rose', 'iphon', 'get', 'new', 'color', 'day', 'love', 'color', 'appl', 'portray', 'color', 'fascin', 'new', 'iphon', 'wise', 'plus', 'plus', 'most', 'ad', 'featur', 'make', 'differ', 'touch', 'bright', 'vibrant', 'display', 'not', 'bright', 'galaxi', 'edg', 'plus', 'cours', 'addit', 'new', 'color', 'rose', 'gold', 'best', 'part', 'iphon', 'plus', 'favorit', 'also', 'lightn', 'speed', 'mp', 'camera', 'siri', 'sweet', 'voic', 'inch', 'bigger', 'resolut', 'screen', 'touch', 'display', 'win', 'win', 'life', 'slight', 'better', 'plus', 'optic', 'imag', 'stabil', 'photo', 'video', 'sure', 'make', 'differ', 'deliv', 'photo', 'certain', 'light', 'condit', 'design', 'wise', 'look', 'ident', 'iphon', 'plus', 'differ', 'size', 'inch', 'compar', 'small', 'logo', 'rear', 'word', 'slight', 'thicker', 'plus', 'fingerprint', 'resist', 'glass', 'make', 'screen', 'smudg', 'not', 'attract', 'aspect', 'cost', 'higher', 'other', 'flat', 'rear', 'round', 'metal', 'edg', 'make', 'bit', 'fussi', 'nutshel', 'love', 'new', 'avatar', 'iphon', 'creat', 'appl'], ['great'], ['wonderful'], ['nice'], ['iphon', 'sprint', 'lock', 'also', 'icloud', 'lock'], ['phone', 'got', 'friend', 'love'], ['good'], ['use', 'appl', 'iphon', 'plus', 'month', 'beauti', 'nice', 'phone', 'ever', 'fast', 'easi', 'use', 'love', 'display', 'especi', 'watch', 'movi', 'thinner', 'lighter', 'cellphon', 'use', 'carri', 'packet', 'hold', 'hand', 'realli', 'like', 'fingerprint', 'ring', 'home', 'button', 'help', 'get', 'phone', 'quick', 'make', 'easi', 'access', 'cellphon', 'take', 'less', 'time', 'charg', 'conveni', 'batteri', 'full', 'last', 'long', 'time', 'instanc', 'charg', 'iphon', 'day', 'batteri', 'last', 'day', 'two', 'moreov', 'love', 'take', 'pictur', 'iphon', 'best', 'camera', 'never', 'previous', 'cellphon', 'hd', 'camera', 'bring', 'qualiti', 'want', 'furthermor', 'listen', 'music', 'lot', 'speaker', 'iphon', 'plus', 'good', 'bring', 'good', 'sound', 'enjoy', 'also', 'like', 'use', 'headphon', 'listen', 'music', 'set', 'app', 'opportun', 'choos', 'type', 'sound', 'want', 'hear', 'exampl', 'pop', 'rock', 'jazz', 'etc', 'also', 'boost', 'base', 'certain', 'amount', 'connect', 'speaker', 'headphon', 'touch', 'screen', 'better', 'phone', 'respond', 'quick', 'not', 'best', 'cellphon', 'ever', 'use', 'price', 'kind', 'high', 'expens', 'cellphon', 'way', 'way', 'wok', 'deserv', 'expens', 'love', 'everyth', 'real'], ['good', 'phone', 'good', 'dealer'], ['gift', 'friend', 'vietnam', 'not', 'receiv', 'complain', 'phone', 'friend'], ['perfect', 'everyth', 'expect'], ['receiv', 'packag', 'phone', 'korean', 'version', 'charger', 'not', 'use', 'us'], ['great', 'problem'], ['perfect'], ['excel'], ['iphon', 'arriv', 'time', 'complet', 'new', 'box', 'open', 'mean', 'came', 'plastic', 'cover', 'like', 'new', 'one', 'appl', 'obvious', 'open', 'previous', 'insid', 'phone', 'sim', 'card', 'not', 'surpris', 'read', 'comment', 'yesterday', 'phone', 'inhibit', 'minut', 'i', 'read', 'normal', 'un', 'iphon', 'plus', 'i', 'happi', 'fast', 'deliveri', 'kind', 'worri', 'product'], ['good', 'bought', 'phone', 'work', 'goodbut', 'not', 'know', 'got', 'verizon', 'sim', 'insid', 'phone', 'phone', 'unlock'], ['great', 'purchas', 'work', 'well', 'deliv', 'promis', 'date'], ['excel', 'fast', 'concern', 'headphon', 'not', 'come', 'without', 'origin', 'wait', 'airpod', 'phone'], ['full', 'doubt', 'phone', 'sinc', 'appl', 'custom', 'product', 'year', 'first', 'time', 'feel', 'difrenc', 'plus', 'time', 'phone', 'use', 'beta', 'io', 'good', 'stuff', 'camera', 'incred', 'beast', 'nice', 'black', 'color', 'look', 'asewom', 'new', 'home', 'button', 'differ', 'kind', 'android', 'phone', 'final', 'speed', 'wow', 'think', 'faster', 'macbook', 'air', 'inch', 'latest', 'model'], ['stun', 'black', 'phone', 'best', 'product', 'ever', 'appl', 'noth', 'much', 'say', 'product', 'review', 'thing', 'notic', 'differ', 'small', 'pin', 'pull', 'sim', 'card', 'not', 'avail', 'packag', 'pull', 'stun', 'phone', 'get', 'impati', 'begin', 'use', 'run', 'around', 'search', 'paper', 'clip', 'job', 'miss', 'clip'], ['great', 'product', 'great', 'price'], ['happi', 'purchas', 'weari', 'go', 'get', 'fake', 'iphon', 'inde', 'real', 'deliv', 'earlier', 'expect', 'i', 'write', 'review', 'new', 'plus'], ['awesom', 'phone', 'deliv', 'time'], ['work', 'art', 'machin'], ['perfect'], ['phone', 'normal', 'brand', 'new', 'noth', 'special', 'requir', 'orgin', 'receipt', 'twice', 'seller', 'not', 'even', 'provid', 'proof', 'purchas', 'iphon'], ['nice'], ['awesom', 'phone', 'deliv', 'time'], ['great', 'problem'], ['extrem', 'poor', 'qualiti', 'jet', 'black', 'love', 'took', 'box', 'immedi', 'appli', 'ringk', 'fusion', 'silicon', 'case', 'back', 'zagg', 'screen', 'protector', 'day', 'remov', 'silicon', 'case', 'found', 'sever', 'small', 'abras', 'dot', 'perman', 'could', 'not', 'remov', 'mean', 'disappoint', 'thing', 'never', 'use', 'without', 'case', 'dot', 'appear', 'week', 'qualiti', 'jet', 'black', 'finish', 'much', 'low', 'dot', 'appear', 'even', 'presenc', 'silicon', 'case', 'produc', 'well', 'known', 'get', 'jet', 'black', 'color'], ['great', 'purchas', 'work', 'well', 'deliv', 'promis', 'date'], ['got', 'expect', 'time', 'thank'], ['relay', 'love', 'one'], ['best', 'iphon', 'ever', 'hand'], ['great', 'problem'], ['horribl', 'experi', 'receiv', 'item', 'time', 'second', 'arriv', 'notic', 'miss', 'needl', 'like', 'stuff', 'suppos', 'use', 'open', 'sim', 'card', 'slot'], ['i', 'tech', 'person', 'possess', 'iphon', 'plus', 'ipad', 'ipad', 'macbook', 'pro', 'air', 'lot', 'talk', 'specif', 'phone', 'iphon', 'plus', 'peac', 'not', 'escap', 'much', 'previous', 'model', 'plus', 'part', 'kind', 'like', 'yea', 'abl', 'better', 'great', 'comment', 'big', 'deal', 'new', 'camera', 'everyon', 'want', 'know', 'make', 'great', 'pic', 'not', 'yea', 'camera', 'great', 'recommend', 'great', 'app', 'pro', 'pictur', 'pro', 'photo', 'great', 'option', 'batteri', 'good', 'speaker', 'gsm', 'qualiti', 'phone', 'order', 'enjoy', 'thank', 'hope', 'help', 'decid', 'pick', 'right', 'one'], ['great', 'servic', 'call', 'verifi', 'phone', 'want', 'would', 'definit', 'recommend'], ['good'], ['good'], ['awesom', 'phone', 'best', 'phone', 'appl', 'ever', 'perform', 'great', 'new', 'featur', 'launch', 'appl', 'work', 'realli', 'great', 'love', 'phone'], ['excel'], ['amaz', 'phone'], ['pay', 'extra', 'money', 'buy', 'took', 'day', 'get', 'box', 'not', 'damag', 'everyth', 'good'], ['gd'], ['good', 'use', 'similar', 'iphon'], ['phone', 'realli', 'amaz', 'fast', 'shown', 'appl', 'event', 'i', 'satisfi', 'iphon'], ['excel'], ['actual', 'want', 'plus', 'order', 'regular', 'ok', 'not', 'problem', 'iphon', 'thank'], ['wonder', 'phone', 'cool', 'featur'], ['say', 'thank', 'everyth', 'right'], ['excel'], ['sorri', 'say', 'check', 'serial', 'number', 'brand', 'new', 'phone', 'found', 'alreadi', 'activ', 'store', 'sold', 'realli', 'decreas', 'valu', 'countri'], ['perfect'], ['excel', 'product', 'deliveri', 'time'], ['receiv', 'phone', 'last', 'week', 'not', 'work', 'not', 'unlock', 'even', 'bought', 'new', 'sim', 'verizon', 'put', 'iphon', 'not', 'compat', 'sim', 'not', 'work', 'guess', 'appl', 'suspend', 'phone', 'mean', 'theft', 'protect', 'origin', 'canada', 'state', 'bottom', 'line', 'pleas', 'fix', 'issu', 'disappoint', 'not', 'know', 'say', 'paid', 'noth', 'pleas', 'not', 'buy', 'unless', 'plan', 'use', 'prepaid', 'sim'], ['not', 'sell', 'rubber', 'right'], ['work', 'libya', 'everi', 'thing', 'ok', 'thank'], ['phone', 'got', 'iphon', 'not', 'unlock', 'phone', 'one', 'list', 'verizon', 'lock', 'product', 'descript', 'said', 'appl', 'iphon', 'unlock', 'us', 'version', 'mislead', 'advertis', 'updat', 'though', 'not', 'activ', 'phone', 'model', 'recogn', 'digicel', 'sim', 'network', 'easili', 'upgrad', 'review', 'star'], ['live', 'ecuador', 'work', 'perfect', 'unlock', 'never', 'iphon', 'not', 'compar', 'better', 'cell', 'phone', 'amaz'], ['excel'], ['phone', 'work', 'sprint', 'sim', 'card', 'receiv', 'hard', 'time', 'activ', 'phone', 'sprint', 'sim', 'card', 'sinc', 'verizon', 'servic'], ['great', 'product', 'describ', 'arriv', 'quick', 'work', 'perfect', 'new', 'describ', 'origin', 'packag'], ['work', 'perfect'], ['goodgoodbut', 'littl', 'bit', 'disappointedbecaus', 'boxcas', 'edg', 'crush'], ['love', 'design', 'great', 'phone', 'sometim', 'home', 'power', 'volum', 'button', 'becom', 'unrespons', 'time', 'camera', 'complet', 'blank', 'blur', 'i', 'unabl', 'take', 'pictur', 'also', 'lag', 'not', 'realli', 'recommend'], ['good', 'use', 'similar', 'iphon'], ['advertis'], ['fake', 'phone', 'not', 'origin', 'iphon', 'not', 'recommend', 'anyon', 'not', 'wast', 'money'], ['fast', 'ship', 'easi'], ['good'], ['ha', 'use', 'china', 'howev', 'use', 'iphon', 'care', 'chines', 'appl', 'store', 'never', 'help', 'repair', 'iphon', 'america'], ['not', 'sell', 'rubber', 'right'], ['perfect'], ['excellet'], ['honest', 'disappoint', 'phone', 'box', 'open', 'phone', 'not', 'look', 'new', 'time', 'return', 'berceus', 'gift', 'somebodi'], ['perfect', 'realli', 'unlock', 'need', 'south', 'america'], ['inntim', 'perfect'], ['arriv', 'time', 'describ'], ['awesome'], ['defect', 'anyth', 'product', 'good', 'condit'], ['everyth', 'went', 'right', 'good', 'deal', 'thank'], ['previous', 'review', 'point', 'iphon', 'not', 'unlock', 'peopl', 'specif', 'buy', 'use', 'intern', 'would', 'recommend', 'seller'], ['excel'], ['ok'], ['ok', 'tks'], ['thank', 'prudact'], ['excel', 'thank', 'much'], ['good'], ['best', 'iphon', 'yet'], ['advertis'], ['nice', 'good', 'nicethank', 'much'], ['love', 'design', 'great', 'phone', 'sometim', 'home', 'power', 'volum', 'button', 'becom', 'unrespons', 'time', 'camera', 'complet', 'blank', 'blur', 'i', 'unabl', 'take', 'pictur', 'also', 'lag', 'not', 'realli', 'recommend'], ['order', 'phone', 'not', 'come', 'unlock', 'even', 'though', 'descript', 'say', 'got', 'unlock', 'came', 'mobil', 'sim', 'ask', 'activ'], ['iphon'], ['awasom', 'need', 'work', 'worldwid'], ['best', 'noth'], ['nice', 'good', 'nicethank', 'much'], ['say', 'thank', 'everyth', 'right'], ['everyth', 'perfect'], ['love'], ['defect', 'anyth', 'product', 'good', 'condit'], ['excel'], ['sorri', 'say', 'check', 'serial', 'number', 'brand', 'new', 'phone', 'found', 'alreadi', 'activ', 'store', 'sold', 'realli', 'decreas', 'valu', 'countri'], ['perfect'], ['excel'], ['phone', 'got', 'iphon', 'not', 'unlock', 'phone', 'one', 'list', 'verizon', 'lock', 'product', 'descript', 'said', 'appl', 'iphon', 'unlock', 'us', 'version', 'mislead', 'advertis', 'updat', 'though', 'not', 'activ', 'phone', 'model', 'recogn', 'digicel', 'sim', 'network', 'easili', 'upgrad', 'review', 'star'], ['receiv', 'iphon', 'great', 'ship', 'time', 'work', 'perfect'], ['care', 'order', 'phone', 'not', 'unlock', 'phone', 'setup', 'us', 'resel', 'flex', 'polici', 'look', 'like', 'purchas', 'best', 'buy', 'sim', 'free', 'could', 'not', 'activ', 'intern', 'sim', 'card', 'luckili', 'found', 'someon', 'us', 'verizon', 'sim', 'card', 'instal', 'durn', 'activ', 'process', 'activ', 'verizon', 'card', 'abl', 'instal', 'intern', 'sim', 'card', 'everyth', 'look', 'purchas', 'one', 'phone', 'intern', 'make', 'sure', 'us', 'sim', 'card', 'go', 'activ', 'process', 'research', 'us', 'resel', 'flex', 'polici'], ['awasom', 'need', 'work', 'worldwid'], ['exact', 'promis'], ['good'], ['previous', 'review', 'point', 'iphon', 'not', 'unlock', 'peopl', 'specif', 'buy', 'use', 'intern', 'would', 'recommend', 'seller'], ['excel'], ['purchas', 'refurbish', 'phone', 'tell', 'refurbish', 'vs', 'new', 'not', 'come', 'iphon', 'box', 'refurb', 'sticker', 'phone', 'could', 'not', 'find', 'issu', 'complaint', 'cheap', 'lightn', 'cabl', 'wall', 'charger', 'came', 'silli', 'buy', 'nicer', 'combo', 'dollar', 'absolut', 'love', 'phone', 'much', 'better', 'not', 'bend', 'pocket', 'like', 'pos'], ['want'], ['like', 'not', 'like', 'size', 'get', 'se'], ['cute', 'phone', 'fast', 'deliv'], ['awesom'], ['muy', 'buen', 'producto'], ['good', 'iphon'], ['cut', 'edg', 'phone', 'compar', 'smaller', 'packag', 'daughter', 'love'], ['great', 'perform', 'pocket', 'size', 'love'], ['pleas', 'general', 'get', 'use', 'not', 'tri', 'everyth', 'yet', 'not', 'realiz', 'much', 'stuff', 'use', 'data', 'instead', 'find', 'annoy', 'pleas', 'see', 'much', 'done', 'camera'], ['good'], ['easi', 'activ', 'sim', 'card', 'work', 'great'], ['advertis', 'issu', 'experienc'], ['iphon', 'stop', 'workingi', 'venezuela', 'difficult', 'send', 'possibl', 'similar', 'equip', 'compar'], ['love', 'phone', 'worth', 'money'], ['appl', 'iphon', 'chines', 'version', 'ha', 'languag', 'browser', 'app', 'store', 'set', 'chines', 'languag', 'almost', 'imposs', 'chang', 'also', 'earphon', 'jack', 'small', 'not', 'fit', 'origin', 'iphon', 'earphon', 'earphon', 'audio', 'jack'], ['expect'], ['bogus', 'phone', 'not', 'unlock', 'lock', 'trac', 'phone'], ['perfect'], ['mess', 'screen', 'not', 'afford', 'send', 'back', 'not', 'phone'], ['not', 'sure', 'say', 'negat', 'iphon', 'love', 'anyway', 'product', 'bought', 'match', 'descript', 'problem', 'use', 'phone', 'two', 'second', 'open', 'packag', 'great', 'great', 'great', 'experi'], ['alway', 'android', 'decid', 'tri', 'appl', 'phone', 'size', 'other', 'one', 'say', 'easi', 'use', 'found', 'use', 'android', 'thing', 'nicer', 'exampl', 'use', 'bluetooth', 'answer', 'phone', 'littl', 'faster', 'switch', 'pair', 'littl', 'easier', 'use', 'appl', 'id', 'found', 'pain', 'not', 'someth', 'android', 'hate', 'sign', 'stuff', 'need', 'thing', 'pictur', 'email', 'etc', 'like', 'size', 'phone', 'main', 'reason', 'tri', 'overal', 'like', 'not', 'justifi', 'cost', 'appl', 'charg', 'name'], ['good'], ['disappoint', 'not', 'work', 'verizon', 'network', 'i', 'return'], ['i', 'satisfi', 'phone', 'compani', 'phone', 'ship', 'right', 'away', 'arriv', 'schedul', 'deliveri', 'date', 'i', 'use', 'littl', 'week', 'love', 'look', 'work', 'brand', 'new', 'i', 'happi', 'result', 'purchas'], ['receiv', 'blu', 'phone'], ['phone', 'not', 'order', 'disappoint', 'not', 'order'], ['great', 'servic', 'awesom', 'phone'], ['came', 'origin', 'packag', 'new', 'could', 'shipment', 'not', 'take', 'long', 'handl', 'good'], ['phone', 'perfect', 'condit'], ['love', 'phone', 'worth', 'money'], ['excel', 'best', 'iphon', 'good', 'price', 'mp', 'front', 'camera', 'fast', 'processor', 'touch', 'id', 'fast', 'product', 'recommend', 'peopl', 'like', 'phone', 'maneuver', 'screen', 'carri', 'pocket', 'pant', 'iphon', 'inch', 'screen'], ['order', 'unlock', 'version', 'iphon', 'se', 'lock', 'version', 'not', 'use', 'safe', 'china', 'earphon', 'insid'], ['perfect', 'thank'], ['exact', 'want', 'fast', 'ship'], ['good', 'phone', 'good', 'seller'], ['perfect'], ['compani', 'great', 'work', 'pleas', 'product', 'got', 'price', 'paid'], ['account', 'hack', 'bought', 'knowledg'], ['good', 'fast', 'phone', 'good', 'betteri', 'life', 'not', 'need', 'big', 'screen', 'ipad'], ['meet', 'expect', 'sure'], ['everyth', 'thank'], ['case', 'natur', 'evolut', 'se', 'phone', 'fullfil', 'expect'], ['good', 'product', 'excel'], ['phone', 'came', 'excel', 'condit', 'unlock', 'easi', 'use', 'love', 'phone', 'sinc', 'may', 'work', 'fine'], ['fantast'], ['phone', 'work', 'well', 'keep', 'qualiti', 'realabilityiam', 'satiesfi', 'perform'], ['receiv', 'blu', 'phone'], ['phone', 'work', 'well', 'keep', 'qualiti', 'realabilityiam', 'satiesfi', 'perform'], ['excel', 'deliveri', 'excel', 'product', 'excel', 'enjoy'], ['bought', 'new', 'phone', 'upgrad', 'iphon'], ['scratch', 'back', 'not', 'notic', 'unless', 'look', 'work', 'amaz', 'fast', 'i', 'quit', 'satisfi', 'peopl', 'like', 'bigger', 'phone', 'buy', 'read', 'review', 'lot', 'peopl', 'say', 'small', 'realli', 'normal', 'size', 'iphon', 'larg', 'prefer', 'larger', 'phone', 'i', 'would', 'suggest', 'iphon', 'phone', 'otherwis', 'similar', 'perform', 'rise', 'iphon', 'not', 'touch', 'not', 'care', 'also', 'around', 'cheaper', 'iphon', 'thing', 'think', 'love', 'design', 'also', 'seem', 'eleg', 'i', 'overal', 'happi', 'se'], ['good', 'phone'], ['everi', 'thing', 'ok'], ['littl', 'skeptic', 'buy', 'electron', 'onlin', 'especi', 'phone', 'hesit', 'whether', 'buy', 'i', 'glad', 'perfect', 'condit', 'exact', 'model', 'describ', 'happi', 'purchas'], ['good'], ['lock', 'verizon', 'not', 'unlock'], [], ['yes'], ['phone', 'excel', 'work', 'right', 'box', 'provid'], ['awesom'], ['right', 'size', 'perfect', 'perfom'], ['meet', 'expect', 'sure'], ['nice', 'phone'], ['perfect'], ['came', 'time', 'work', 'great'], ['got', 'decent', 'price', 'around', 'purchas', 'bit', 'bullet', 'phone', 'iphon', 'broken', 'beyond', 'repair', 'remov', 'sim', 'card', 'iphon', 'insert', 'iphon', 'se', 'plug', 'itun', 'viola', 'beauti', 'oper', 'open', 'brown', 'ship', 'box', 'surpris', 'not', 'pad', 'insid', 'everyth', 'great', 'shape', 'white', 'iphon', 'box', 'still', 'seal', 'phone', 'protect', 'film', 'scratch', 'i', 'not', 'sure', 'not', 'issu', 'sinc', 'remov', 'thing', 'would', 'made', 'experi', 'better', 'would', 'faster', 'ship', 'beggar', 'not', 'chooser'], ['jet', 'phone', 'wow'], ['absolut', 'want', 'iphon', 'se', 'final', 'one'], ['good', 'product', 'excel'], ['excel', 'could', 'not', 'better'], ['appl', 'iphon', 'chines', 'version', 'ha', 'languag', 'browser', 'app', 'store', 'set', 'chines', 'languag', 'almost', 'imposs', 'chang', 'also', 'earphon', 'jack', 'small', 'not', 'fit', 'origin', 'iphon', 'earphon', 'earphon', 'audio', 'jack'], ['phone', 'excel', 'work', 'right', 'box', 'provid'], ['arriv', 'would', 'not', 'turn', 'return', 'right', 'away'], ['yes'], ['todo', 'ok'], ['gave', 'star', 'iphon', 'receiv', 'phone', 'found', 'pin', 'key', 'open', 'sim', 'card', 'slot', 'miss', 'open', 'sim', 'card', 'slot', 'verizon', 'sim', 'think', 'phone', 'not', 'brand', 'new'], ['biggest', 'mistak', 'ever', 'made', 'sent', 'wrong', 'phone', 'charger', 'european', 'set', 'someon', 'icloud', 'info', 'paid', 'overnight', 'final', 'got', 'took', 'appl', 'store', 'would', 'not', 'ever', 'work'], ['not', 'unlock', 'wast', 'time', 'money'], ['jet', 'phone', 'wow'], ['like', 'phone', 'expect', 'process', 'bit', 'faster', 'iphon', 'not', 'huge', 'differ'], ['great'], ['expect'], ['great', 'seller', 'thank', 'iphon', 'describ'], ['love', 'iphon', 'se', 'not', 'big', 'clunki', 'phone', 'person', 'bell', 'whistl', 'need', 'get', 'day'], ['account', 'hack', 'bought', 'knowledg'], ['excel', 'deliveri', 'excel', 'product', 'excel', 'enjoy'], ['phone', 'not', 'work', 'verizon', 'person', 'bought', 'took', 'care', 'everyth', 'even', 'though', 'not', 'work', 'still', 'good', 'experi'], [], ['good'], ['good', 'phone', 'bought', 'good', 'price'], ['order', 'promis', 'time'], ['excel', 'thank'], ['excel', 'buy', 'would', 'definit', 'problem'], ['great', 'perform', 'pocket', 'size', 'love'], ['biggest', 'mistak', 'ever', 'made', 'sent', 'wrong', 'phone', 'charger', 'european', 'set', 'someon', 'icloud', 'info', 'paid', 'overnight', 'final', 'got', 'took', 'appl', 'store', 'would', 'not', 'ever', 'work'], ['near', 'featur', 'iphon', 'packag', 'fingerprint', 'sensor', 'quick', 'accur', 'camera', 'amaz', 'chip', 'lightn', 'fast', 'oh', 'still', 'headphon', 'jack', 'buy', 'cheaper'], ['appl', 'daughter', 'seem', 'like'], ['pretti', 'good'], ['not', 'unlock', 'wast', 'time', 'money'], ['good', 'fast', 'phone', 'good', 'betteri', 'life', 'not', 'need', 'big', 'screen', 'ipad'], ['good', 'work', 'proper'], ['good', 'qualiti', 'nice', 'perform'], ['love', 'phone', 'exact', 'describ', 'work', 'good', 'got', 'day', 'ago', 'not', 'problem', 'i', 'let', 'know', 'next', 'week'], ['yes'], ['wow', 'love', 'size', 'higher', 'build', 'qualiti', 'se', 'switch', 'back', 'iphon', 'great', 'seller', 'fast', 'ship'], ['se', 'look', 'apart', 'rose', 'gold', 'detail', 'also', 'new', 'mani', 'way', 'screen', 'resolut', 'much', 'improv', 'perform', 'featur', 'pleas'], ['china', 'stuff'], ['bought', 'new', 'iphon', 'receiv', 'box', 'open', 'amazon', 'servic', 'told', 'phone', 'work', 'conclusión', 'bad', 'purchas', 'bad', 'servic'], ['phone', 'great', 'perfect', 'combin', 'size', 'power', 'includ', 'great', 'camera'], ['happi', 'content', 'first', 'phone', 'friend', 'recommod', 'know', 'enjoy', 'evert', 'day', 'bennefit', 'product'], ['perfect', 'item'], [], ['love'], ['i', 'excel', 'experi', 'buy', 'manufactur', 'refurbish', 'product', 'amazon', 'prime', 'except', 'watch', 'came', 'origin', 'packag', 'appropri', 'accessori', 'mark', 'blemish', 'noth', 'wrong', 'charg', 'hour', 'useabl', 'hiccup', 'i', 'sinc', 'open', 'box', 'nice', 'devic', 'reason', 'price'], ['great', 'watch', 'love', 'wish', 'watch', 'would', 'came', 'charg', 'sinc', 'take', 'two', 'hour', 'download', 'updat', 'need', 'put', 'charger', 'min', 'would', 'even', 'turn', 'start', 'updat', 'not', 'upset', 'compani', 'watch', 'need', 'updat', 'upset', 'charg', 'hand', 'overal', 'great', 'deliveri', 'day', 'never', 'mad'], ['honest', 'fit', 'bit', 'part', 'bare', 'function', 'kelt', 'recharg', 'worri', 'batteri', 'die', 'random', 'like', 'regular', 'watch', 'pay', 'conveni', 'bare'], ['great'], ['like', 'new', 'thing', 'think', 'includ', 'wall', 'charger', 'difficult', 'charg', 'without', 'one'], ['everyth', 'show', 'right'], ['great', 'condit'], ['work', 'like', 'gem', 'wife', 'love', 'birthday', 'gift', 'bit', 'unsur', 'glad', 'took', 'risk', 'would', 'buy'], ['hesit', 'order', 'refurbish', 'product', 'i', 'want', 'appl', 'watch', 'could', 'not', 'justifi', 'price', 'tag', 'decid', 'go', 'refurb', 'not', 'like', 'i', 'return', 'well', 'love', 'came', 'packag', 'look', 'brand', 'new', 'new', 'charger', 'two', 'wrist', 'band', 'i', 'happi', 'purchas', 'work', 'like', 'brand', 'new'], ['product', 'great', 'condit', 'not', 'issu', 'downfal', 'not', 'come', 'wall', 'plug', 'like', 'non', 'refurbish', 'model'], ['k'], ['gps', 'main', 'screen', 'clutter', 'useless', 'non', 'remov', 'app', 'manual', 'instruct', 'intuit', 'batteri', 'life', 'dismal', 'purchas', 'gift', 'wife', 'return', 'three', 'not', 'half', 'stuff', 'samsung', 'band', 'yet'], ['bad', 'complet', 'embarrass', 'gift', 'not', 'work'], ['order', 'yesterday', 'order', 'one', 'one', 'husband', 'watch', 'came', 'mine', 'not', 'box', 'half', 'band', 'i', 'go', 'give', 'anoth', 'shot', 'disappoint', 'open', 'box'], ['item', 'work', 'great', 'quick', 'ship', 'far', 'satisfi', 'issu', 'short', 'batteri', 'life', 'appl', 'watch', 'thus', 'far', 'someth', 'need', 'address', 'near', 'futur'], ['awesom', 'watch', 'box', 'not', 'origin', 'everyth', 'els'], ['not', 'updat', 'watch', 'charger', 'charg', 'connect', 'not', 'know', 'bought', 'not', 'go', 'work', 'lot', 'money', 'someth', 'not', 'work', 'proper'], ['not', 'say', 'refurbish', 'would', 'never', 'know', 'absolut', 'scratch', 'ding', 'work', 'perfect', 'come', 'charger', 'larg', 'small', 'wrist', 'band', 'would', 'definit', 'buy'], ['love', 'appl', 'watch'], ['notic', 'hairlin', 'fractur', 'week', 'ago', 'yesterday', 'fulli', 'crack', 'thing', 'hold', 'everyth', 'togeth', 'screw', 'i', 'week'], ['love', 'glitch', 'refurbish'], ['good'], ['great', 'experi', 'choos', 'dealfish'], ['thank', 'much', 'came', 'look', 'new', 'not', 'even', 'abl', 'tell', 'refurbish', 'updat', 'video', 'gracia', 'adoro', 'mi', 'appl', 'watch', 'ni', 'si', 'quiera', 'parec', 'que', 'es', 'refurbish'], ['perfect', 'condit', 'work', 'great', 'fast', 'deliveri', 'complaint'], ['product', 'sign', 'use', 'work', 'perfect', 'deliv', 'day'], ['love', 'watch', 'came', 'time', 'fashion', 'four', 'day', 'due', 'batteri', 'charg', 'everyth', 'els', 'fabul', 'great', 'seller'], ['love', 'describ'], ['gift', 'wife', 'love'], ['great'], ['good'], ['gift', 'daughter', 'great', 'product', 'price'], ['realli', 'enjoy', 'phone', 'fact', 'unlock', 'dual', 'sim', 'unfortun', 'overload', 'bloatwar', 'coupl', 'luxuri', 'lack', 'realli', 'love', 'phone', 'speed', 'eas', 'use', 'capac', 'not', 'wait', 'see', 'next', 'one'], ['zenfon', 'delux', 'special', 'edit', 'gbrealli', 'design', 'good', 'packag', 'cover', 'box', 'gb', 'intern', 'box', 'gb', 'gb', 'memori', 'use', 'thought', 'might', 'month', 'later', 'updat', 'sar', 'buy', 'coupl', 'week', 'problem', 'start', 'network', 'stick', 'net', 'work', 'not', 'reach', 'subscrib', 'unavail', 'caller', 'not', 'call', 'silenc', 'hang', 'dial', 'screen', 'receiv', 'call', 'support', 'month', 'promis', 'updat', 'updat', 'came', 'situat', 'not', 'improv', 'type', 'vip', 'servic', 'month', 'purchas', 'faulti', 'screen', 'phone', 'not', 'fall', 'not', 'dive'], ['great', 'phone', 'packag', 'could', 'littl', 'nicer', 'got', 'safe', 'look', 'work', 'like', 'new', 'look', 'around', 'good', 'android', 'not', 'go', 'slow', 'one'], ['test', 'phone', 'coupl', 'day', 'bought', 'gift', 'experi', 'work', 'realli', 'fluent', 'even', 'bunch', 'app', 'open', 'use', 'asus', 'tool', 'purg', 'memori', 'close', 'app', 'opinion', 'much', 'peopl', 'not', 'like', 'go', 'deep', 'phone', 'option', 'great', 'focus', 'expect', 'realli', 'realli', 'fast', 'quit', 'great', 'price', 'night', 'could', 'littl', 'better', 'still', 'realli', 'good', 'recommend', 'phone', 'someon', 'look', 'good', 'phone', 'afford', 'price', 'work', 'perfect', 'sim', 'slot', 'pretti', 'cool', 'well'], ['phone'], ['phone', 'day', 'year', 'old', 'daughter', 'let', 'fall', 'ground', 'guess', 'screen', 'crack', 'bottom', 'look', 'onlin', 'screen', 'replac', 'day', 'not', 'find', 'not', 'even', 'china', 'tell', 'phone', 'made', 'not', 'wast', 'money'], ['awesom', 'devic', 'problem', 'jack'], ['phone', 'batteri', 'replac', 'pri', 'open', 'back', 'difficult', 'certain', 'plastic', 'break', 'replac', 'batteri', 'phone', 'shown', 'android', 'report', 'phone', 'updat', 'even', 'though', 'asus', 'said', 'would', 'push', 'earli', 'year', 'not', 'view', 'angl', 'center', 'view', 'divin', 'creat', 'cloud', 'screen', 'view', 'googl', 'play', 'servic', 'unclear', 'phone', 'phone', 'indic', 'research', 'show', 'bloatwar', 'control', 'pop', 'up', 'cross', 'market', 'everywher', 'phone', 'asus', 'phone'], ['great', 'phone', 'fast', 'plenti', 'memori', 'touch', 'screen', 'littl', 'sensit', 'mayb', 'adjust'], ['product', 'descript', 'say', 'unlock', 'gsm', 'dual', 'activ', 'sim', 'smartphon', 'compat', 'gsm', 'network', 'includ', 'ting', 'list', 'call', 'decept'], ['great', 'phone', 'price', 'pick', 'work', 'good', 'new', 'phone', 'bright', 'screen', 'great', 'camera'], ['gps', 'signal', 'recept', 'not', 'good', 'celli', 'test', 'anoth', 'cell', 'anoth', 'brand', 'signal', 'much', 'better'], ['get', 'hot', 'not', 'know', 'mine', 'charg', 'restart', 'self', 'send', 'email', 'asus', 'told', 'go', 'nearest', 'place', 'repair', 'review', 'watch', 'thought', 'go', 'great', 'phone', 'not'], ['price', 'good', 'phone', 'larg', 'amount', 'bloatwar', 'load', 'phone', 'howev', 'remov', 'call', 'qualiti', 'good', 'sound', 'qualiti', 'fair', 'not', 'loud', 'batteri', 'life', 'bad', 'remov', 'lot', 'needless', 'app', 'screen', 'clear', 'bright', 'qualcomm', 'processor', 'quit', 'fast', 'especi', 'kill', 'task', 'remov', 'bloatwar', 'good', 'bargain', 'unlock', 'root', 'instal', 'instal', 'recoveri', 'twrp', 'instal', 'titanium', 'remov', 'asus', 'bloatwar'], ['asus', 'zenfon', 'great', 'phone', 'general', 'mani', 'consid', 'budget', 'phone', 'price', 'run', 'great', 'newli', 'releas', 'android', 'larger', 'capac', 'faster', 'processor', 'iphon', 'plus', 'pretti', 'dang', 'big', 'pictur', 'nice', 'con', 'slow', 'batteri', 'low', 'i', 'talk', 'less', 'realli', 'good', 'phone', 'yes', 'face', 'swap', 'snapchat'], ['defect', 'found', 'late', 'return', 'fight', 'asus'], ['love', 'phone', 'much', 'bought', 'dad', 'one', 'friend', 'present', 'love', 'new', 'featur', 'remov', 'batteri', 'think', 'phone', 'expect', 'sinc', 'laser', 'not', 'notic', 'differ', 'except', 'remov', 'batteri', 'brother', 'regular', 'zenfon', 'bought', 'last', 'year', 'hope', 'next', 'one', 'come', 'littl', 'better', 'spec'], ['bought', 'phone', 'two', 'time', 'time', 'screen', 'went', 'blank', 'first', 'time', 'happen', 'two', 'week', 'second', 'time', 'happen', 'min', 'set'], ['purchas', 'phone', 'receiv', 'yesterday', 'day', 'half', 'must', 'say', 'job', 'quit', 'well', 'i', 'avid', 'android', 'user', 'pretti', 'comfort', 'knowledg', 'phone', 'main', 'purpos', 'purchas', 'person', 'phone', 'work', 'phone', 'got', 'tire', 'lug', 'around', 'galaxi', 'mega', 'inch', 'phone', 'person', 'phone', 'galaxi', 'work', 'phone', 'longest', 'i', 'look', 'one', 'phone', 'could', 'follow', 'sim', 'sim', 'sim', 'android', 'handset', 'inch', 'screen', 'ram', 'price', 'sd', 'card', 'batteryther', 'sever', 'dual', 'sim', 'phone', 'howev', 'second', 'sim', 'slot', 'end', 'year', 'earli', 'next', 'year', 'servic', 'nonexist', 'mean', 'wast', 'purchas', 'live', 'florida', 'major', 'carrier', 'start', 'phase', 'servic', 'i', 'purchas', 'soni', 'xperia', 'dual', 'sim', 'sim', 'due', 'voic', 'coverag', 'horribl', 'data', 'nonexist', 'handset', 'problem', 'encount', 'lot', 'handset', 'blu', 'product', 'exampl', 'ram', 'depend', 'usag', 'noth', 'notic', 'differ', 'premium', 'handset', 'higher', 'not', 'knock', 'blu', 'phone', 'know', 'budget', 'handset', 'ram', 'complet', 'joke', 'function', 'smartphon', 'due', 'far', 'phone', 'ever', 'use', 'one', 'custom', 'samsung', 'htc', 'soni', 'googl', 'handset', 'custom', 'screen', 'text', 'color', 'font', 'etc', 'within', 'app', 'without', 'root', 'not', 'gone', 'thru', 'featur', 'yetpricei', 'got', 'phone', 'includ', 'case', 'phone', 'temper', 'glass', 'inch', 'screen', 'ram', 'intern', 'memori', 'sd', 'slot', 'dual', 'sim', 'phone', 'know', 'come', 'even', 'close', 'price', 'ppi', 'not', 'mega', 'pixel', 'back', 'mega', 'pixel', 'front', 'ram', 'snappi', 'not', 'snappi', 'find', 'slight', 'bit', 'lagyou', 'record', 'voic', 'callcamerai', 'seen', 'peopl', 'hear', 'give', 'bad', 'review', 'camera', 'probabl', 'compar', 'iphon', 'camera', 'great', 'job', 'well', 'take', 'high', 'qualiti', 'pic', 'front', 'backconnectivityth', 'main', 'reason', 'purchas', 'dual', 'sim', 'slot', 'pleas', 'note', 'sim', 'sim', 'etc', 'use', 'one', 'sim', 'time', 'still', 'receiv', 'call', 'text', 'not', 'manual', 'say', 'sim', 'use', 'coverag', 'not', 'great', 'sim', 'tri', 'cricket', 'wireless', 'slot', 'howev', 'learn', 'tinker', 'phone', 'set', 'phone', 'dual', 'sim', 'forward', 'mean', 'not', 'receiv', 'call', 'sim', 'go', 'sim', 'not', 'receiv', 'call', 'sim', 'go', 'sim', 'not', 'appli', 'text', 'call', 'also', 'want', 'move', 'data', 'one', 'sim', 'exampl', 'person', 'phone', 'work', 'phone', 'move', 'data', 'either', 'sim', 'card', 'touch', 'button', 'run', 'low', 'data', 'either', 'sim', 'move', 'back', 'cricket', 'i', 'sure', 'work', 'gsm', 'carrier', 'unsur', 'phone', 'get', 'activ', 'via', 'imei', 'mean', 'contact', 'activ', 'phone', 'allow', 'certain', 'unlock', 'phone', 'top', 'screen', 'say', 'howev', 'phone', 'lte', 'not', 'show', 'lte', 'icon', 'howev', 'go', 'set', 'status', 'see', 'cellular', 'network', 'lte', 'bit', 'misleadingno', 'nfcwas', 'major', 'deal', 'breaker', 'definit', 'annoy', 'not', 'bump', 'phone', 'wife', 'trade', 'pictur', 'probabl', 'use', 'featur', 'everi', 'six', 'monthsbatteryi', 'must', 'admit', 'batteri', 'life', 'not', 'greatest', 'not', 'phone', 'use', 'differ', 'modem', 'left', 'hous', 'not', 'use', 'batteri', 'saver', 'yet', 'may', 'go', 'even', 'longer', 'phone', 'modem', 'sim', 'card', 'slot', 'constant', 'ping', 'tower', 'time', 'picki', 'icon', 'graphic', 'look', 'bit', 'cheesi', 'date', 'not', 'give', 'phone', 'premium', 'look', 'howev', 'plus', 'side', 'icon', 'updatedoveral', 'think', 'great', 'phone', 'purpos', 'not', 'bad', 'phone', 'definit', 'not', 'high', 'premium', 'feel', 'base', 'upon', 'featur', 'custom', 'great', 'phone', 'said', 'avid', 'android', 'fan', 'think', 'enjoy', 'question', 'pleas', 'feel', 'free', 'ask'], ['updat', 'year', 'later', 'reduc', 'rate', 'one', 'everi', 'updat', 'phone', 'problem', 'show', 'lack', 'test', 'softwar', 'asus', 'past', 'year', 'follow', 'problem', 'microphon', 'stop', 'work', 'numer', 'occas', 'requir', 'factori', 'reset', 'use', 'speaker', 'phone', 'latest', 'updat', 'intern', 'memori', 'fill', 'log', 'file', 'not', 'automat', 'delet', 'ringer', 'speaker', 'stop', 'work', 'asus', 'love', 'phone', 'especi', 'pay', 'motorola', 'defi', 'soni', 'xperia', 'v', 'past', 'year', 'phone', 'bigger', 'size', 'memori', 'ram', 'intern', 'memori', 'like', 'bright', 'screen', 'even', 'ram', 'keep', 'open', 'app', 'gb', 'intern', 'memori', 'appsmemori', 'card', 'slot', 'music', 'photosstandard', 'android', 'type', 'interfac', 'per', 'previous', 'phonesdu', 'sim', 'sim', 'card', 'not', 'time', 'asus', 'web', 'storagethat', 'use', 'phone', 'backupstak', 'decent', 'photosha', 'decent', 'sound', 'day', 'batteri', 'life', 'medium', 'use', 'call', 'internetcorn', 'gorilla', 'glass', 'android', 'yetno', 'nfcmost', 'annoy', 'bottom', 'menu', 'button', 'not', 'great', 'step', 'soni', 'xperia', 'v'], ['bought', 'phone', 'juli', 'i', 'write', 'octob', 'phone', 'not', 'charg', 'anymor', 'sold', 'old', 'phone', 'i', 'heard', 'mani', 'good', 'thing', 'zenfon', 'long', 'stori', 'short', 'not', 'even', 'charg', 'need', 'get', 'new', 'phone', 'not', 'recommend', 'purchas', 'phone'], ['back', 'camera', 'need', 'focus', 'someth', 'blackberri', 'bold', 'take', 'great', 'pictur', 'autofocus', 'blackberri', 'realli', 'good', 'zen', 'autofocus', 'work', 'like', 'hit', 'miss', 'one', 'time', 'great', 'get', 'weird', 'miss', 'ok', 'back', 'cam', 'moodi', 'front', 'cam', 'great', 'make', 'look', 'good', 'issu', 'front', 'cam', 'music', 'much', 'better', 'not', 'touch', 'eq', 'harm', 'ear', 'auto', 'enhanc', 'best', 'bet', 'overal', 'phone', 'boss', 'best', 'phone', 'price', 'restart', 'phone', 'twice', 'plug', 'usb', 'headphon', 'work', 'straight', 'away', 'mess', 'around', 'mic', 'control', 'usb', 'headphon', 'caus', 'mic', 'phone', 'turn', 'peopl', 'could', 'not', 'hear', 'talk', 'even', 'headphon', 'remov', 'restart', 'back', 'normal', 'bare', 'mind', 'unconvent', 'rememb', 'said', 'usb', 'charg', 'port', 'one', 'time', 'phone', 'probabl', 'updat', 'someth', 'caus', 'phone', 'slow', 'quick', 'restart', 'solv', 'problem', 'one', 'tip', 'not', 'instal', 'third', 'parti', 'batteri', 'app', 'cut', 'batteri', 'life'], ['work', 'great'], ['great', 'phone', 'long', 'batteri', 'life', 'easi', 'brush', 'edg', 'screen', 'random', 'swipe', 'batteri', 'also', 'heat', 'heavi', 'use', 'camera', 'pretti', 'good', 'zoom', 'see', 'fuzz', 'bloatwar', 'minim', 'disabl', 'nice', 'asus', 'featur', 'ad', 'bluelight', 'filter', 'set', 'one', 'hand', 'oper', 'shrink', 'screen', 'one', 'side', 'autostart', 'manag', 'boost', 'program', 'close', 'background', 'fast', 'iwth', 'ram', 'effect', 'storag', 'support', 'microsd', 'inde', 'laser', 'focus', 'use', 'app', 'measur', 'distanc', 'away', 'come', 'android', 'lollipop', 'make', 'sure', 'look', 'compat', 'case', 'not', 'work', 'zenfon', 'case'], ['find', 'detail', 'wonder', 'cell', 'agre', 'batteri', 'life', 'great', 'last', 'day', 'averag', 'use', 'most', 'connect', 'wifi', 'less', 'realli', 'fast', 'not', 'heavi', 'got', 'version', 'ad', 'microsd', 'enough', 'sim', 'card', 'cours', 'one', 'onlin', 'two', 'thing', 'hate', 'asus', 'cellphon', 'first', 'bad', 'nativ', 'origin', 'app', 'watch', 'media', 'download', 'app', 'replac', 'done', 'love', 'samsung', 'motorola', 'watch', 'media', 'worst', 'give', 'cell', 'child', 'video', 'block', 'player', 'order', 'prevent', 'exit', 'video', 'oop', 'touch', 'menu', 'bottom', 'stop', 'app', 'child', 'worst', 'exit', 'go', 'back', 'cell', 'menu', 'main', 'screen', 'not', 'problem', 'samsung', 'moto', 'block', 'cell', 'watch', 'video', 'bottom', 'kind', 'disabl', 'second', 'thing', 'hate', 'power', 'bottom', 'sensit', 'find', 'cellphon', 'reboot', 'beacus', 'not', 'notic', 'push', 'insid', 'pocket', 'sensit', 'worst', 'case', 'bought', 'https'], ['okay', 'phone', 'occas', 'get', 'blue', 'screen', 'bsod', 'reboot'], ['second', 'phone', 'not', 'much', 'compar', 'extrem', 'reliabl', 'got', 'nice', 'case', 'drop', 'phone', 'good', 'time', 'real', 'bad', 'not', 'crack', 'product', 'asus', 'like', 'laptop', 'cheap', 'price', 'item', 'qualiti', 'fantast', 'alway', 'high', 'recommend', 'bad', 'thing', 'phone', 'lag', 'problem', 'record', 'video', 'night', 'vision', 'nightvis', 'option', 'great', 'photo', 'want', 'record', 'porno', 'dim', 'lit', 'room', 'forget'], ['great', 'phone', 'happi', 'purchas', 'camera', 'great', 'lot', 'custom', 'option'], ['love', 'phone', 'fast', 'camera', 'excel', 'consid', 'price', 'restart', 'phone', 'week', 'app', 'start', 'act', 'littl', 'goofi'], ['great', 'phone', 'love', 'ram', 'perfect', 'enough', 'user', 'instal', 'lot', 'app', 'rom', 'great', 'processor', 'also', 'great', 'screen', 'camera', 'month', 'recommend', 'i', 'also', 'asus', 'lover', 'best', 'thank'], ['not', 'expectedth', 'camera', 'bad', 'resolutionth', 'phone', 'stuck', 'open', 'wirelessth', 'system', 'not', 'nice', 'expectedi', 'not', 'happi'], ['bought', 'phone', 'brother', 'usa', 'love', 'phone', 'uniqu', 'featur', 'knew', 'like', 'much', 'decent', 'phone', 'price', 'rang', 'expect', 'amazon', 'asus', 'zenfon', 'seri', 'got', 'overal', 'good', 'review', 'design', 'featur'], ['son', 'love', 'new', 'phone'], ['excel', 'not', 'fast', 'focus', 'expect', 'though', 'take', 'nice', 'pic', 'focus', 'storag', 'ram', 'problem', 'month', 'design'], ['read', 'review', 'look', 'look', 'answer', 'question', 'phone', 'less', 'week', 'suppos', 'biggest', 'batteri', 'market', 'meant', 'would', 'last', 'switch', 'htc', 'year', 'start', 'get', 'hot', 'enough', 'batteri', 'half', 'day', 'phone', 'last', 'day', 'not', 'said', 'get', 'hot', 'play', 'kind', 'game', 'look', 'tri', 'figur', 'instal', 'someth', 'plus', 'not', 'save', 'pictur', 'son', 'send', 'pictur', 'month', 'old', 'grandson', 'not', 'save', 'hard', 'talk', 'long', 'could', 'save', 'pic', 'not', 'get', 'hot', 'could', 'program', 'differ', 'notif', 'text', 'messag', 'contact', 'like', 'ring', 'tone', 'would', 'probabl', 'keep', 'made', 'bag', 'decis', 'got', 'phone', 'not', 'look', 'asus', 'soo', 'unhappi', 'wait', 'wait', 'get', 'enough', 'cash', 'order', 'phone'], ['bought', 'amazon', 'warehous', 'deal', 'phone', 'came', 'excel', 'condit', 'phone', 'good', 'howev', 'asus', 'would', 'not', 'releas', 'android', 'updat', 'os', 'zen', 'app', 'includ', 'ui', 'better', 'expect', 'go', 'revert', 'stock', 'android', 'far', 'work', 'great', 'recommend', 'phone', 'reason', 'price', 'paid', 'usd', 'due', 'almost', 'new', 'condit'], ['batteri', 'die', 'minth'], ['good', 'phone', 'lot', 'futur', 'camera', 'take', 'crisp', 'clear', 'photo'], ['updat', 'one', 'week', 'later', 'batteri', 'life', 'use', 'phone', 'work', 'call', 'get', 'hour', 'notic', 'hour', 'use', 'custom', 'black', 'mode', 'got', 'day', 'hour', 'batteri', 'life', 'worri', 'chang', 'otherwis', 'hour', 'use', 'balanc', 'mode', 'model', 'changer', 'not', 'fast', 'chang', 'keep', 'mind', 'otherwis', 'rang', 'best', 'phone', 'ever', 'got', 'good', 'call', 'qualiti', 'attgophon', 'would', 'got', 'alcenel', 'could', 'get', 'better', 'fast', 'chang', 'spec', 'sound', 'matter', 'alcenel', 'better', 'power', 'better', 'bang', 'buck', 'experi', 'window', 'phone', 'realli', 'want', 'return', 'android', 'lack', 'app', 'support', 'voic', 'opinion', 'go', 'contract', 'not', 'want', 'justifi', 'htc', 'purpl', 'tint', 'went', 'mid', 'rang', 'found', 'wait', 'phone', 'come', 'budget', 'chose', 'price', 'rang', 'blu', 'phone', 'lte', 'unless', 'slim', 'one', 'i', 'not', 'interest', 'get', 'screen', 'eye', 'similar', 'big', 'screen', 'i', 'okay', 'male', 'big', 'hand', 'lte', 'attgophon', 'lumia', 'switch', 'sim', 'card', 'lumia', 'eas', 'good', 'look', 'far', 'favorit', 'doubl', 'tap', 'lock', 'unlock', 'screen', 'sinc', 'lock', 'button', 'not', 'reachabl', 'best', 'bang', 'buck', 'mid', 'rang', 'segment', 'phone', 'note', 'i', 'updat', 'review', 'spend', 'one', 'work'], ['purchas', 'phone', 'exclus', 'due', 'dual', 'simcard', 'featur', 'sinc', 'travel', 'oversea', 'disappoint', 'data', 'servic', 'not', 'work', 'oversea', 'even', 'move', 'slot', 'deactiv', 'truli', 'disappoint', 'product'], ['amaz', 'valu', 'idea', 'asus', 'sell', 'phone', 'type', 'screen', 'iphon', 'cost', 'i', 'run', 'ram', 'version', 'plenti', 'fast', 'enough', 'need', 'day', 'batteri', 'life', 'light', 'usag', 'min', 'brows', 'phone', 'call', 'hangout', 'messag', 'well', 'done', 'asus'], ['wow', 'bought', 'phone', 'wife', 'love', 'well', 'worth', 'money', 'fact', 'think', 'steal', 'paid', 'qualiti', 'first', 'rate', 'ergonom', 'well', 'thought', 'draw', 'back', 'think', 'creat', 'monster', 'wife', 'first', 'smart', 'phone', 'screen', 'make', 'practic', 'thing', 'oneplus', 'one', 'phone', 'think', 'better', 'valu', 'buy', 'phone', 'not', 'disappoint'], ['love', 'phone', 'even', 'got', 'zen', 'watch', 'use', 'smooth', 'butter', 'pretti', 'heavi', 'user', 'consid', 'gb', 'model', 'first', 'gb', 'memori', 'went', 'one', 'save', 'extra', 'kind', 'wish', 'got', 'gb', 'model', 'end', 'buy', 'gb', 'micro', 'sd', 'not', 'save', 'much', 'end', 'phone', 'perform', 'perfect', 'noth', 'negat', 'say', 'except', 'realli', 'hard', 'pri', 'open', 'back', 'insert', 'card', 'sleek', 'design', 'well', 'set', 'run', 'smooth', 'good', 'price', 'point'], ['like', 'lot', 'phone', 'great', 'screen', 'good', 'build', 'qualiti', 'super', 'fast', 'good', 'batteri', 'life', 'call', 'back', 'phone', 'call', 'pocket', 'start', 'turn', 'away', 'bodi', 'pocket', 'eventu', 'return', 'got', 'annoy', 'rememb', 'everi', 'time'], ['advertis', 'not', 'work', 'say', 'not', 'activ', 'not', 'certifi', 'phone', 'call', 'asus', 'custom', 'care', 'said', 'brand', 'doesnot', 'mean', 'guarante', 'like', 'wow', 'never', 'felt', 'cheat', 'blame', 'forc', 'buy', 'certifi', 'phone', 'big', 'farc', 'asus', 'equal', 'suck', 'not', 'anyth', 'clear', 'state', 'work', 'alway', 'surpris', 'not', 'one', 'review', 'mention', 'bad', 'disappoint', 'go', 'back', 'moto', 'x', 'second', 'gen', 'unlock', 'version'], ['like', 'complaint', 'batter'], ['excel', 'product'], ['receiv', 'first', 'open', 'phone', 'hell', 'slot', 'get', 'worn', 'first', 'attempt', 'upon', 'open', 'notic', 'batteri', 'not', 'remov', 'order', 'phone', 'think', 'batteri', 'replac', 'would', 'think', 'well', 'mayb', 'zenphon', 'laser', 'phone', 'i', 'return', 'batteri', 'remov', 'return', 'phone', 'well', 'intern', 'memori', 'gb', 'want', 'start', 'asus', 'unlock', 'dual', 'sim', 'phone', 'remov', 'batteri', 'lollipop', 'processor', 'mp', 'camera', 'descript', 'phone', 'state', 'batteri', 'requir', 'includ', 'mislead', 'info', 'decid', 'want', 'either', 'model', 'sinc', 'neither'], ['excel', 'cellphon', 'run', 'smooth', 'high', 'customiz', 'stock', 'set'], ['app', 'not', 'great', 'download', 'usual', 'android', 'app', 'not', 'difficult', 'love', 'storag', 'space', 'big', 'screen', 'snappi', 'app', 'not', 'run', 'bank', 'app', 'exampl', 'other', 'crash', 'often', 'whole', 'not', 'much', 'complain', 'screen', 'not', 'get', 'bright', 'not', 'problem', 'batteri', 'affect', 'bug', 'kill', 'batteri', 'perform', 'earli', 'updat', 'fix'], ['truli', 'amaz', 'product', 'run', 'app', 'program', 'fluid', 'difficult', 'use', 'larg', 'screen', 'person', 'probkem'], ['best', 'valu', 'smart', 'phone'], ['disappoint', 'phone', 'i', 'ever', 'first', 'time', 'give', 'negat', 'review', 'bought', 'four', 'phone', 'famili', 'four', 'three', 'broken', 'one', 'not', 'even', 'turn', 'two', 'phone', 'not', 'receiv', 'signal', 'vibrat', 'fourth', 'phone', 'least', 'seem', 'work', 'ok', 'disappoint', 'especi', 'consid', 'asus', 'good', 'brand', 'sinc', 'i', 'bought', 'sever', 'asus', 'product', 'great', 'hope', 'asus', 'make', 'someth', 'improv', 'qualiti', 'phone', 'one', 'absolut', 'garbag'], ['star', 'love', 'zenfon', 'realli', 'thank', 'much', 'awesom', 'seller'], ['never', 'work', 'proper', 'i', 'wait', 'refund'], ['great', 'far', 'cover', 'everyth', 'need'], ['i', 'argentina', 'phone', 'work', 'perfect', 'phone', 'fast', 'i', 'use', 'week', 'problem', 'phone', 'size', 'comfort', 'even', 'though', 'small', 'camara', 'great', 'lot', 'option', 'tast', 'bad', 'thing', 'use', 'overheat', 'use', 'total', 'recom', 'product'], ['not', 'honest', 'sinc', 'phone', 'came', 'got', 'gerri', 'happi', 'best', 'phone', 'would', 'till', 'month', 'screw', 'stop', 'work', 'amazon', 'send', 'anoth', 'long', 'stori', 'short', 'got', 'replac', 'suck', 'know', 'i', 'one', 'headphon', 'jack', 'stop', 'work', 'one', 'moment', 'speaker', 'microphon', 'not', 'work', 'good', 'amazon', 'not', 'replac', 'phone', 'suck', 'big', 'time', 'alway', 'go', 'find', 'one', 'problem', 'anoth', 'tell', 'save', 'money', 'time', 'buy', 'someth', 'ele'], ['phone', 'fast', 'reliabl', 'frequent', 'updat', 'asus', 'base', 'custom', 'feedback', 'go', 'buy', 'phone', 'full', 'retail', 'price', 'feel', 'confid', 'buy', 'one', 'month', 'instal', 'ton', 'app', 'toss', 'around', 'still', 'run', 'feel', 'look', 'brand', 'new', 'opinion', 'compani', 'compet', 'big', 'asus'], ['wish', 'could', 'give', 'better', 'review', 'not', 'good', 'thought', 'freez', 'reboot', 'time', 'time', 'batteri', 'life', 'not', 'good', 'still', 'afford', 'gave', 'star'], ['good', 'product'], ['phone', 'constant', 'hot', 'batteri', 'last', 'hour', 'research', 'return', 'exchang', 'refund', 'hope', 'phone', 'defect'], ['absolut', 'love', 'phone', 'i', 'avid', 'android', 'user', 'pretti', 'stabl', 'samsung', 'phone', 'tri', 'blu', 'studio', 'lte', 'ehh', 'ok', 'not', 'impress', 'not', 'buy', 'anoth', 'research', 'lot', 'phone', 'mix', 'review', 'love', 'everi', 'singl', 'option', 'phone', 'liter', 'custom', 'phone', 'everi', 'singl', 'app', 'home', 'page', 'i', 'zero', 'negat', 'experi', 'transfer', 'number', 'get', 'straight', 'talk', 'set', 'super', 'simpl', 'receiv', 'txt', 'pictur', 'messag', 'without', 'issu'], ['great', 'phone'], ['would', 'decent', 'phone', 'price', 'except', 'gpu', 'failur', 'nonstop', 'ghost', 'touch', 'phone', 'signal', 'not', 'great', 'either', 'wifi', 'wifi', 'internet', 'batteri', 'decent', 'though'], ['version', 'day', 'spent', 'almost', 'day', 'look', 'unlock', 'phone', 'good', 'spec', 'low', 'price', 'best', 'could', 'find', 'work', 'cricket', 'wireless', 'bigger', 'heavier', 'batteri', 'not', 'great', 'stat', 'care', 'least', 'price', 'rang', 'best', 'phone', 'opinion', 'high', 'mp', 'camera', 'ram', 'quad', 'core', 'gorilla', 'glass', 'high', 'res', 'screen', 'supercharg', 'speed', 'charg', 'massiv', 'intern', 'storag', 'micro', 'sd', 'slot', 'would', 'recommend', 'phone', 'user', 'look', 'high', 'perform', 'reason', 'bloatwar', 'easili', 'abl', 'remov', 'anyth', 'not', 'want', 'yes', 'unlock', 'button', 'littl', 'annoy', 'would', 'rather', 'hard', 'push', 'easi', 'butt', 'dial', 'send', 'garbl', 'text', 'random', 'contact', 'first', 'day', 'adjust', 'not', 'bother', 'much', 'also', 'time', 'becom', 'hot', 'use', 'speed', 'charger', 'come', 'last', 'remind', 'get', 'case', 'go', 'phone', 'heavi', 'i', 'sure', 'get', 'drop', 'sooner', 'later'], ['great', 'phone', 'price', 'fall', 'corner', 'fade'], ['appl', 'samsung', 'lg', 'favorit', 'phone', 'far'], ['great'], ['like', 'complaint', 'batter'], ['not', 'like'], ['great', 'phone'], ['camera', 'badand', 'hoot'], ['good', 'product', 'met', 'expect', 'recommend'], ['research', 'buy', 'phone', 'not', 'regret', 'purchas', 'screen', 'intel', 'quad', 'atom', 'ram', 'wireless', 'ac', 'microsd', 'etc', 'phone', 'nice', 'featur', 'price', 'con', 'not', 'bright', 'screen', 'screen', 'speaker', 'good', 'one', 'touch', 'idol', 'would', 'killer', 'also', 'not', 'like', 'made', 'mani', 'zenfon', 'variant', 'instead', 'make', 'one', 'realli', 'good', 'one', 'littl', 'money'], ['went', 'zte', 'suprem', 'virgin', 'mobil', 'big', 'upgrad', 'want', 'chang', 'carrier', 'not', 'want', 'contract', 'decid', 'go', 'cricket', 'wireless', 'thought', 'servic', 'would', 'better', 'area', 'data', 'quicker', 'sometim', 'servic', 'get', 'town', 'home', 'not', 'get', 'also', 'saw', 'phone', 'want', 'grab', 'zte', 'grand', 'max', 'i', 'glad', 'wait', 'not', 'even', 'hear', 'phone', 'random', 'stumbl', 'upon', 'recent', 'releas', 'us', 'phone', 'pretti', 'spectacular', 'realli', 'attract', 'attent', 'ram', 'read', 'learn', 'bit', 'learn', 'phone', 'also', 'came', 'intel', 'quad', 'core', 'processor', 'one', 'first', 'believ', 'intel', 'i', 'techi', 'say', 'phone', 'pretti', 'power', 'price', 'never', 'use', 'iphon', 'i', 'sure', 'probabl', 'way', 'better', 'price', 'not', 'realli', 'beaten', 'big', 'upgrad', 'come', 'zte', 'suprem', 'launch', 'late', 'also', 'budget', 'phone', 'camera', 'also', 'better', 'not', 'know', 'comparison', 'power', 'hous', 'phone', 'research', 'compar', 'phone', 'mani', 'found', 'googl', 'like', 'look', 'budget', 'power', 'phone', 'contract', 'not', 'disappoint', 'phone', 'even', 'want', 'contract', 'say', 'phone', 'unbeat', 'price'], ['nice', 'look', 'use', 'phone', 'great', 'price'], ['work', 'perfect', 'fine', 'venezuela', 'digitel', 'movistar', 'carrier'], ['beauti', 'wonder'], ['excel'], ['gb', 'space', 'memori', 'card', 'slot', 'addit', 'space', 'phone', 'media', 'lover', 'dream', 'display', 'super', 'crisp', 'ideal', 'view', 'imag', 'stream', 'video', 'rear', 'camera', 'take', 'amaz', 'pictur', 'sever', 'built', 'like', 'hdr', 'beautif', 'front', 'camera', 'fewer', 'filter', 'still', 'take', 'pretti', 'good', 'pictur', 'camera', 'softwar', 'not', 'allow', 'video', 'record', 'front', 'camera', 'reason', 'app', 'like', 'snapchat', 'allow', 'use', 'front', 'camera', 'annoy', 'app', 'come', 'phone', 'i', 'person', 'not', 'fan', 'notif', 'habitu', 'swipe', 'away', 'notif', 'tell', 'use', 'app', 'drain', 'much', 'batteri', 'notif', 'not', 'swipe', 'away', 'unless', 'close', 'app', 'includ', 'app', 'like', 'netflix', 'function', 'like', 'connect', 'bluetooth', 'devic', 'car', 'bt', 'headphon', 'one', 'best', 'android', 'phone', 'own', 'ridicul', 'reason', 'price', 'would', 'insan', 'anyon', 'not', 'consid', 'purchas', 'phone'], ['phone', 'dead', 'arriv', 'power', 'charg', 'wish', 'not', 'alreadi', 'order', 'receiv', 'accessori', 'quit', 'disappoint', 'horribl', 'experi'], ['nice', 'phone', 'love', 'run', 'perfect', 'issu'], ['great', 'phone', 'good', 'build', 'materi', 'good', 'storag', 'excel', 'screen', 'good', 'batteri', 'life', 'camera', 'not', 'good', 'thought', 'take', 'good', 'pictur'], ['great', 'phone', 'love'], ['worth'], ['great', 'phone', 'begin', 'serious', 'issu', 'coupl', 'month', 'bought', 'issu', 'batteri', 'start', 'turn', 'sudden', 'charg', 'charg', 'overheat', 'amazon', 'replac', 'phone', 'btw', 'great', 'job', 'amaz', 'team', 'enjoy', 'phone', 'coupl', 'week', 'new', 'phone', 'start', 'serious', 'issu', 'sudden', 'touch', 'phone', 'thing', 'seem', 'someth', 'relat', 'display', 'phone', 'less', 'year', 'usag', 'realli', 'surpris', 'lost', 'lot', 'inform', 'not', 'use', 'phone', 'brows', 'web', 'facebook', 'answer', 'call', 'even', 'write', 'msg', 'mess', 'sever', 'touch', 'screen', 'write', 'whatev', 'word', 'contact', 'amazon', 'begin', 'respons', 'day', 'period', 'past', 'action', 'done', 'ask', 'escal', 'team', 'work', 'manufactur', 'btw', 'contact', 'manufactur', 'suggest', 'test', 'fail', 'ask', 'send', 'phone', 'us', 'repair', 'ask', 'know', 'happen', 'phone', 'longer', 'use', 'respons', 'answer', 'yet', 'money', 'count', 'i', 'count', 'amazon', 'support', 'manufactur', 'review', 'star'], ['great', 'stuff'], ['far', 'good', 'got', 'new', 'sim', 'move', 'prepaid', 'junk', 'phone', 'phone', 'camera', 'amaz', 'sound', 'clear', 'screen', 'absolut', 'gorgeous', 'neat', 'video', 'come', 'preload', 'phone', 'show', 'sound', 'pictur', 'qualiti', 'stun', 'sharp', 'screen', 'realli', 'enjoy', 'littl', 'featur', 'zen', 'user', 'interfac', 'enhanc', 'give', 'top', 'android', 'lollipop', 'bad', 'thing', 'phone', 'everyon', 'seem', 'accessori', 'phone', 'need', 'case', 'extrem', 'difficult', 'find', 'case', 'phone', 'order', 'seller', 'china', 'wait', 'time', 'unapp', 'seller', 'ship', 'phone', 'taiwan', 'i', 'issu', 'use', 'ladi', 'store', 'happi', 'activ', 'sim', 'card', 'phone', 'phone', 'ship', 'fast', 'batteri', 'charg', 'right', 'box', 'overal', 'think', 'wonder', 'phone', 'definit', 'upgrad', 'phone', 'i', 'own', 'last', 'four', 'year', 'would', 'not', 'hesit', 'purchas', 'phone'], ['phone', 'good', 'size', 'exagger', 'not', 'use', 'one', 'hand', 'shenanigan', 'slow', 'movement', 'sometim', 'camera', 'backward', 'forward', 'good', 'good', 'vision', 'screen', 'sun'], ['great', 'product'], ['great', 'phone', 'got', 'two', 'realli', 'happi', 'month', 'use', 'recept', 'good', 'memori', 'space', 'quit', 'big', 'averag', 'download', 'big', 'game', 'app', 'movi', 'camera', 'good', 'qualiti', 'realli', 'happi', 'month', 'use', 'also', 'recommend', 'friend'], ['get', 'phone', 'today', 'problem', 'come', 'without', 'headset'], ['daughter', 'like', 'work', 'well', 'say', 'storag', 'space', 'need'], ['not', 'work', 'receiv', 'send', 'call', 'tri', 'return'], ['certain', 'much', 'need', 'upgrad', 'zenfon', 'like', 'easi', 'use', 'finger', 'print', 'scanner', 'work', 'well', 'long', 'clean', 'hand', 'i', 'would', 'advis', 'put', 'multipl', 'print', 'storag', 'encas', 'get', 'cut', 'overal', 'outperform', 'predecessor', 'everi', 'way', 'keep', 'shape', 'insert', 'sim', 'card', 'cricket', 'problem', 'get', 'much', 'better', 'signal', 'default', 'theme', 'bit', 'lack', 'easi', 'enough', 'switch', 'anoth', 'launcher', 'platform', 'handl', 'wider', 'varieti', 'theme', 'bit', 'bloatwar', 'not', 'unmanag', 'easi', 'enough', 'take', 'care', 'concern', 'way', 'camera', 'back', 'protrud', 'phone', 'i', 'get', 'case', 'even', 'space', 'far', 'good'], ['excel'], ['great', 'phone'], ['love', 'well', 'phone', 'hold', 'signal', 'whenev', 'call', 'get', 'connect', 'call', 'seem', 'lock', 'onto', 'far', 'zero', 'drop', 'call', 'call', 'clariti', 'better', 'old', 'iphon', 'text', 'use', 'phone', 'messag', 'app', 'simpl', 'function', 'though', 'tad', 'bore', 'batteri', 'life', 'good', 'last', 'whole', 'day', 'charg', 'heavi', 'wifi', 'data', 'use', 'stream', 'video', 'phone', 'call', 'hour', 'total', 'heavi', 'text', 'ill', 'still', 'around', 'batteri', 'camera', 'ok', 'noth', 'special', 'though', 'manual', 'mode', 'fun', 'use', 'asus', 'zenui', 'actual', 'pretti', 'interest', 'bloatwar', 'easili', 'disabl', 'uninstal', 'nervous', 'glass', 'back', 'phone', 'cool', 'look', 'opinion', 'unnecessari', 'embellish', 'overal', 'solid', 'phone', 'speed', 'stabil', 'signal'], ['expect', 'not', 'includ', 'headphon'], ['nice', 'look', 'work', 'phone', 'price', 'absolut', 'love'], ['love', 'well', 'phone', 'hold', 'signal', 'whenev', 'call', 'get', 'connect', 'call', 'seem', 'lock', 'onto', 'far', 'zero', 'drop', 'call', 'call', 'clariti', 'better', 'old', 'iphon', 'text', 'use', 'phone', 'messag', 'app', 'simpl', 'function', 'though', 'tad', 'bore', 'batteri', 'life', 'good', 'last', 'whole', 'day', 'charg', 'heavi', 'wifi', 'data', 'use', 'stream', 'video', 'phone', 'call', 'hour', 'total', 'heavi', 'text', 'ill', 'still', 'around', 'batteri', 'camera', 'ok', 'noth', 'special', 'though', 'manual', 'mode', 'fun', 'use', 'asus', 'zenui', 'actual', 'pretti', 'interest', 'bloatwar', 'easili', 'disabl', 'uninstal', 'nervous', 'glass', 'back', 'phone', 'cool', 'look', 'opinion', 'unnecessari', 'embellish', 'overal', 'solid', 'phone', 'speed', 'stabil', 'signal'], ['pictur', 'great', 'howev', 'like', 'random', 'go', 'camera', 'mode', 'even', 'still', 'perfect', 'phone', 'toler', 'crazi', 'use', 'phone', 'usual', 'overheat', 'point'], ['good', 'phone', 'use'], ['good', 'phone', 'best', 'one', 'i', 'ever', 'own', 'not', 'i', 'own', 'amaz', 'phone', 'camera', 'perform', 'pretti', 'well', 'good', 'light', 'light', 'get', 'turn', 'well', 'bad', 'camera', 'decent', 'ie', 'noth', 'special', 'noth', 'horribl', 'weird', 'thing', 'condit', 'littl', 'light', 'camera', 'could', 'well', 'optim', 'much', 'better', 'phone', 'design', 'beauti', 'glass', 'back', 'metal', 'ring', 'around', 'edg', 'phone', 'batteri', 'model', 'mah', 'poor', 'price', 'opinion', 'not', 'complain', 'get', 'day', 'school'], ['good', 'phone', 'worth', 'price', 'look', 'design', 'attract', 'want', 'yet', 'best', 'perform', 'disabl', 'asus', 'app', 'enjoy', 'fluent', 'camera', 'wonder', 'amaz', 'minut', 'tri'], ['expect', 'realli', 'nice', 'ergonom', 'power', 'phone', 'batteri', 'last', 'least', 'hour', 'use', 'normal', 'condit'], ['realli', 'like', 'react', 'quick', 'ever', 'want', 'screen', 'imag', 'clear', 'camera', 'clear', 'well', 'hardwar', 'spec', 'good', 'price', 'nice', 'audio', 'bad', 'boy', 'super', 'nice', 'skull', 'candi', 'crusher', 'zenfon', 'trash', 'compar', 'zenfon', 'got', 'day', 'realli', 'start', 'love', 'major', 'step', 'zenfon'], ['amaz', 'phone', 'money'], ['work', 'nice'], ['amaz', 'phone', 'money'], ['realli', 'good', 'smartphon'], ['realli', 'good', 'smartphon'], ['phone', 'look', 'great', 'feel', 'great', 'work', 'great', 'price', 'great', 'phone', 'great', 'still', 'look', 'price', 'rang', 'phone', 'buy', 'one'], ['love'], ['first', 'phone', 'motorola', 'dream', 'fantasi', 'evolv', 'reach', 'smartphon', 'asus', 'zenfon', 'giga', 'wonder', 'ever', 'done', 'imagin', 'realiti', 'well', 'afford', 'price', 'said', 'power', 'yeahhdar', 'laptop', 'asus', 'asus', 'motherboard', 'never', 'problem', 'love', 'asus'], ['like'], ['excel', 'phone', 'deal'], ['awesom', 'phone', 'price', 'way', 'bigger', 'expect', 'though', 'probabl', 'would', 'gone', 'differ', 'phone', 'known', 'big', 'run', 'fast', 'decent', 'batteri', 'life', 'nice', 'interfac', 'nice', 'support', 'great', 'camera', 'great', 'asus', 'qualiti', 'i', 'come', 'expect', 'compani', 'wish', 'bit', 'louder', 'though'], ['satisfi', 'good', 'replac', 'galaxi', 'note', 'definit', 'avoid', 'carri', 'two', 'phone'], ['great', 'phone', 'price', 'lot', 'bloat', 'run', 'phone', 'play', 'game', 'phone', 'great', 'not', 'disappoint', 'buy'], ['far', 'love', 'great', 'valu', 'addit', 'almost', 'good', 'samsung', 'galaxi', 'coupl', 'gray', 'area', 'though', 'feel', 'wireless', 'recept', 'antenna', 'not', 'strong', 'samsung', 'also', 'even', 'ram', 'wonder', 'alway', 'take', 'use', 'ram', 'even', 'disabl', 'mani', 'stock', 'revisit', 'review', 'month', 'usag', 'though'], ['amaz', 'phone', 'first', 'thought', 'big', 'got', 'use', 'fast', 'comftabl', 'tall', 'man', 'not', 'complain'], ['good'], ['purchas', 'phone', 'earli', 'octob', 'iphon', 'broken', 'look', 'forward', 'unlock', 'phone', 'low', 'month', 'data', 'plan', 'everyth', 'go', 'well', 'sudden', 'phone', 'not', 'connect', 'wifi', 'work', 'connect', 'network', 'immedi', 'work', 'without', 'issu', 'month', 'work', 'wifi', 'blue', 'get', 'dread', 'avoid', 'due', 'poor', 'connect', 'work', 'offic', 'peopl', 'none', 'problem', 'contact', 'asus', 'custom', 'servic', 'absolut', 'worthless', 'told', 'data', 'wipe', 'factori', 'reset', 'would', 'fix', 'problem', 'not', 'want', 'rma', 'phone', 'either', 'free', 'way', 'could', 'without', 'phone', 'week', 'pay', 'fee', 'ship', 'replac', 'soon', 'possibl', 'angri', 'asus', 'strong', 'consid', 'sell', 'pos', 'could', 'sell', 'someth', 'break', 'month', 'use', 'nerv', 'tri', 'extort', 'anoth', 'updat', 'decemb', 'sad', 'report', 'wife', 'zenfon', 'exact', 'mine', 'purchas', 'time', 'suffer', 'screen', 'flicker', 'issu', 'make', 'phone', 'near', 'unus', 'caus', 'simpli', 'allow', 'phone', 'batteri', 'complet', 'discharg', 'yup', 'absolut', 'januari', 'phone', 'still', 'not', 'connect', 'work', 'wifi', 'blue', 'keep', 'get', 'messag', 'state', 'undeliv', 'messag', 'funni', 'enough', 'tap', 'notif', 'bring', 'sms', 'app', 'undeliv', 'messag', 'matter', 'mani', 'time', 'dismiss', 'notif', 'pop', 'back', 'immedi', 'even', 'instal', 'parti', 'app', 'handcent', 'tri', 'delet', 'phantom', 'undeliev', 'messag', 'not', 'find', 'either', 'yet', 'anoth', 'absolut', 'ridicul', 'absurd', 'bug', 'piec', 'septemb', 'today', 'graduat', 'math', 'class', 'phone', 'decid', 'open', 'pandora', 'start', 'blast', 'music', 'full', 'volum', 'not', 'open', 'pandora', 'month', 'volum', 'phone', 'turn', 'complet', 'not', 'matter', 'buggi', 'piec', 'junk', 'mind', 'thank', 'asus', 'well', 'done'], ['asus', 'search', 'incred', 'might', 'want', 'keep', 'search', 'review', 'asus', 'unlock', 'smartphon', 'ram', 'black', 'warranti', 'http', 'compar', 'samsung', 'galaxi', 'two', 'year', 'drop', 'one', 'price', 'point', 'not', 'rang', 'new', 'howev', 'come', 'closer', 'sinc', 'two', 'newer', 'generat', 'us', 'imagin', 'asus', 'price', 'ident', 'would', 'take', 'hand', 'older', 'generat', 'leav', 'asus', 'still', 'search', 'incred', 'would', 'choic', 'first', 'choic', 'second', 'would', 'blu', 'studio', 'c', 'super', 'camera', 'smartphon', 'us', 'white', 'bought', 'wife', 'asus', 'would', 'not', 'list', 'think', 'tap', 'well', 'fun', 'yes', 'power', 'button', 'top', 'accord', 'tap', 'mani', 'time', 'long', 'world', 'anyon', 'sell', 'problemat', 'phone', 'well', 'sometim', 'problem', 'time', 'want', 'smack', 'throw', 'car', 'window', 'seem', 'consist', 'pattern', 'find', 'make', 'work', 'like', 'sometim', 'get', 'work', 'first', 'even', 'work', 'sever', 'time', 'row', 'not', 'seem', 'someth', 'count', 'way', 'mani', 'time', 'tri', 'type', 'screen', 'goe', 'elsewher', 'time', 'reclaim', 'screen', 'start', 'make', 'less', 'product', 'occasion', 'thought', 'larger', 'keyboard', 'would', 'help', 'elimin', 'wrong', 'key', 'issu', 'worst', 'type', 'text', 'thought', 'old', 'man', 'syndrom', 'even', 'smart', 'kid', 'say', 'piec', 'not', 'write', 'say', 'without', 'screen', 'protector', 'phone', 'seem', 'littl', 'come', 'get', 'tap', 'reason', 'not', 'go', 'phone', 'bluetooth', 'issu', 'show', 'connect', 'never', 'seem', 'work', 'need', 'power', 'fight', 'get', 'hand', 'free', 'need', 'op', 'went', 'hand', 'free', 'car', 'mani', 'lost', 'call', 'bluetooth', 'not', 'work', 'yes', 'tri', 'devic', 'get', 'problem', 'want', 'make', 'sure', 'not', 'bloat', 'ware', 'thing', 'ok', 'not', 'tri', 'get', 'rid', 'not', 'want', 'move', 'extern', 'regain', 'precious', 'not', 'chanc', 'unless', 'want', 'go', 'extrem', 'root', 'secur', 'issu', 'go', 'root', 'gave', 'phone', 'almost', 'six', 'week', 'make', 'final', 'decis', 'review', 'not', 'think', 'would', 'buy', 'phone', 'lower', 'price', 'might', 'offend', 'someon', 'gave', 'asus', 'splash', 'screen', 'tell', 'asus', 'search', 'incred', 'not', 'found', 'phone', 'would', 'wait', 'actual', 'find', 'product', 'incred', 'incred', 'great', 'review', 'price', 'charg', 'get', 'better', 'function', 'product', 'phone', 'whole', 'lot', 'not', 'fair', 'compar', 'big', 'boy', 'not', 'even', 'compet', 'lower', 'end', 'market', 'still', 'search', 'incred', 'not', 'asus', 'longer', 'wish', 'motorola', 'startac', 'back', 'old', 'bag', 'phone', 'power', 'call', 'anywher', 'incred', 'phone', 'alway', 'work', 'frustrat', 'includ'], ['work', 'fast', 'good', 'wort', 'money'], ['nice', 'old', 'school', 'guy', 'not', 'let', 'go', 'flip', 'phone', 'style', 'love', 'mine'], ['light', 'weight', 'poor', 'recept', 'drop', 'call', 'guess', 'like', 'say', 'time', 'chang', 'need', 'learn', 'chang'], ['excit', 'purchas', 'replac', 'worn', 'motorola', 'razr', 'one', 'pleas', 'find', 'great', 'shape', 'use', 'phone', 'also', 'arriv', 'much', 'sooner', 'expect'], ['excit', 'purchas', 'replac', 'worn', 'motorola', 'razr', 'one', 'pleas', 'find', 'great', 'shape', 'use', 'phone', 'also', 'arriv', 'much', 'sooner', 'expect'], ['phone', 'want', 'bad', 'smart', 'phone', 'never', 'chanc', 'touch', 'screen', 'featur', 'phone', 'receiv', 'fickl', 'make', 'much', 'less', 'conveni', 'phone', 'real', 'button', 'bought', 'incred', 'inexpens', 'not', 'complain', 'warn', 'get', 'pay', 'annoy', 'quirk', 'set', 'time', 'alarm', 'may', 'want', 'throw', 'across', 'room', 'swipe', 'finger', 'like', 'spin', 'big', 'wheel', 'price', 'right', 'tri', 'get', 'land', 'win', 'time', 'difficult', 'tap', 'arrow', 'time', 'also', 'adjust', 'volum', 'alarm', 'inconveni', 'want', 'rais', 'volum', 'decid', 'prove', 'loud', 'loud', 'get', 'set', 'snooz', 'option', 'not', 'automat', 'get', 'three', 'random', 'snooz', 'variat', 'choos', 'regardless', 'choos', 'get', 'snooz', 'mani', 'time', 'decid', 'let', 'get', 'deserv', 'not', 'snooz', 'hope', 'pay', 'attent', 'swipe', 'phone', 'come', 'obscen', 'amount', 'app', 'preload', 'onto', 'like', 'not', 'use', 'way', 'eras', 'remov', 'advanc', 'menu', 'unless', 'not', 'figur', 'yet'], ['love', 'phone', 'easi', 'advanc', 'mode', 'use', 'not', 'smart', 'phone', 'want', 'someth', 'make', 'text', 'easierand', 'got'], ['sturdi', 'basic', 'phone', 'like', 'black', 'list', 'featur', 'block', 'call', 'batteri', 'last', 'good', 'long', 'time', 'use', 'phone', 'regular', 'sim', 'card'], ['broken', 'got'], ['new', 'item', 'origin', 'packag', 'sim', 'card', 'work'], ['came', 'time', 'work', 'well', 'phone', 'buy', 'anoth', 'would', 'buy', 'seller', 'thank'], ['problem', 'reciev', 'item', 'abl', 'activ', 'problem'], ['work', 'perfect', 'need'], ['not', 'work', 'would', 'not', 'power', 'not', 'wast', 'money', 'buy', 'item'], ['aw', 'not', 'anyon', 'end', 'line', 'hear', 'loud', 'buzz', 'sound'], ['fit', 'well'], ['excelent', 'producto', 'lo', 'recomiendo', 'excel', 'product', 'recommend'], ['phone', 'not', 'come', 'manual', 'went', 'line', 'not', 'abl', 'download', 'info', 'model', 'tri', 'use', 'get', 'familiar', 'function', 'kept', 'drop', 'text', 'messag', 'wifi', 'would', 'not', 'work', 'also', 'sound', 'qualiti', 'not', 'great'], ['got', 'mom', 'love', 'perfect', 'high', 'recommend', 'bella'], ['great', 'costum', 'servic', 'great', 'devic', 'recomend', 'friend', 'like', 'packag', 'color', 'accesori'], ['sad', 'blackberri', 'unlock', 'phone', 'warranti', 'work', 'less', 'month', 'smart', 'part', 'smartphon', 'die', 'left', 'regular', 'cell', 'phone', 'could', 'make', 'receiv', 'call', 'send', 'receiv', 'text', 'messag', 'decid', 'purchas', 'phone', 'use', 'venezuela', 'read', 'various', 'comment', 'buyer', 'state', 'work', 'fine', 'unfortun', 'first', 'time', 'problem', 'purchas', 'amazon'], ['el', 'telefono', 'llego', 'venezuela', 'malo', 'lee', 'la', 'tarjeta', 'sim', 'sin', 'accesorio', 'menu', 'todo', 'ello', 'lo', 'mand', 'reparar', 'dijeron', 'que', 'era', 'refurbish', 'le', 'compren', 'est', 'vendedor', 'si', 'ere', 'del', 'extranjero', 'es', 'un', 'estafador'], ['el', 'producto', 'excelent', 'llego', 'sin', 'ningun', 'problema', 'funciona', 'perfectament', 'en', 'venezuela', 'con', 'mi', 'chip', 'digitel', 'totalment', 'nuevo', 'en', 'su', 'caja', 'origin', 'sellada', 'con', 'todo', 'sus', 'accesorio', 'cargador', 'adaptador', 'cabl', 'de', 'transmis', 'de', 'dato', 'mano', 'libr', 'manual', 'cd', 'lo', 'compr', 'directament', 'amazon', 'repito', 'excelent', 'el', 'producto', 'totalment', 'nuevo'], ['excel', 'product', 'recommend'], ['excelent'], ['si', 'vien', 'liberado', 'lo', 'estoy', 'utilizando', 'en', 'venezuela', 'buen', 'telefono', 'le', 'puse', 'un', 'chip', 'movilnet', 'tien', 'señal', 'la', 'corneta', 'suena', 'un', 'poco', 'baja'], ['good'], ['not', 'receiv', 'product', 'yet', 'not', 'possess', 'review', 'product', 'upset', 'long', 'time', 'take'], ['helloi', 'bought', 'month', 'ago', 'repair', 'charg', 'suppos', 'new', 'one'], ['llego', 'con', 'todo', 'sus', 'accesorio', 'perfecto', 'estado', 'lo', 'unico', 'malo', 'es', 'la', 'resolucion', 'de', 'la', 'camara', 'muy', 'baja', 'en', 'comparacion', 'otro', 'de', 'los', 'mismo', 'mp', 'trae', 'memoria', 'ni', 'mano', 'libr'], ['work', 'great'], ['good', 'not', 'color', 'request', 'work', 'well'], ['excelent'], ['llego', 'en', 'perfecta', 'condicion', 'es', 'excelent', 'telefono', 'de', 'muy', 'buena', 'calidad', 'adema', 'de', 'economico', 'lo', 'volveria', 'comprar', 'si', 'es', 'necesario'], ['phone', 'good', 'work', 'condit', 'new', 'howev', 'entir', 'manual', 'spanish', 'not', 'know', 'word', 'i', 'ask', 'friend', 'phone', 'instruct', 'help', 'find', 'certain', 'thing', 'phone', 'phone', 'even', 'spanish', 'select', 'bunch', 'option', 'saw', 'suck'], ['phone', 'seem', 'lite', 'version', 'blackberri', 'call', 'lack', 'power', 'blackberri', 'name', 'could', 'not', 'work', 'job', 'bes', 'server', 'not', 'good', 'term', 'abl', 'surf', 'web', 'text', 'good', 'stuff', 'pretti', 'good', 'happen', 'first', 'blackberri', 'get', 'new', 'trackpad', 'must', 'say', 'excel', 'replac', 'trackbal', 'like', 'sensit', 'not', 'chang', 'general', 'set', 'would', 'probabl', 'recommend', 'phone', 'peopl', 'new', 'blackberri', 'world', 'good', 'way', 'get', 'use', 'blackberri', 'interfac', 'develop', 'skill', 'platform', 'get', 'blackberri', 'phone', 'read', 'bold', 'bold', 'well', 'storm'], ['pros', 'work', 'well', 'not', 'die', 'sudden', 'fell', 'apart', 'daili', 'outsid', 'fade', 'away', 'daili'], ['excel', 'product'], ['special', 'gift', 'relat', 'hard', 'work', 'school'], ['bought', 'phone', 'march', 'year', 'worst', 'purchas', 'i', 'made', 'amazon', 'thus', 'far', 'receiv', 'phone', 'i', 'problem', 'far', 'i', 'chang', 'keyboard', 'screen', 'roller', 'ball', 'batteri', 'three', 'week', 'ago', 'phone', 'total', 'shut', 'not', 'turn', 'sinc', 'wast', 'money', 'time', 'would', 'serious', 'recommend', 'not', 'buy', 'cell', 'phone', 'amazon', 'vendor'], ['good'], ['excel', 'tast', 'could', 'last', 'batteri'], ['excel'], ['cheaper', 'javelin', 'camera', 'not', 'great', 'replac', 'trackbal', 'mousepad', 'terrif', 'idea', 'peopl', 'blackberri', 'i', 'stick', 'cell', 'phone', 'last', 'two', 'bb', 'replac', 'trackbal', 'least', 'time'], ['excel'], ['nice'], ['well', 'purchas', 'new', 'phone', 'worldwid', 'distributor', 'daughter', 'christma', 'present', 'not', 'go', 'write', 'review', 'phone', 'start', 'present', 'problem', 'month', 'use', 'key', 'not', 'work', 'includ', 'bb', 'key', 'give', 'access', 'phone', 'featur', 'choic', 'take', 'local', 'blackberri', 'shop', 'surpris', 'told', 'use', 'phone', 'repair', 'even', 'kind', 'silicon', 'intern', 'last', 'repair', 'thank', 'god', 'manag', 'repair', 'phone', 'technician', 'told', 'use', 'care', 'fail', 'anytim', 'spent', 'close', 'way', 'recommend', 'buy', 'item', 'seller', 'i', 'think', 'send', 'claim', 'intern', 'commerc', 'chamber', 'situat', 'live', 'venezuela', 'not', 'know', 'respond', 'somehow', 'deceit', 'sad', 'situat'], ['parec', 'raro', 'que', 'est', 'teléfono', 'gémini', 'trae', 'españold', 'en', 'las', 'opcion', 'de', 'cambio', 'de', 'lenguaj', 'mas', 'que', 'raro', 'insólito', 'porqu', 'esto', 'teléfono', 'son', 'multilenguaj', 'pareciera', 'un', 'teléfono', 'reconstruido', 'usado', 'previament', 'que', 'le', 'fueron', 'eliminado', 'los', 'lenguaj', 'para', 'hacer', 'mas', 'espacio', 'en', 'la', 'memoria', 'de', 'est', 'smartphon', 'satisfecho', 'con', 'la', 'compra', 'por', 'favor', 'los', 'futuro', 'comprador', 'espero', 'se', 'asesoren', 'bien', 'con', 'el', 'vendedor', 'se', 'aseguren', 'de', 'que', 'la', 'información', 'que', 'se', 'menciona', 'para', 'la', 'venta', 'del', 'teléfono', 'sea', 'la', 'misma', 'para', 'el', 'momento', 'de', 'la', 'entrega'], ['not', 'look', 'surf', 'internet', 'could', 'want', 'phone', 'found', 'phone', 'pretti', 'easi', 'figur', 'still', 'learn', 'function', 'phone', 'love', 'phone', 'came', 'brand', 'new', 'case', 'charger', 'adapt', 'comput', 'love', 'color', 'wish', 'key', 'mayb', 'littl', 'bigger', 'easi', 'hit', 'wrong', 'key', 'text', 'dial', 'big', 'finger', 'phone', 'may', 'not', 'one', 'came', 'quick', 'well', 'standard', 'ship'], ['lo', 'compr', 'muy', 'bueno', 'gracia', 'buy', 'good', 'thank'], ['receiv', 'open', 'seem', 'good', 'qualiti', 'wine', 'box', 'well', 'protect', 'number', 'star', 'not', 'complet', 'not', 'complet', 'exceed', 'expect'], ['el', 'teléfono', 'llego', 'tiempo', 'en', 'excelent', 'condicion', 'con', 'todo', 'sus', 'accesorio', 'esta', 'funcionando', 'muy', 'bien', 'recomiendo', 'el', 'telefono'], ['arriv', 'perfect', 'condit', 'brand', 'new', 'use', 'att', 'account', 'busi', 'app', 'problem', 'would', 'recommend', 'get', 'compat', 'mobil', 'carrier'], ['excelent'], ['excelent'], ['se', 'recibio', 'en', 'buen', 'estado', 'esta', 'dañado', 'estoy', 'conform', 'con', 'el', 'articulo', 'es', 'el', 'modelo', 'es', 'lo', 'que', 'solicit', 'todo', 'esta', 'muy', 'bien', 'gracia'], ['fine', 'time', 'go', 'cel', 'courier', 'telephon', 'easi', 'manag', 'good', 'satisfac'], ['bought', 'gift', 'friend', 'venezuela', 'went', 'gave', 'day', 'later', 'came', 'back', 'start', 'problem', 'phone', 'batteri', 'drain', 'fast', 'purchas', 'anoth', 'brand', 'new', 'origin', 'batteri', 'problem', 'phone', 'start', 'restart', 'everi', 'moment', 'electron', 'tech', 'busi', 'repair', 'cell', 'phone', 'year', 'advis', 'take', 'friend', 'repair', 'facil', 'insert', 'diagnost', 'tester', 'devic', 'speak', 'simpl', 'phone', 'problem', 'involv', 'intern', 'power', 'suppli', 'esn', 'micro', 'chip', 'sent', 'back', 'state', 'paid', 'ship', 'tri', 'contact', 'compani', 'sold', 'never', 'answer', 'money', 'waist', 'lost', 'phone', 'went', 'trash', 'bin'], ['bad', 'product'], ['got', 'phone', 'amazon', 'tri', 'tmobil', 'sim', 'radio', 'work', 'abl', 'connect', 'wifi', 'router', 'success', 'uma', 'unlicens', 'mobil', 'access', 'softwarei', 'miss', 'devic', 'bad', 'need', 'make', 'voic', 'call', 'internet', 'wifi', 'uma', 'idea', 'exist', 'instal', 'uma', 'softwar'], ['unfortunat', 'devic', 'bought', 'not', 'work', 'propert', 'fact', 'keyboard', 'not', 'work', 'also', 'box', 'pin', 'number', 'differ', 'one', 'insid', 'bought', 'new', 'phone', 'i', 'sure', 'live', 'argentina', 'difficult', 'return', 'definet', 'never', 'recomend', 'buy', 'anyth', 'seller'], ['excelent', 'telefono', 'lo', 'unico', 'que', 'vien', 'todo', 'en', 'ingl', 'pero', 'se', 'pued', 'actualizar', 'bajarl', 'el', 'sofwar', 'en', 'recomiendo', 'ampliament'], ['exelent'], ['refurbish', 'not', 'recomend'], ['bought', 'father', 'live', 'oversea', 'love', 'even', 'age', 'use', 'product', 'without', 'problem'], ['muy', 'bueno'], ['love'], ['good'], ['excelent'], ['blackberri', 'unlock', 'phone', 'mp', 'camera', 'bluetooth', 'intern', 'version', 'warranti', 'black', 'premium', 'product', 'worth', 'beyond', 'price', 'therefor', 'high', 'recommend', 'util'], ['bb', 'work', 'well', 'not', 'great', 'bold', 'work', 'much', 'better', 'faster', 'much', 'better', 'photo', 'qualiti', 'might', 'freez', 'often', 'not', 'mind', 'spend', 'twice', 'much', 'phone', 'suggest', 'bold', 'model', 'budget', 'tight', 'phone', 'phone', 'bit', 'prici', 'bb', 'general', 'overpr', 'great', 'phone', 'person', 'lose', 'phone', 'constant', 'want', 'work', 'bb', 'let', 'phone', 'fall', 'lot', 'let', 'go', 'dive', 'pool', 'even', 'though', 'not', 'work', 'later', 'care', 'person', 'suggest', 'buy', 'bold', 'model', 'take', 'good', 'care', 'enjoy', 'benefit', 'avoid', 'headach', 'take', 'good', 'pictur', 'valu', 'great', 'good', 'camera', 'phone', 'pictur', 'last', 'forev', 'save', 'proper', 'alway', 'better', 'good', 'qualiti', 'camera', 'imagin', 'take', 'pictur', 'life', 'celebr', 'friend', 'idk', 'bad', 'camera', 'not', 'worth', 'risk', 'curv', 'ok', 'bold', 'better', 'bold', 'twice', 'price', 'twice', 'better', 'not', 'perfect', 'thought'], ['bien', 'bien'], ['got', 'phone', 'far', 'extrem', 'pleas', 'tutori', 'great', 'intro', 'phone', 'featur', 'trackpad', 'make', 'screen', 'easi', 'navig', 'also', 'made', 'call', 'call', 'qualiti', 'fair', 'good', 'friend', 'call', 'gotten', 'new', 'phone', 'not', 'sure', 'slight', 'echo', 'end', 'got', 'use', 'keyboard', 'fair', 'quick', 'sent', 'text', 'although', 'key', 'may', 'smaller', 'model', 'still', 'abl', 'text', 'troubl', 'batteri', 'not', 'fulli', 'charg', 'charg', 'not', 'sure', 'batteri', 'life', 'see', 'long', 'take', 'go', 'full', 'phone', 'mani', 'great', 'featur', 'light', 'easi', 'use', 'even', 'someon', 'like', 'not', 'smart', 'phone'], ['not', 'realli', 'happen', 'product', 'never', 'lleguo', 'purchas', 'truli', 'lost', 'money', 'packag', 'not', 'reach', 'unfortun'], ['got', 'gift', 'replac', 'age', 'devic', 'phone', 'great', 'plan', 'price', 'virgin', 'set', 'learn', 'use', 'breez'], ['en', 'colombia', 'funciona', 'super', 'meto', 'la', 'simcard', 'de', 'movistar', 'tien', 'lio', 'en', 'agarrar', 'señal', 'bueno', 'el', 'producto'], ['phone', 'durabl', 'nice', 'not', 'big', 'easi', 'carri', 'anywher', 'featur', 'make', 'use', 'phone'], ['bueno'], ['confiabl', 'gracia', 'al', 'vendedor', 'en', 'realidad', 'hay', 'nada', 'de', 'que', 'colocar', 'alguna', 'observacion', 'gracia', 'por', 'el', 'producto', 'desd', 'venezuela'], ['el', 'producto', 'se', 'entrego', 'en', 'la', 'fecha', 'prevista', 'cuenta', 'con', 'las', 'caracteristica', 'ofrecida', 'tengo', 'queja', 'con', 'el', 'blackberri'], ['excel', 'product'], ['excel'], ['excelent', 'recomendado'], ['el', 'envío', 'fue', 'el', 'telefono', 'sólo', 'le', 'coloqué', 'el', 'chip', 'funcionó', 'sin', 'ningún', 'problema', 'las', 'funcion', 'de', 'blackberri', 'se', 'las', 'configuraron', 'desd', 'un', 'agent', 'movilnet', 'sin', 'problema'], ['excelent', 'equipo', 'comprado', 'funciona', 'perfecto', 'en', 'venezuela', 'con', 'movistar', 'movilnet', 'mhz', 'bastant', 'fluido', 'el', 'funcionamiento', 'la', 'pantalla', 'se', 'bastant', 'bien', 'la', 'camara', 'toma', 'foto', 'bastant', 'buena', 'lo', 'product', 'buy', 'work', 'perfect', 'venezuela', 'movistar', 'movilnet', 'mhz', 'work', 'fast', 'smooth', 'screen', 'clear', 'camera', 'take', 'good', 'photo', 'recomend'], ['exelent'], ['exelent', 'gracia'], ['love'], ['cell', 'pone', 'work', 'fine', 'countri', 'venezuela', 'movistar'], ['esta', 'en', 'excelent', 'condicion', 'recomiendo', 'est', 'vendedor', 'sus', 'artículo', 'llegan', 'en', 'el', 'tiempo', 'estimado', 'son', 'aún', 'mejor', 'que', 'lo', 'descrito'], ['ok'], ['super', 'bien'], ['el', 'producto', 'es', 'lo', 'esperado', 'recibido', 'en', 'perfecta', 'condicion', 'agradecido', 'con', 'el', 'vendedor', 'por', 'la', 'responsabilidad', 'compromiso', 'de', 'gracia'], ['two', 'star', 'blackberri', 'howev', 'give', 'five', 'star', 'global', 'distribut', 'outstand', 'custom', 'servic', 'reciev', 'phone', 'quick', 'began', 'issu', 'batteri', 'would', 'get', 'screen', 'show', 'batteri', 'red', 'x', 'email', 'global', 'distribu', 'sent', 'replac', 'batteri', 'free', 'charg', 'three', 'month', 'later', 'get', 'screen', 'death', 'contact', 'seller', 'three', 'time', 'happen', 'time', 'sent', 'free', 'replac', 'batteri', 'well', 'happen', 'addit', 'batteri', 'issu', 'also', 'dust', 'lint', 'collect', 'screen', 'make', 'aggrav', 'view', 'phone', 'global', 'distribut', 'awesom', 'blackberri', 'not', 'good', 'product', 'would', 'order', 'differ', 'brand'], ['equipo', 'nuevo', 'la', 'batería', 'le', 'dura', 'todo', 'el', 'día', 'fue', 'despachado', 'tiempo', 'en', 'venezuela', 'agarra', 'con', 'digitel', 'con', 'movilnet', 'movistar', 'recomendado'], ['llego', 'genial', 'mi', 'pai', 'venezuela', 'tal', 'cual', 'como', 'lo', 'describ', 'el', 'vendedor', 'funciana', 'excelent', 'con', 'movistar', 'movilnet'], ['phone', 'not', 'real', 'fake', 'phone', 'still', 'work', 'fine', 'well', 'far', 'fake'], ['excelent'], ['gusto'], ['bought', 'phone', 'expect', 'new', 'realli', 'phone', 'es', 'old', 'scratch', 'way', 'box', 'total', 'poor', 'not', 'origin', 'look', 'worst', 'refurbish', 'cellular', 'recommend'], ['second', 'review', 'ross', 'cellular', 'bought', 'thout', 'blackberri', 'storm', 'unlock', 'gsm', 'carrier', 'worldwid', 'spent', 'around', 'dollar', 'came', 'lock', 'activ', 'need', 'email', 'sent', 'ross', 'cellular', 'phone', 'call', 'amazon', 'got', 'finnali', 'messag', 'seller', 'need', 'activ', 'phone', 'not', 'enjoy', 'loos', 'time', 'not', 'enjoy', 'buy', 'wrongful', 'advertis', 'item', 'appreci', 'seller', 'respons', 'realli', 'thank', 'could', 'worst', 'not', 'even', 'answer', 'point', 'product', 'advertis', 'not', 'accur', 'descript', 'pleas', 'sure', 'full', 'descript', 'product', 'sell', 'phone', 'good', 'carrier', 'worldwid', 'languag', 'option', 'english', 'i', 'portug', 'live', 'state', 'would', 'like', 'phone', 'languag', 'receiv', 'second', 'email', 'ross', 'cellular', 'offer', 'dollar', 'refund', 'remov', 'feedback', 'even', 'allow', 'frustrat', 'discont', 'unsatisfact', 'worth', 'dollar', 'thank', 'rather', 'loos', 'money', 'tell', 'truth', 'phone', 'work', 'sim', 'card', 'receiv', 'not', 'happen', 'lost', 'time', 'great', 'effort', 'make', 'work', 'i', 'not', 'expert', 'activ', 'phone'], ['bb', 'sent', 'excel', 'condit', 'packag', 'arriv', 'time', 'cell', 'phone', 'work', 'perfect', 'enjoy', 'bb', 'everi', 'messag'], ['bought', 'phone', 'month', 'ago', 'puschas', 'new', 'sent', 'son', 'caribbean', 'first', 'everth', 'work', 'fine', 'two', 'week', 'coupl', 'button', 'stop', 'work', 'took', 'blackberri', 'store', 'told', 'refurbish', 'product', 'problem', 'amazon', 'guy', 'go', 'compani', 'sell', 'stuff', 'held', 'respons', 'defect', 'product', 'sold', 'amazon', 'loyal', 'custom', 'amazon', 'bought', 'product', 'happi', 'not', 'time', 'pleas', 'pay', 'attent', 'review'], ['receiv', 'deffect', 'item', 'one', 'key', 'broken', 'packag', 'not', 'batteri', 'insid', 'phone', 'not', 'unlock', 'not', 'work', 'complet', 'disast', 'not', 'buy'], ['great'], ['fine'], ['good'], ['excel'], ['hi', 'guy', 'bought', 'item', 'two', 'day', 'ago', 'camera', 'video', 'not', 'work', 'home', 'charger', 'not', 'origin', 'one', 'also', 'dose', 'not', 'work', 'return', 'soon'], ['two', 'big', 'scratch', 'otherwis', 'good', 'oh', 'plus', 'phone', 'case', 'not', 'fit', 'small'], ['thaanx'], ['good'], ['excel'], ['gracia'], ['excel', 'product', 'good', 'product', 'good', 'qualiti', 'recommend', 'love', 'thank', 'much', 'thank', 'greet'], ['good'], ['phone', 'come', 'time', 'small', 'scratch', 'cell', 'phone', 'batteri', 'not', 'workbut', 'think', 'price', 'right', 'suggest', 'product', 'indic', 'status', 'cellular'], ['excel', 'expect'], ['receiv', 'unit', 'myriad', 'challeng', 'forc', 'return', 'ringer', 'volum', 'not', 'work', 'not', 'maintain', 'connect', 'mobil', 'network', 'phone', 'not', 'ring', 'vibrat', 'diall', 'not', 'satisfi'], ['good', 'qualiti'], ['excel'], ['excelent'], ['hola', 'veo', 'con', 'preocupacion', 'que', 'que', 'los', 'celular', 'llegan', 'sin', 'audifono', 'auricularhello', 'note', 'concern', 'phone', 'come', 'without', 'headset', 'handset'], ['el', 'producto', 'daba', 'otra', 'característica', 'en', 'la', 'presentación', 'que', 'es', 'un', 'blackberri', 'con', 'cámara', 'la', 'cual', 'llego', 'un', 'blackberri', 'sin', 'cámara', 'modelo', 'es', 'primera', 'ves', 'que', 'ocurr', 'esto'], ['came', 'packag', 'nice', 'clean', 'screen', 'protect', 'finish', 'minor', 'almost', 'unnotic', 'scratch', 'near', 'edg', 'pull', 'screen', 'skin', 'smooth', 'clear', 'screen'], ['excelent'], ['item', 'also', 'good', 'product', 'work', 'proper', 'like', 'easi', 'use', 'oper', 'one', 'thing', 'back', 'product', 'littl', 'scratch', 'batteri', 'cover', 'look', 'difficult', 'open', 'use', 'sharp', 'tool', 'open', 'overal', 'kind', 'blackberri', 'good', 'like'], ['love', 'phone', 'look', 'brand', 'new', 'love', 'scratch', 'sign', 'use', 'batteri', 'great', 'condit', 'charger', 'best'], ['not', 'turn'], ['excel', 'cours', 'recommend', 'whole', 'communiti', 'product', 'new', 'box', 'product', 'detail', 'thank'], ['todo', 'muy', 'bien', 'lo', 'recomiendo', 'es', 'mejor', 'de', 'lo', 'que', 'esperaria', 'empresa', 'respons', 'llego', 'tal', 'como', 'el', 'vendedor', 'informo', 'funsiona', 'muy', 'bien', 'con', 'toda', 'las', 'operadora', 'en', 'venezuela', 'muy', 'contento'], ['aun', 'estoy', 'esperando', 'que', 'llegu', 'hace', 'mas', 'de', 'un', 'mes'], ['bought', 'two', 'arriv', 'phone', 'seem', 'ok', 'baterri', 'aw', 'condit', 'one', 'not', 'even', 'work', 'i', 'venezuela', 'buy', 'one', 'batteri', 'ship', 'take', 'long'], ['excel', 'product', 'recommend', 'purchas', 'item'], ['bought', 'nephew', 'love'], ['not', 'sure', 'phone', 'unlock', 'not', 'tri', 'take', 'south', 'america', 'gift', 'phone', 'though', 'work', 'perfect', 'good', 'guess', 'see', 'realli', 'unlock', 'read', 'lot', 'comment', 'say', 'seller', 'send', 'lock', 'drawback', 'not', 'come', 'packag', 'differ', 'complic', 'process', 'tri', 'put', 'languag', 'packag'], ['bueno'], ['okay', 'spent', 'gift', 'card', 'boss', 'bless', 'disappoint', 'purchas', 'item', 'receiv', 'blackberri', 'appar', 'blackberri', 'not', 'blackberri', 'expect', 'thought', 'purchas', 'one', 'camera', 'one', 'got', 'not', 'camera', 'not', 'happi', 'person', 'right', 'email', 'oem', 'shop', 'hope', 'hope', 'glad', 'return', 'phone', 'back', 'facil', 'standard', 'ship', 'hope', 'send', 'correct', 'phone', 'actual', 'camera', 'advertis', 'feel', 'sent', 'correct', 'one', 'well', 'sad', 'need', 'tell', 'want', 'refund', 'take', 'appropri', 'protocol', 'return', 'item', 'get', 'credit', 'keep', 'inform', 'oem', 'handl'], ['wast', 'money', 'not', 'buy', 'bought', 'intens', 'research', 'best', 'blackberri', 'best', 'saw', 'particular', 'phone', 'seller', 'not', 'think', 'price', 'right', 'still', 'phone', 'arriv', 'hang', 'loos', 'box', 'charger', 'middl', 'immedi', 'notic', 'someth', 'not', 'right', 'turn', 'batteri', 'went', 'minut', 'charg', 'complain', 'day', 'seller', 'answer', 'took', 'week', 'solv', 'problem', 'two', 'batteri', 'sent', 'one', 'week', 'wait', 'actual', 'abl', 'use', 'phone', 'notic', 'not', 'abl', 'connect', 'neither', 'wifi', 'wich', 'import', 'blackberri', 'talk', 'seller', 'not', 'abl', 'solv', 'give', 'money', 'back', 'tri', 'solv', 'problem', 'mobik', 'store', 'said', 'problem', 'wast', 'ton', 'money', 'phone', 'not', 'ise', 'proper', 'seller', 'not', 'even', 'tri', 'solv', 'massiv', 'wast', 'money', 'bad', 'phone', 'bad', 'advic', 'not', 'buy', 'read'], ['lcd', 'display', 'go', 'use', 'not', 'see', 'not', 'thing', 'monuth', 'use', 'notn', 'see', 'thing', 'not', 'know', 'like', 'dat'], ['phone', 'refurbish', 'phone', 'us', 'cellular', 'total', 'not', 'phone', 'stick', 'first', 'good', 'buy'], ['item', 'summari', 'lie', 'said', 'verizon', 'network', 'not', 'caus', 'wait', 'week', 'get', 'product', 'send', 'back', 'wait', 'anoth', 'week', 'get', 'money', 'back', 'frustrat', 'item'], ['not', 'buy', 'make', 'phone', 'call', 'return', 'phone', 'not', 'use', 'unabl', 'connect', 'internet', 'blackberri', 'bold', 'sprint', 'hate', 'want', 'blackberri', 'bold'], ['item', 'way', 'not', 'state', 'vex', 'bought', 'not', 'noth', 'like', 'wase', 'money'], ['overal', 'i', 'pleas', 'receiv', 'honest', 'speak', 'made', 'brave', 'attempt', 'buy', 'product', 'even', 'see', 'negat', 'review', 'receiv', 'product', 'realiz', 'peopl', 'complain', 'take', 'receiv', 'unlock', 'outdat', 'model', 'issu', 'fix', 'easili', 'would', 'still', 'call', 'great', 'deal', 'life', 'game', 'adjust', 'actual', 'bring', 'practic', 'everi', 'face', 'issu', 'batteri', 'door', 'old', 'appear', 'wall', 'charger', 'not', 'repli', 'seller', 'prompt', 'sent', 'replac', 'part', 'peopl', 'receiv', 'phone', 'unlock', 'think', 'insert', 'sim', 'card', 'make', 'work', 'gsm', 'phone', 'not', 'work', 'see', 'activ', 'requir', 'messag', 'start', 'complain', 'even', 'worst', 'case', 'phone', 'lock', 'get', 'unlock', 'code', 'free', 'depend', 'urgenc', 'would', 'say', 'seller', 'good', 'enough', 'send', 'unlock', 'code', 'ask', 'unlock', 'easili', 'switch', 'gsm', 'remov', 'activ', 'requir', 'help', 'pleas', 'type', 'follow', 'youtub', 'unlock', 'blackberri', 'bold', 'unlock', 'remot', 'code', 'verizon', 'disabl', 'activ', 'requir', 'blackberri', 'storm'], ['receiv', 'wifi', 'reason', 'bought', 'base', 'descript', 'product', 'condit', 'great', 'receiv', 'wrong', 'product', 'countri', 'phone', 'absolut', 'useless', 'without', 'wifi'], ['acabo', 'de', 'recibir', 'el', 'telefono', 'doy', 'cuenta', 'que', 'el', 'que', 'yo', 'solicit', 'compr', 'incluia', 'camara', 'est', 'pose', 'camara', 'alguna', 'lo', 'cual', 'sorprend', 'nunca', 'habia', 'visto', 'ni', 'tenia', 'conocimiento', 'que', 'existia', 'un', 'blackberri', 'sin', 'camara', 'por', 'lo', 'que', 'requiero', 'se', 'indiqu', 'como', 'formular', 'mi', 'reclamo', 'para', 'el', 'reintegro', 'del', 'dinero', 'el', 'envio', 'de', 'est', 'telefono', 'el', 'cual', 'fue', 'lo', 'solicitado', 'del', 'resto', 'todo', 'bien', 'solo', 'que', 'pose', 'camara', 'ilogico', 'para', 'amazon', 'la', 'intervencion', 'para', 'dar', 'solucion', 'todo', 'los', 'afectado', 'en', 'especail', 'los', 'de', 'venezuela', 'es', 'dificil', 'cosotoso', 'para', 'nosotro', 'comprar', 'en', 'el', 'exterior', 'para', 'que', 'venga', 'una', 'tienda', 'estafadora', 'enviar', 'un', 'telefono', 'q', 'fue', 'solicitado', 'de', 'paso', 'en', 'una', 'caja', 'blanca', 'sin', 'cabl', 'usb', 'sin', 'cd', 'tampoco', 'manual', 'es', 'una', 'oferta', 'engañosa', 'es', 'impresionant', 'leer', 'como', 'hay', 'mucha', 'persona', 'con', 'el', 'mismo', 'problema', 'q', 'yo', 'lo', 'cual', 'debe', 'llamar', 'la', 'atencion', 'de', 'amazon', 'como', 'es', 'posibl', 'q', 'esta', 'tienda', 'est', 'calificada', 'para', 'vender', 'en', 'lo', 'que', 'se', 'considera', 'una', 'de', 'las', 'pagina', 'mas', 'segura', 'para', 'compra', 'electronica', 'sabria', 'agradec', 'el', 'apoyo', 'para', 'un', 'feliz', 'termino'], ['lot', 'scratch', 'edg', 'also', 'crack', 'across', 'flash', 'would', 'return', 'leav', 'countri', 'less', 'three', 'week', 'not', 'enough', 'time', 'send', 'back', 'place', 'order', 'anoth', 'phone'], ['bought', 'phone', 'gave', 'friend', 'love', 'not', 'noth', 'prais', 'featur', 'phone'], ['phone', 'case', 'not', 'origin', 'phone', 'charger', 'batteri', 'damag', 'say', 'phone', 'refurbish'], ['good', 'morn', 'friend', 'thank', 'much', 'servic', 'recbi', 'blackberri', 'bold', 'unlock', 'gsm', 'smartphon', 'mp', 'camera', 'bluetooth', 'microsd', 'slot', 'black', 'good', 'condit'], ['exelent'], ['receiv', 'blackberri', 'phone', 'wast', 'not', 'work', 'end', 'lost', 'wow'], ['q', 'estafa', 'compr', 'un', 'telefono', 'como', 'nuevo', 'resulta', 'q', 'envian', 'un', 'telefono', 'repotenciado', 'en', 'mala', 'condicion', 'al', 'q', 'le', 'sirv', 'ni', 'siquiera', 'la', 'tapa', 'de', 'la', 'bateria', 'exijo', 'una', 'solucion', 'q', 'sea', 'remmbolsado', 'mi', 'dinero'], ['ever', 'found', 'phone', 'due', 'theft', 'unpredicatbl', 'happen', 'quick', 'easi', 'devic', 'keep', 'drawer', 'moment', 'price', 'make', 'perfect', 'plan', 'b', 'phone', 'time'], ['item', 'also', 'good', 'product', 'work', 'proper', 'like', 'easi', 'use', 'oper', 'one', 'thing', 'back', 'product', 'littl', 'scratch', 'batteri', 'cover', 'look', 'difficult', 'open', 'use', 'sharp', 'tool', 'open', 'overal', 'kind', 'blackberri', 'good', 'like'], ['argentina', 'afraid', 'phone', 'wolud', 'work', 'perfect', 'love', 'everyth', 'i', 'would', 'expect', 'everyth', 'would', 'expect', 'blackberri', 'smartphon', 'textingbbmessengerinternet', 'accesscamera', 'videocameraeveruth', 'love'], ['el', 'producto', 'daba', 'otra', 'característica', 'en', 'la', 'presentación', 'que', 'es', 'un', 'blackberri', 'con', 'cámara', 'la', 'cual', 'llego', 'un', 'blackberri', 'sin', 'cámara', 'modelo', 'es', 'primera', 'ves', 'que', 'ocurr', 'esto'], ['disappoint', 'return', 'yet', 'receiv', 'credit', 'could', 'not', 'retriev', 'voicemail', 'messag', 'kept', 'ask', 'code', 'verizon', 'show', 'verizon', 'subscrib', 'specif', 'order', 'tmobil', 'not', 'know', 'could', 'not', 'get', 'text', 'pic'], ['realli', 'happi', 'purchas', 'one', 'best', 'deal', 'quarter', 'year', 'commit', 'buy', 'good', 'servic'], ['item', 'good', 'excel'], ['good', 'afternoon', 'buy', 'bb', 'unblock', 'not', 'unblock', 'perdi', 'money', 'purchas', 'sale', 'fals', 'gustaria', 'know', 'chanc', 'code', 'tendran', 'med'], ['exelent'], ['ok'], ['phone', 'excel', 'condit', 'work', 'well', 'not', 'problem', 'sim', 'card'], ['satisfi', 'item', 'receiv'], ['regular'], ['not', 'work', 'discrib'], ['excel', 'happi', 'purchas', 'thank', 'great', 'servic', 'continu', 'not', 'gift', 'xd'], ['excelent', 'fue', 'entregado', 'en', 'el', 'tiempo', 'previsto', 'sin', 'ningun', 'inconvenient', 'lo', 'recomiendo', 'es', 'respons', 'satisfecho', 'con', 'el', 'servicio', 'prestado'], ['great', 'phone', 'wish', 'could', 'use', 'one'], ['excelent', 'producto', 'recomendadoo', 'buena', 'condicion', 'envio', 'rapido', 'seguro', 'satisfecho', 'con', 'el', 'producto', 'recibido', 'progucto', 'nuevo', 'en', 'buen', 'estado'], ['excelent'], ['perfect', 'friend'], ['bought', 'daughter', 'love'], ['bought', 'bunch', 'phone', 'take', 'countri', 'south', 'work', 'fine', 'would', 'not', 'come', 'batteri', 'would', 'heat', 'damag', 'woukd', 'say', 'cheap', 'phone', 'cheap', 'get', 'pay'], ['unit', 'fail', 'use', 'screen', 'went', 'blue', 'tri', 'reset', 'regladh', 'etc', 'not', 'work', 'use', 'travel', 'phone', 'abroad'], ['novemb', 'bought', 'articl', 'blackberri', 'bold', 'unlock', 'phone', 'mp', 'camera', 'gps', 'navig', 'microsd', 'slot', 'intern', 'version', 'warranti', 'black', 'whose', 'cell', 'phone', 'came', 'flaw', 'fulli', 'oper', 'except', 'bis', 'blackberri', 'messeng', 'not', 'work', 'cell', 'line', 'welcom', 'prompt', 'answer', 'solut'], ['normal', 'work', 'day', 'cellphon', 'not', 'receiv', 'call', 'turn', 'power', 'work', 'perform', 'task', 'daili', 'dislik', 'led', 'cellphon', 'technic', 'servic', 'found', 'motherboard', 'problem', 'spend', 'money', 'fix', 'second', 'phone', 'purchas', 'seller', 'problem', 'not', 'recommend', 'buy', 'product', 'seller'], ['recientement', 'realic', 'una', 'compra', 'por', 'amazon', 'de', 'est', 'telefono', 'con', 'toda', 'las', 'caracteristica', 'especificacion', 'tecnica', 'que', 'se', 'describen', 'en', 'la', 'publicidad', 'de', 'venta', 'con', 'las', 'condición', 'de', 'nuevo', 'reparado', 'ni', 'repotenciado', 'usado', 'resulto', 'una', 'deceppción', 'al', 'recibirlo', 'primerament', 'llego', 'sin', 'cargador', 'luego', 'cuando', 'pude', 'probarlo', 'tenia', 'la', 'camara', 'la', 'bateria', 'era', 'origin', 'estaba', 'dañada', 'parec', 'que', 'esto', 'debe', 'ser', 'mejorado', 'por', 'los', 'vendedor', 'debería', 'estoy', 'canalizando', 'la', 'devolución', 'para', 'que', 'envien', 'uno', 'con', 'las', 'caracteristica', 'que', 'describ', 'la', 'publicidad', 'siempr', 'cuando', 'contesten', 'los', 'distribuidor', 'ya', 'que', 'hasta', 'los', 'momento', 'han', 'respodido', 'recomiendo', 'revisar', 'bien', 'la', 'mercancia', 'tanto', 'el', 'distribuidor', 'como', 'los'], ['love', 'black', 'plan', 'alway', 'use', 'black', 'berri', 'type', 'mobil', 'use', 'black', 'berri', 'bold', 'perfect'], ['thank'], ['excel', 'product', 'recommend'], ['not', 'like', 'return', 'wait', 'refund'], ['cell', 'arriv', 'time', 'accord', 'accessori', 'softwar', 'also', 'program', 'spanish'], ['excel', 'product'], ['celular', 'look', 'like', 'new', 'phone', 'everytim', 'connect', 'charg', 'phone', 'turn', 'also', 'other', 'ocas', 'cell', 'turn', 'take', 'repair', 'open', 'cell', 'saw', 'intern', 'part', 'not', 'new', 'cell', 'alway', 'defect'], ['item', 'purchas', 'useless', 'capit', 'letter', 'phone', 'freez', 'time', 'took', 'specialist', 'repair', 'not', 'understand', 'reason', 'phone', 'freez', 'plan', 'return', 'back'], ['good'], ['bien'], ['bueno'], ['excelent', 'producto', 'de', 'buena', 'calidad', 'llego', 'rápido', 'el', 'envio', 'completo', 'sin', 'ningún', 'problema', 'tengo', 'ninguna', 'queja', 'continuen', 'asi'], ['good'], ['great'], ['last', 'blackberri', 'bought', 'batteri', 'not', 'work', 'well', 'realli', 'bad', 'phone', 'wrong', 'batteri', 'terribl', 'not', 'know', 'case', 'someth', 'generic', 'phone'], ['great', 'product', 'qualiti', 'speaker', 'great', 'excel', 'keyboard', 'batteri', 'life', 'still', 'flaw', 'sinc', 'model', 'outdat'], ['thrill', 'bold', 'intern', 'version', 'purchas', 'mixup', 'ship', 'recogn', 'earli', 'millenium', 'solut', 'sent', 'anoth', 'phone', 'next', 'day', 'shippment', 'not', 'charg', 'also', 'includ', 'car', 'charger', 'slight', 'inconveni', 'would', 'not', 'hesit', 'purchas', 'anyth', 'vendor', 'thank'], ['exelent'], ['well', 'phone', 'flawless', 'not', 'brought', 'micro', 'sd', 'memori', 'usual', 'come', 'instal', 'insid', 'slot', 'imagin', 'someon', 'compani', 'perfect', 'circl', 'case', 'came', 'print', 'brochur', 'equip', 'perfect', 'condit', 'new', 'import', 'current', 'work', 'perfect', 'el', 'telefono', 'llego', 'de', 'manera', 'impec', 'solo', 'que', 'trajo', 'la', 'memoria', 'micro', 'sd', 'de', 'generalment', 'la', 'trae', 'instalada', 'dentro', 'de', 'la', 'ranura', 'imagino', 'que', 'fue', 'alguien', 'de', 'la', 'empresa', 'perfect', 'circl', 'ya', 'que', 'dentro', 'de', 'la', 'caja', 'venia', 'un', 'folleto', 'impreso', 'de', 'ello', 'de', 'resto', 'el', 'equipo', 'esta', 'en', 'perfecta', 'condicion', 'nuevo', 'que', 'es', 'lo', 'mas', 'important', 'trabajando', 'actualment', 'con', 'perfectament'], ['muy', 'bien', 'por', 'est', 'vendedor', 'el', 'equipo', 'e', 'llego', 'sin', 'novedad', 'mi', 'destino', 'funciona', 'bien', 'sin', 'nigun', 'tipo', 'de', 'detall'], ['excel'], ['malo', 'pagu', 'por', 'un', 'telefono', 'nuevo', 'enviaron', 'uno', 'reformado', 'decepcionant', 'al', 'teclado', 'se', 'le', 'borranron', 'las', 'letra', 'muy', 'malo', 'engaño'], ['bought', 'sisit', 'gift', 'phone', 'never', 'work', 'tri', 'teturn', 'told', 'late', 'return', 'anoth', 'bad', 'deal', 'wast', 'money'], ['overal', 'great', 'phone', 'good', 'shape', 'brand', 'problem', 'network', 'not', 'work', 'phone', 'line', 'movistar', 'venezuela', 'sinc', 'platform', 'phone', 'not', 'work', 'phone', 'line', 'came', 'platform', 'work', 'digitel', 'say', 'make', 'sure', 'phone', 'band', 'work', 'movistar', 'movilnet'], ['not', 'quad', 'band', 'phone', 'compat', 'band', 'mean', 'phone', 'like', 'not', 'support', 'carrier', 'amazon', 'normal', 'deliv', 'great', 'product', 'far', 'worst', 'order', 'i', 'ever', 'made', 'websit', 'amazon', 'need', 'monitor', 'would', 'peopl', 'sell', 'site', 'spend', 'not', 'happi', 'camper', 'got', 'rip'], ['excel', 'team', 'well', 'arriv', 'stipul', 'time'], ['bueno'], ['excelent'], ['est', 'tlf', 'solo', 'levanta', 'con', 'digitel', 'venezuela', 'la', 'entrega', 'fue', 'rapida', 'vino', 'en', 'caja', 'sellada', 'con', 'todo', 'sus', 'accesorio', 'incluso', 'una', 'funda', 'con', 'clip', 'el', 'detall', 'es', 'que', 'al', 'revisar', 'el', 'kilometraj', 'del', 'tlf', 'mostro', 'alguna', 'hora', 'mega', 'de', 'uso', 'pesar', 'de', 'en', 'apariencia', 'funcionalidad', 'todo', 'nuevo'], ['levantava', 'g', 'el', 'equipo', 'era', 'usado', 'lo', 'vendieron', 'como', 'nuevo', 'era', 'como', 'reconstruido', 'le', 'compra', 'mas'], ['good'], ['un', 'excelent', 'producto', 'buena', 'recepcion', 'video', 'camara', 'velocidad', 'en', 'general', 'un', 'buen', 'producto', 'yo', 'lo', 'uso', 'en', 'venezuela', 'con', 'la', 'operadora', 'movistar', 'presento', 'mimgn', 'problema', 'recomendado'], ['phone', 'brand', 'new', 'look', 'nice', 'work', 'fine', 'troubl', 'servic', 'provid', 'not', 'phone', 'fault'], ['great', 'product', 'excel', 'qualiti', 'venezuela', 'oper', 'perfect'], ['seem', 'vari', 'degre', 'standard', 'qualiti', 'check', 'phone', 'replac', 'charg', 'port', 'top', 'speaker', 'assembl', 'problem', 'phone', 'would', 'restart', 'charger', 'insert', 'chang', 'charg', 'input', 'port', 'problem', 'speaker', 'voic', 'stop', 'work', 'chang', 'speaker', 'assembl', 'price', 'phone', 'deal', 'say', 'may', 'qualiti', 'check', 'obtain', 'oem', 'perform', 'phone'], ['final', 'decid', 'use', 'phone', 'late', 'never', 'turn', 'went', 'technic', 'told', 'screen', 'damag'], ['purchas', 'new', 'phone', 'given', 'old', 'one', 'phone', 'stop', 'work', 'six', 'month'], ['got', 'cell', 'phone', 'deffect', 'screen', 'not', 'get', 'conect', 'not', 'use', 'cell', 'phone', 'keep', 'closet'], ['like', 'phone', 'howev', 'item', 'lit', 'would', 'not', 'turn', 'went', 'take', 'tech', 'said', 'mother', 'board', 'defect', 'phone', 'look', 'good', 'defect', 'tri', 'call', 'seller', 'unabl', 'reach', 'went', 'vacat', 'bought', 'phone', 'purpos'], ['phone', 'stop', 'work', 'week', 'sold', 'new', 'product', 'refurbish', 'not', 'recommend', 'blackberri', 'anymor'], ['recomiendo', 'mucho', 'est', 'equipo', 'lo', 'estoy', 'utilizando', 'parec', 'de', 'una', 'rapidez', 'extraordinaria', 'comparada', 'con', 'mi', 'anterior', 'equipoy', 'pesa', 'nada', 'buenisimo'], ['clariti', 'call', 'good', 'limit', 'rang', 'get', 'outsid', 'citi', 'multipl', 'cell', 'tower', 'get', 'signal', 'big', 'mayb', 'previous', 'two', 'phone', 'manufactur', 'perform', 'seamless', 'condit', 'consist', 'fail'], ['good'], ['good'], ['good', 'daydear', 'amazoni', 'inform', 'slavic', 'simon', 'broker', 'blackberri', 'fail', 'address', 'way', 'valid', 'simon', 'reach', 'shirt', 'welcom', 'comment', 'attentivelyjesus', 'garcia'], ['soy', 'de', 'maracaibo', 'todo', 'llegó', 'bien', 'la', 'única', 'limitant', 'del', 'teléfono', 'es', 'q', 'levanta', 'debido', 'las', 'banda', 'pro', 'igual', 'lo', 'conect', 'movilnet', 'funciona', 'muy', 'bien'], ['bad', 'problem', 'screen', 'slow'], ['thks'], ['buy', 'product', 'give', 'sister', 'see', 'love', 'tell', 'practic', 'much', 'better', 'previous', 'version', 'use', 'like', 'ship', 'fast', 'secur', 'recommend', 'remain', 'give', 'time', 'see', 'behav', 'thank', 'much'], ['bad', 'qualiti', 'product', 'screen', 'broke', 'simpl', 'fall', 'sound', 'not', 'good', 'sometim', 'not', 'work'], ['excel'], ['leyendo', 'los', 'feedback', 'de', 'otro', 'comprador', 'vario', 'venezolano', 'note', 'que', 'casi', 'ninguno', 'le', 'llego', 'en', 'lo', 'compr', 'para', 'usarlo', 'en', 'movistar', 'el', 'equipo', 'es', 'excelent', 'el', 'unico', 'inconvenient', 'es', 'poder', 'usar', 'el', 'del', 'mismo', 'con', 'mi', 'linea', 'actual', 'deberia', 'de', 'haber', 'una', 'opcion', 'para', 'escog', 'en', 'que', 'banda', 'se', 'usara', 'si', 'en', 'mhz', 'de', 'movistar', 'en', 'mhz', 'de', 'digitel', 'por', 'lo', 'dema', 'cumpl', 'con', 'mis', 'expectativa'], ['blackberri', 'not', 'exact', 'expect', 'seem', 'like', 'cheaper', 'blackberri', 'thing', 'inconveni', 'hard', 'chang'], ['good', 'one'], ['muy', 'bueno', 'el', 'equipo', 'solo', 'tenido', 'problema', 'con', 'el', 'en', 'lo', 'demá', 'todo', 'parec', 'adecuado', 'con', 'buen', 'funcionamiento', 'lo', 'recomiendo', 'comprar'], ['good', 'phone'], ['good'], ['i', 'still', 'wait', 'replenish', 'equip', 'money', 'yta', 'phone', 'not', 'start'], ['excel', 'seller', 'recommend', 'reliabl'], ['amaz', 'phone', 'ever', 'work', 'perfect', 'tmobil', 'unlock', 'came', 'brand', 'new', 'thing', 'sent', 'mexico', 'not', 'matter', 'still', 'excel', 'phone', 'ship', 'well', 'came', 'quick', 'plus', 'alot', 'better', 'slimmer', 'sexier', 'better', 'batteri', 'life'], ['everyth', 'right', 'product', 'not', 'specif', 'band', 'use'], ['blackberri', 'bold', 'llego', 'en', 'buena', 'condicion', 'vivo', 'en', 'venezuela', 'trabaja', 'perfectament', 'el', 'con', 'movistar', 'movilnet', 'banda', 'con', 'digitel', 'agarra', 'el', 'para', 'poder', 'usar', 'el', 'digitel', 'con', 'debe', 'comprar', 'un', 'blackberri', 'que', 'trabaj', 'con', 'banda', 'tengan', 'en', 'cuenta', 'que', 'cualquier', 'celular', 'que', 'compr', 'en', 'amazon', 'para', 'venezuela', 'el', 'de', 'movistar', 'movilnet', 'tien', 'que', 'decir', 'band', 'para', 'digitel', 'band', 'hay', 'otra', 'marca', 'de', 'celular', 'que', 'traen', 'para', 'las', 'tres', 'línea', 'en', 'venezuela', 'movilnet', 'movistar', 'digitel', 'en', 'ese', 'caso', 'en', 'las', 'especificacion', 'debe', 'decir', 'hsdpa', 'blackberri', 'bold', 'arriv', 'good', 'condit', 'live', 'venezuela', 'work', 'perfect', 'movistar', 'movilnet', 'band', 'digitel', 'not', 'grab', 'use', 'digitel', 'buy', 'blackberri', 'work', 'band', 'pleas', 'note', 'cell', 'phone', 'buy', 'amazon', 'movistar', 'venezuela', 'movilnet', 'say', 'band', 'digitel', 'band', 'brand', 'bring', 'phone', 'three', 'line', 'venezuela', 'movilnet', 'movistar', 'digitel', 'case', 'specif', 'must', 'say', 'hsdpa'], ['owner', 'love', 'phone', 'phone', 'one', 'rate', 'give', 'phone'], ['todo', 'bien', 'gracia', 'llego', 'todo', 'en', 'perfecto', 'bien', 'gracia', 'llego', 'todo', 'en', 'perfecto', 'estadotodo', 'bien', 'gracia', 'llego', 'todo', 'en', 'perfecto', 'estado'], ['producto', 'en', 'buen', 'estado', 'encanta', 'lo', 'recomiendo', 'totalment', 'funcion', 'desbloqueado', 'la', 'carcasa', 'pesar', 'de', 'estar', 'usada', 'luce', 'casi', 'nueva'], ['good', 'product'], ['blackberri', 'bold', 'gsm', 'unlock', 'phone', 'full', 'qwerti', 'keyboard', 'mp', 'nice', 'smart', 'phone'], ['excelent', 'producto'], ['excelent'], ['muy', 'bueno'], ['good'], ['phone', 'suppos', 'new', 'month', 'phone', 'batteri', 'start', 'fail', 'phone', 'sudden', 'start', 'reset', 'turn', 'friend', 'check', 'told', 'not', 'new', 'phone', 'refurbish', 'version', 'batteri', 'not', 'origin', 'major', 'scam', 'feel', 'rob'], ['blackberri', 'work', 'perfect', 'year', 'one', 'latest', 'program', 'updat', 'use', 'avail', 'memori', 'slow', 'speed', 'make', 'necessari', 'constant', 'delet', 'everi', 'singl', 'email', 'refus', 'becom', 'iphon', 'addict', 'alway', 'tri', 'keep', 'year', 'upgrad', 'like', 'mani', 'other', 'advis', 'carrier', 'tech', 'specialist', 'get', 'model', 'much', 'memori', 'get', 'keep', 'qwerti', 'keyboard', 'trackpad', 'not', 'gone', 'detail', 'manual', 'trackpad', 'not', 'respons', 'disappoint', 'small', 'compar', 'benefit', 'new', 'bold', 'price', 'right', 'come', 'new', 'box', 'unlock', 'even', 'carrier', 'compani', 'logo', 'perfect', 'consid', 'not', 'sell', 'blackberri', 'far', 'love', 'phone', 'even', 'allow', 'not', 'alway', 'carri', 'player', 'music', 'lover', 'drive', 'larg', 'portion', 'music', 'collect', 'play', 'car', 'stereo', 'system', 'camera', 'great', 'far', 'good', 'came', 'fast', 'nice', 'packag', 'perfect', 'condit', 'would', 'use', 'seller'], ['blackberri', 'work', 'perfect', 'year', 'one', 'latest', 'program', 'updat', 'use', 'avail', 'memori', 'slow', 'speed', 'make', 'necessari', 'constant', 'delet', 'everi', 'singl', 'email', 'refus', 'becom', 'iphon', 'addict', 'alway', 'tri', 'keep', 'year', 'upgrad', 'like', 'mani', 'other', 'advis', 'carrier', 'tech', 'specialist', 'get', 'model', 'much', 'memori', 'get', 'keep', 'qwerti', 'keyboard', 'trackpad', 'not', 'gone', 'detail', 'manual', 'trackpad', 'not', 'respons', 'disappoint', 'small', 'compar', 'benefit', 'new', 'bold', 'price', 'right', 'come', 'new', 'box', 'unlock', 'even', 'carrier', 'compani', 'logo', 'perfect', 'consid', 'not', 'sell', 'blackberri', 'far', 'love', 'phone', 'even', 'allow', 'not', 'alway', 'carri', 'player', 'music', 'lover', 'drive', 'larg', 'portion', 'music', 'collect', 'play', 'car', 'stereo', 'system', 'camera', 'great', 'far', 'good', 'came', 'fast', 'nice', 'packag', 'perfect', 'condit', 'would', 'use', 'seller'], ['appear', 'full', 'hurt', 'even', 'usim', 'tray', 'simpli', 'not', 'work', 'proper', 'return', 'process', 'complic', 'live', 'korea', 'otherwis', 'would', 'soon', 'receiv', 'good', 'ask', 'replac', 'return', 'lowest', 'price', 'well', 'worst', 'product', 'ship', 'wait', 'long', 'time', 'without', 'receiv', 'reward', 'terribl', 'feel'], ['recomiendo', 'est', 'producto', 'recomiendo', 'el', 'vendedor', 'muy', 'respons', 'eficient', 'puntual', 'entrega'], ['work', 'perfect'], ['logo', 'like', 'use', 'month', 'screen', 'feel', 'like', 'not', 'fix', 'bodi', 'feel', 'unhappi'], ['broke', 'within', 'first', 'month'], ['perfect'], ['cosmet', 'better', 'describ', 'much', 'better', 'bold', 'happi', 'purchas'], ['gracia', 'hemano', 'muy', 'rapido', 'el', 'traslado', 'del', 'articulo', 'eso', 'es', 'lo', 'que', 'se', 'quier', 'estaremo', 'en', 'contacto', 'nos', 'vemo', 'en', 'la', 'proxima', 'compra'], ['expect', 'phone', 'gift', 'mom', 'delight', 'thank', 'send', 'team', 'quick', 'new', 'comput', 'perfect', 'thank', 'would', 'return', 'buy', 'unit', 'record', 'name', 'compani', 'like', 'purchas', 'venezuela', 'team', 'work', 'compani', 'venezuelan', 'read', 'say', 'buy', 'eye', 'close', 'recommend'], ['product', 'exceed', 'expect', 'profession', 'went', 'packag', 'unexpect', 'accessori', 'plus', 'impecc', 'condit', 'phone', 'even', 'though', 'new', 'phone', 'feel', 'got', 'money', 'worth'], ['stick', 'observ'], ['open', 'packag', 'perfect', 'box', 'perfect', 'everyth', 'phone', 'brand', 'new', 'unlock', 'softwar', 'mark', 'att', 'remov', 'futur', 'far', 'exel', 'purchas', 'alot', 'bad', 'rep', 'seller', 'trust', 'painless', 'kudo', 'high', 'recommend', 'purchas', 'price', 'brand', 'new', 'countri', 'best', 'blackberri', 'ever', 'better', 'new', 'gen', 'easi', 'stabl', 'sturdi', 'oper', 'system', 'super', 'stabl', 'new', 'one', 'android', 'rendit', 'opinion', 'cheap', 'best'], ['team', 'not', 'work', 'venezuela', 'six', 'month', 'tri', 'make', 'connect', 'mobil', 'servic', 'technician', 'say', 'phone', 'disappoint', 'thought', 'would', 'make', 'new', 'comput', 'feel', 'cheat', 'el', 'equipo', 'funciono', 'en', 'venezuela', 'tengo', 'sei', 'mese', 'tratando', 'de', 'que', 'sea', 'conectado', 'un', 'servicio', 'de', 'telefonía', 'móvil', 'todo', 'los', 'técnico', 'dicen', 'que', 'el', 'teléfono', 'es', 'que', 'gran', 'decepción', 'porqu', 'creía', 'que', 'iba', 'hacer', 'un', 'equipo', 'nuevo', 'por', 'lo', 'que', 'siento', 'estafado'], ['bought', 'homag', 'devic', 'sold', 'long', 'time', 'ago', 'beauti', 'amaz', 'build', 'qualiti', 'someth', 'want', 'devic', 'not', 'first', 'thing', 'notic', 'batteri', 'came', 'batteri', 'obvious', 'fake', 'print', 'front', 'batteri', 'origin', 'origin', 'not', 'even', 'print', 'front', 'make', 'obvious', 'also', 'ever', 'slight', 'thicker', 'back', 'door', 'would', 'not', 'even', 'close', 'proper', 'would', 'sometim', 'pop', 'open', 'includ', 'pictur', 'googl', 'batteri', 'see', 'not', 'look', 'front', 'obvious', 'not', 'next', 'notic', 'edg', 'steel', 'frame', 'not', 'perfect', 'line', 'soft', 'touch', 'back', 'mean', 'easili', 'felt', 'edg', 'steel', 'hand', 'obvious', 'sign', 'phone', 'taken', 'apart', 'put', 'back', 'togeth', 'done', 'poor', 'not', 'much', 'enough', 'notic', 'would', 'not', 'read', 'sd', 'card', 'matter', 'hard', 'tri', 'boy', 'browser', 'stupid', 'chines', 'site', 'bookmark', 'not', 'accessori', 'box', 'obvious', 'chines', 'knockoff', 'blackberri', 'logo', 'not', 'even', 'print', 'correct', 'would', 'not', 'trust', 'singl', 'devic', 'includ', 'case', 'joke', 'compar', 'qualiti', 'blackberri', 'case', 'also', 'list', 'swivel', 'holster', 'bag', 'seal', 'actual', 'cheap', 'pick', 'condit', 'mayb', 'better', 'lot', 'cheaper', 'use', 'market', 'simpli', 'not', 'recommend', 'stay', 'clear', 'not', 'trust', 'dlh', 'mobil'], ['good'], ['product', 'exceed', 'expect', 'profession', 'went', 'packag', 'unexpect', 'accessori', 'plus', 'impecc', 'condit', 'phone', 'even', 'though', 'new', 'phone', 'feel', 'got', 'money', 'worth'], ['phone', 'refurbish', 'regret', 'buy', 'peopl', 'complain', 'realli', 'dislik'], ['meet', 'expect', 'standard', 'happi', 'purchas', 'phone', 'ship', 'oversea', 'intent', 'ship', 'back', 'not', 'work', 'expect', 'fortun', 'enough', 'work', 'advertis', 'end', 'happi', 'everyon', 'happi'], ['second', 'phone', 'also', 'use', 'iphon', 'use', 'reliabl', 'experi', 'call', 'qualiti', 'excel', 'cours', 'love', 'keyboard', 'tri', 'blackberri', 'classic', 'return', 'mute', 'function', 'problemat', 'like', 'ui', 'clean', 'work', 'well'], ['recomiendo', 'est', 'producto', 'recomiendo', 'el', 'vendedor', 'muy', 'respons', 'eficient', 'puntual', 'entrega'], ['trackpad', 'went', 'bad', 'one', 'week', 'use', 'trackpad', 'went', 'bad', 'one', 'week', 'use', 'trackpad', 'went', 'bad', 'one', 'week', 'use'], ['good', 'phone'], ['thank', 'great', 'servic', 'enjoy', 'buy', 'thing', 'great', 'way', 'need'], ['bad', 'return', 'not', 'workmi', 'expect', 'badth', 'product', 'not', 'work', 'not', 'return', 'good', 'gif', 'card'], ['comment', 'work', 'perfect', 'love', 'light', 'slim', 'good', 'good', 'perform'], ['bad', 'expreienc', 'seller', 'first', 'took', 'long', 'ship', 'order', 'took', 'two', 'week', 'deliv', 'final', 'even', 'two', 'week', 'excit', 'phone', 'happi', 'moment', 'phone', 'receiv', 'blue', 'line', 'display', 'make', 'hard', 'read', 'text', 'not', 'even', 'use', 'featur', 'proper', 'phone', 'also', 'stop', 'work', 'use', 'ten', 'minut', 'issu', 'batteri', 'life', 'well', 'blackberri', 'batteri', 'use', 'last', 'two', 'day', 'devic', 'use', 'whole', 'batteri', 'half', 'day', 'also', 'tri', 'contact', 'seller', 'make', 'arrang', 'return', 'hope', 'sinc', 'week', 'not', 'big', 'deal', 'return'], ['cosmet', 'flaw', 'microphon', 'not', 'work', 'proper'], ['like', 'excel', 'phone', 'fast', 'lot', 'funtion', 'make', 'life', 'easi', 'work'], ['well', 'begin', 'open', 'box', 'wow', 'super', 'cool', 'phone', 'thing', 'need', 'sep', 'well', 'put', 'new', 'sim', 'card', 'work', 'well', 'fast', 'also', 'buy', 'memori', 'card', 'love', 'bb', 'problem', 'sep', 'phone', 'comun', 'email', 'thoe', 'guy', 'blutekusa', 'best', 'profesion', 'custom', 'servic', 'honest', 'best', 'deal', 'price', 'thank', 'guy', 'also', 'thank', 'amazon', 'buy', 'ebay', 'not', 'better', 'deal', 'like', 'amazon', 'love', 'also', 'love', 'new', 'phone', 'thank', 'much', 'alway', 'buy', 'anyth', 'need', 'websid', 'sincerelli', 'opinion', 'california', 'thank', 'much'], ['although', 'issu', 'compani', 'quick', 'contact', 'offer', 'mani', 'solut', 'sometim', 'run', 'bump', 'especi', 'electron', 'howev', 'custom', 'servic', 'keep', 'come', 'back', 'compani', 'offer', 'mani', 'option', 'fix', 'problem', 'tri'], ['excit', 'receiv', 'phone', 'realiz', 'not', 'work', 'network', 'countri', 'disappoint'], ['good'], ['hi', 'product', 'banda', 'not', 'work', 'countri', 'peru', 'need', 'banda', 'phone', 'movil', 'provid', 'claro', 'peru', 'pleas', 'let', 'know', 'set', 'return', 'product', 'bougth'], ['work', 'great'], ['el', 'producto', 'es', 'total', 'ment', 'recomend', 'llego', 'venezuela', 'en', 'excelent', 'estado', 'el', 'vendedor', 'confiabl', 'en', 'tiempo', 'valor', 'de', 'producto'], ['great', 'item'], ['happi', 'phone'], ['exel'], ['ok', 'though', 'password', 'difficult', 'use', 'also', 'includ', 'sim', 'card', 'not', 'necessari', 'pleas', 'send', 'phone', 'remov', 'batteri', 'phone'], ['not', 'band', 'open', 'pay', 'dollar', 'south', 'america', 'unlock', 'said', 'go', 'give', 'back', 'dollar', 'not'], ['great', 'servic', 'fast', 'shop', 'nice', 'honest', 'person', 'not', 'abl', 'use', 'phone', 'carrier', 'return', 'problem', 'high', 'recommend'], ['past', 'sever', 'year', 'use', 'myriad', 'devic', 'various', 'platform', 'various', 'form', 'factor', 'iphon', 'galaxi', 'note', 'nokia', 'lumia', 'etc', 'mobil', 'os', 'avail', 'today', 'uniqu', 'impress', 'long', 'call', 'qualiti', 'email', 'reliabl', 'organiz', 'featur', 'offer', 'old', 'blackberri', 'year', 'past', 'realiz', 'blackberri', 'two', 'new', 'devic', 'larger', 'screen', 'decid', 'give', 'blackberri', 'tri', 'larger', 'size', 'os', 'appear', 'thorough', 'modern', 'smartphon', 'week', 'love', 'screen', 'size', 'love', 'fluiditi', 'blackberri', 'new', 'innov', 'uniqu', 'os', 'love', 'feel', 'like', 'modern', 'smartphon', 'blackberri', 'time', 'poor', 'call', 'qualiti', 'constant', 'crash', 'restart', 'multipl', 'softwar', 'bug', 'much', 'trade', 'smartphon', 'releas', 'smartphon', 'smallish', 'inch', 'screen', 'smartphon', 'run', 'os', 'less', 'robust', 'app', 'support', 'not', 'bb', 'much', 'better', 'could', 'not', 'happier', 'snappi', 'intuit', 'handl', 'product', 'need', 'eas', 'call', 'qualiti', 'fantast', 'signal', 'strength', 'good', 'batteri', 'life', 'averag', 'three', 'email', 'account', 'painless', 'set', 'endless', 'googl', 'search', 'softwar', 'configur', 'need', 'push', 'email', 'arriv', 'instant', 'wherea', 'io', 'android', 'window', 'phone', 'devic', 'mani', 'email', 'delay', 'not', 'receiv', 'manual', 'check', 'blackberri', 'app', 'world', 'basic', 'cover', 'weather', 'slacker', 'shazam', 'facebook', 'camera', 'take', 'good', 'photo', 'i', 'yet', 'experi', 'crash', 'near', 'month', 'short', 'reliabl', 'effici', 'pleasant', 'mobil', 'devic', 'own', 'year', 'need', 'call', 'text', 'email', 'light', 'app', 'usag', 'high', 'recommend', 'consid', 'phone', 'give', 'test', 'find', 'os', 'port'], ['product', 'use', 'like', 'would', 'recommend', 'friend', 'buy', 'futur'], ['not', 'satisfi', 'product', 'screen'], ['not', 'good', 'phone', 'work', 'one', 'week'], ['got', 'exact', 'describ', 'descript', 'work', 'thank'], ['come', 'exact', 'advertis', 'good', 'servic'], ['worst', 'purchas', 'i', 'made', 'one', 'phone', 'purchas', 'not', 'one', 'receiv', 'bought', 'quad', 'band', 'unlock', 'gsm', 'phone', 'receiv', 'brand', 'verizon', 'phone', 'anyon', 'ever', 'purchas', 'unlock', 'phone', 'know', 'verizon', 'phone', 'worst', 'photo', 'phone', 'unbrand', 'generic', 'photo', 'anoth', 'awesom', 'thing', 'receiv', 'random', 'generic', 'charger', 'phone', 'actual', 'make', 'nois', 'plug', 'wors', 'plug', 'phone', 'key', 'not', 'work', 'sporad', 'best', 'part', 'phone', 'not', 'accept', 'data', 'connect', 'still', 'polici', 'built', 'not', 'use', 'app', 'world', 'mean', 'not', 'download', 'anyth', 'i', 'stuck', 'default', 'phone', 'not', 'work', 'not', 'connect', 'not', 'fix', 'guy'], ['met', 'expect'], ['bold', 'not', 'unlock'], ['i', 'happi', 'blackberri', 'call', 'clear', 'respons', 'time', 'web', 'use', 'control', 'fast', 'accur', 'camera', 'work', 'much', 'better', 'older', 'model', 'take', 'consecut', 'pictur', 'almost', 'instantan', 'cours', 'keyboard', 'main', 'reason', 'want', 'new', 'blackberri', 'wonder', 'not', 'one', 'watch', 'show', 'movi', 'play', 'game', 'phone', 'screen', 'resolut', 'adequ', 'certain', 'big', 'improv', 'torch', 'year'], ['nice'], ['loyal', 'blackberri', 'fan', 'year', 'sad', 'say', 'not', 'anymor', 'purchas', 'januari', 'first', 'one', 'keyboard', 'back', 'light', 'not', 'work', 'upon', 'arriv', 'amazon', 'replac', 'one', 'last', 'end', 'june', 'camera', 'stop', 'work', 'keyboard', 'key', 'start', 'type', 'doubl', 'random', 'one', 'sent', 'blackberri', 'warranti', 'last', 'week', 'complet', 'failur', 'froze', 'tri', 'charg', 'not', 'work', 'tri', 'reset', 'would', 'not', 'anyth', 'ask', 'blackberri', 'trick', 'tri', 'nada', 'ask', 'blackberri', 'refund', 'product', 'clear', 'faulti', 'mani', 'level', 'offer', 'send', 'yet', 'anoth', 'replac', 'day', 'phone', 'decid', 'would', 'unfreez', 'usabl', 'use', 'phone', 'run', 'small', 'busi', 'not', 'afford', 'day', 'without', 'phone', 'not', 'back', 'phone', 'home', 'happen', 'town', 'two', 'half', 'week', 'failur', 'caus', 'even', 'problem', 'time', 'could', 'not', 'would', 'give', 'phone', 'star', 'could', 'shame', 'decent', 'phone', 'howev', 'use', 'iphon', 'week', 'speed', 'put', 'bb', 'classic', 'shame', 'iphon', 'email', 'push', 'immedi', 'new', 'classic', 'lag', 'like', 'bb', 'email', 'never', 'not', 'old', 'blackberri', 'bold', 'best', 'phone', 'ever', 'sad', 'mine', 'wore'], ['boy', 'friend', 'like', 'much'], ['like', 'phone', 'lot', 'howev', 'seller', 'not', 'post', 'descript', 'extern', 'sound', 'not', 'work', 'excit', 'use', 'everyth', 'fine', 'except', 'extern', 'sound', 'come', 'speaker', 'dissapoint'], ['love', 'blackberri', 'one', 'littl', 'bit', 'slower', 'return'], ['good'], ['nice', 'mobil', 'use', 'applic', 'featur', 'main', 'problem', 'limit', 'batteri', 'life', 'maximum', 'around', 'day'], ['not', 'best', 'like', 'iphon'], ['use', 'six', 'month', 'excel', 'network', 'not', 'know', 'mani', 'partner', 'alway', 'network', 'problem', 'blackberri', 'give', 'good', 'network', 'speed', 'partner', 'use', 'blackberri', 'tether', 'featur', 'brows', 'iphon', 'found', 'phone', 'fetch', 'mail', 'even', 'remot', 'place', 'even', 'network', 'weak', 'excel', 'keyboardworst', 'part', 'blackberri', 'phone', 'limit', 'app'], ['want', 'communic', 'effici', 'get', 'work', 'done', 'smartphon', 'physic', 'keyboard', 'probabl', 'best', 'one', 'blackberri', 'ever', 'implement', 'sinc', 'key', 'larg', 'provid', 'great', 'tactil', 'feedback', 'worri', 'lack', 'app', 'blackberri', 'use', 'amazon', 'appstor', 'load', 'android', 'app', 'fill', 'display', 'not', 'larg', 'phablet', 'still', 'larg', 'display', 'bright', 'enough', 'view', 'outdoor', 'much', 'less', 'cram', 'fit', 'user', 'appreci', 'bold', 'take', 'formula', 'perfect', 'though', 'great', 'phone', 'batteri', 'small', 'make', 'day', 'phone', 'reboot', 'instal', 'app', 'would', 'lock', 'rememb', 'black', 'clock', 'occasion', 'longer', 'issu', 'robust', 'blackberri', 'qnx', 'os', 'classic', 'run', 'batteri', 'life', 'incred', 'pound', 'email', 'brows', 'web', 'day', 'make', 'day', 'begin', 'softwar', 'updat', 'come', 'improv', 'experi', 'even'], ['bought', 'brother', 'love'], ['great', 'experi', 'expect'], ['time', 'blackberri', 'lover', 'classic', 'model', 'everyth', 'look'], ['great', 'phone', 'complic', 'learn', 'featur', 'jump', 'program', 'function', 'take', 'differ', 'site', 'function', 'not', 'want', 'simpl', 'email', 'function', 'complic', 'learnt', 'short', 'learn', 'curv', 'long'], ['work', 'fine', 'function', 'like', 'everi', 'bb', 'noth', 'special', 'complaint'], ['good', 'love'], ['phone', 'great', 'blackberri', 'classic', 'phone', 'side', 'load', 'android', 'app', 'via', 'amazon', 'app', 'store', 'terribl', 'even', 'amazon', 'app', 'store', 'hard', 'enough', 'time', 'not', 'crash', 'not', 'buy', 'amazon', 'android', 'app', 'mind', 'great', 'blackberri', 'terribl', 'run', 'amazon', 'adroid', 'app', 'phone', 'amazon', 'cheaper', 'store', 'att', 'said', 'qualiti', 'control', 'experienc', 'bad', 'made', 'not', 'worth', 'back', 'forth', 'ship', 'buy', 'sell', 'item', 'multipl', 'time', 'issu', 'key', 'unit', 'got', 'jam', 'push', 'soft', 'versus', 'hard', 'click', 'typic', 'expect', 'blackberri', 'key', 'time', 'not', 'issu', 'get', 'lucki', 'not', 'mind', 'send', 'phone', 'back', 'i', 'would', 'say', 'go', 'buy', 'amazon', 'like', 'thing', 'taken', 'care', 'right', 'away', 'not', 'like', 'multipl', 'big', 'charg', 'i', 'would', 'opt', 'buy', 'store', 'defect', 'phone', 'swap', 'exit', 'blackberri', 'great', 'unless', 'expect', 'blackberri', 'android', 'not', 'expect', 'play', 'candi', 'crush', 'battl', 'frontier', 'without', 'lot', 'crash', 'also', 'googl', 'play', 'servic', 'avail', 'gmail', 'work', 'though', 'email', 'applic'], ['still', 'note', 'white', 'i', 'blackberri', 'classic', 'hour', 'alreadi', 'enjoy', 'keyboard', 'use', 'touchscreen', 'input', 'absolut', 'best', 'featur', 'devic', 'not', 'media', 'consumpt', 'devic', 'though', 'youtub', 'look', 'dumb', 'lol', 'not', 'use', 'thing', 'media', 'like', 'could', 'note', 'shield', 'love', 'way', 'handl', 'instanc', 'univers', 'use', 'outlook', 'tri', 'set', 'note', 'want', 'devic', 'administr', 'privileg', 'like', 'n', 'blackberri', 'type', 'user', 'name', 'password', 'wallah', 'work', 'perfect', 'feel', 'profession', 'grown', 'use', 'devic', 'though', 'albeit', 'would', 'enjoy', 'greater', 'intern', 'spec', 'cost', 'love', 'bbm', 'system', 'far', 'work', 'great', 'camera', 'lag', 'like', 'saw', 'one', 'video', 'lot', 'not', 'slow', 'not', 'fast', 'feel', 'amaz', 'make', 'sensei', 'never', 'app', 'game', 'use', 'app', 'note', 'like', 'person', 'financ', 'manag', 'list', 'sms', 'back', 'restor', 'etc', 'app', 'use', 'year', 'realli', 'realli', 'realli', 'love', 'easi', 'go', 'individu', 'app', 'set', 'manag', 'app', 'permiss', 'omg', 'like', 'got', 'intrus', 'yes', 'awar', 'govern', 'power', 'access', 'devic', 'gps', 'monitor', 'call', 'see', 'text', 'etc', 'least', 'control', 'app', 'due', 'dilig', 'see', 'obtain', 'similar', 'app', 'satisfi', 'daili', 'driver', 'need', 'bought', 'sim', 'adapt', 'origin', 'plan', 'keep', 'devic', 'note', 'classic', 'realli', 'want', 'chang', 'devic', 'everyday', 'sound', 'good', 'love', 'note', 'hate', 'type', 'touchscreen', 'sure', 'beauti', 'insid', 'honest', 'go', 'keep', 'blackberri', 'app', 'facebook', 'twitter', 'tell', 'like', 'permiss', 'total', 'one', 'amaz', 'love', 'not', 'use', 'android', 'thing', 'blackberri', 'devic', 'need', 'use', 'app', 'made', 'system', 'achiev', 'best', 'perform', 'time', 'tell', 'thus', 'far', 'pretti', 'decent', 'devic', 'love', 'profession', 'thought', 'blackberri', 'put', 'devic', 'simplist', 'yet', 'matur', 'feel', 'good', 'must', 'make', 'keep', 'devic', 'current', 'experienc', 'nostalgia', 'use', 'note', 'throughout', 'day', 'via', 'sim', 'adapt', 'tool', 'sell', 'note', 'use', 'sole', 'primari', 'devic', 'use', 'shield', 'tablet', 'android', 'need', 'return', 'keep', 'note', 'keep', 'classic', 'sell', 'craigslist', 'return', 'time', 'frame', 'exhaust', 'h', 'e', 'l', 'p'], ['i', 'use', 'iphon', 'samsung', 'galaxi', 'quit', 'time', 'recent', 'use', 'samsung', 'galaxi', 'thought', 'buy', 'iphon', 'go', 'buy', 'iphon', 'chanc', 'found', 'blackberri', 'classic', 'admit', 'sinc', 'saw', 'fell', 'love', 'especi', 'saw', 'physic', 'keyboard', 'knew', 'must', 'clarifi', 'iphon', 'samsung', 'galaxi', 'blackberri', 'user', 'alway', 'fan', 'eleg', 'design', 'softwar', 'peopl', 'chang', 'blackberri', 'messeng', 'whatsapp', 'fact', 'bare', 'exist', 'app', 'not', 'even', 'ran', 'well', 'blackberri', 'forc', 'chang', 'aforement', 'idea', 'blackberri', 'classic', 'mere', 'promis', 'cell', 'phone', 'optim', 'make', 'easier', 'work', 'email', 'text', 'messag', 'fals', 'recent', 'close', 'social', 'network', 'want', 'cell', 'phone', 'focus', 'email', 'text', 'messag', 'definit', 'phone', 'not', 'best', 'work', 'not', 'believ', 'slow', 'applic', 'take', 'note', 'uninstal', 'linkedin', 'facebook', 'foursquar', 'twitter', 'alreadi', 'instal', 'buy', 'wonder', 'slow', 'would', 'use', 'social', 'network', 'ridicul', 'sometim', 'bbm', 'take', 'second', 'open', 'singl', 'messag', 'use', 'whatsapp', 'occas', 'press', 'button', 'open', 'messag', 'end', 'open', 'user', 'profil', 'design', 'softwar', 'general', 'feel', 'somewhat', 'date', 'respond', 'slowli', 'compar', 'phone', 'market', 'today', 'includ', 'older', 'blackberri', 'unforgiv', 'instabl', 'phone', 'total', 'chao', 'navig', 'blackberri', 'os', 'option', 'not', 'believ', 'came', 'surpris', 'price', 'paid', 'total', 'tax', 'amaz', 'half', 'price', 'could', 'bought', 'much', 'faster', 'stabl', 'struck', 'physic', 'keyboard', 'alreadi', 'hand', 'felt', 'cheap', 'saw', 'mani', 'review', 'say', 'keyboard', 'comfort', 'not', 'noisi', 'press', 'key', 'real', 'thing', 'everi', 'time', 'press', 'button', 'night', 'neighbor', 'end', 'yell', 'pleas', 'stop', 'text', 'would', 'say', 'product', 'complet', 'disappoint', 'dare', 'say', 'scam', 'price', 'advic', 'would', 'mean', 'buy', 'phone', 'noth', 'expect', 'want', 'retro', 'experi', 'golden', 'time', 'blackberri', 'long', 'session', 'bbm', 'chat', 'recommend', 'borrow', 'week', 'return', 'someth', 'modern', 'send', 'receiv', 'email', 'not', 'fool', 'idea', 'phone', 'ideal', 'work', 'simpli', 'way', 'good', 'end', 'suffoc', 'realli', 'pathet', 'unjustifi', 'thing', 'use', 'weapon', 'thank', 'hope', 'make', 'updat', 'soon', 'optim', 'os'], ['real', 'classic', 'bb', 'good', 'time', 'combin', 'better', 'hardwar', 'touch', 'interfac', 'app', 'seem', 'not', 'work', 'proper', 'ie', 'waze'], ['phone', 'not', 'even', 'day', 'return', 'activ', 'frame', 'bother', 'hell', 'home', 'screen', 'app', 'store', 'not', 'basic', 'busi', 'app', 'need', 'howev', 'phone', 'look', 'felt', 'realli', 'great', 'reason', 'phone', 'also', 'came', 'open', 'made', 'also', 'want', 'return', 'softwar', 'chang', 'bit', 'would', 'total', 'love', 'phone'], ['everyth', 'expect', 'blackberri'], ['good'], ['far', 'best', 'phone', 'ever', 'own', 'think', 'combin', 'keyboard', 'touch', 'screen', 'awesom', 'one', 'thing', 'point', 'bold', 'key', 'smiley', 'kind', 'way', 'phone', 'straight', 'feel', 'like', 'bold', 'could', 'type', 'faster', 'comfort', 'not', 'get', 'wrong', 'ckassic', 'keyboard', 'insan', 'good', 'comfort', 'smile', 'thing', 'feel', 'way', 'better', 'detail', 'everi', 'key', 'feel', 'good', 'coupl', 'day', 'type', 'without', 'see', 'keyboard', 'not', 'mean', 'text', 'drive', 'anoth', 'thing', 'applic', 'load', 'via', 'amazon', 'run', 'realli', 'slow', 'phone', 'most', 'side', 'load', 'app', 'not', 'realli', 'custom', 'classic', 'app', 'most', 'complain', 'spotifi', 'use', 'spotifi', 'daili', 'basi', 'sometim', 'realli', 'frustrat', 'tri', 'use', 'realli', 'slow', 'sometim', 'not', 'even', 'load', 'phone', 'feel', 'premium', 'app', 'phone', 'custom', 'fast', 'reliabl', 'speaker', 'bottom', 'not', 'sure', 'left', 'one', 'probabl', 'thing', 'iphon'], ['great', 'old', 'blackberri', 'feel', 'new', 'twist'], ['great', 'product', 'fast', 'ship', 'great', 'deal', 'excel', 'custom', 'servic', 'thank'], ['mi', 'operador', 'de', 'teléfono', 'en', 'venezuela', 'movilnet', 'engaño', 'diciéndom', 'que', 'podían', 'conectar', 'cualquier', 'telefono', 'liberado', 'mi', 'linea'], ['good'], ['opinio', 'seller', 'recellulartoo', 'alway', 'sold', 'begin', 'good', 'ok', 'bought', 'quantiti', 'like', 'mobil', 'alway', 'mobil', 'come', 'defect', 'exampl', 'usb', 'aw', 'want', 'buy', 'one', 'good', 'want', 'bouy', 'item', 'need', 'know', 'alway', 'come', 'damag', 'defect'], ['camera', 'not', 'work'], ['not', 'believ', 'got', 'blackberri', 'curv', 'new', 'not', 'refurbish', 'amazon', 'would', 'cost', 'much', 'purchas', 'carrier', 'wireless', 'jump', 'deal', 'late'], ['suppos', 'rebuilt', 'put', 'new', 'case', 'cover', 'sd', 'broke', 'work', 'sometim', 'quit', 'work', 'togeth', 'month', 'would', 'not', 'recommend', 'buy'], ['excel'], ['work', 'well', 'outsid', 'us'], ['love', 'phone', 'definit', 'reliabl', 'phone', 'suit', 'person', 'need', 'size', 'look'], ['bueno'], ['fine'], ['bought', 'blackberri', 'husband', 'want', 'get', 'straight', 'talk', 'found', 'straight', 'talk', 'not', 'support', 'blackberri', 'sent', 'request', 'return', 'product', 'refund', 'phone', 'never', 'came', 'never', 'got', 'money', 'put', 'back', 'tri', 'write', 'seller', 'not', 'heard', 'almost', 'month'], ['great', 'phone', 'love'], ['incred', 'year', 'use', 'blackberri', 'die', 'not', 'work', 'upset', 'recomend', 'not', 'buy', 'product'], ['absolut', 'love', 'phone', 'perfect', 'condit', 'arriv', 'work', 'great', 'boost', 'mobil', 'store', 'around', 'area', 'phone', 'great', 'price', 'well'], ['not', 'know', 'blackberri', 'one', 'suck', 'horribl', 'like', 'servic', 'anywher', 'not', 'internet', 'browser', 'though', 'smartphon', 'piss', 'wast', 'money', 'date', 'phone'], ['like', 'blackberri', 'curv', 'much', 'not', 'blackberri', 'user', 'month', 'back', 'pleasant', 'surpris', 'phone', 'impress', 'type', 'blackberri', 'would', 'difficult', 'given', 'small', 'key', 'prove', 'wrong', 'one', 'overal', 'good', 'phone', 'price', 'paid', 'i', 'give', 'four', 'star', 'sinc', 'sometim', 'take', 'bring', 'phone', 'back', 'standbi', 'mode', 'otherwis', 'complaint'], ['reciev', 'great', 'custom', 'servic', 'especi', 'need', 'help', 'defect', 'item', 'offer', 'help', 'beyond', 'could', 'realli', 'appreci', 'definatley', 'get', 'star', 'rate', 'thank', 'frank'], ['item', 'great', 'relat', 'price', 'qualiti', 'useful', 'buy', 'item', 'unblock'], ['excelent', 'producto', 'lamentablement', 'los', 'metodo', 'de', 'envio', 'utilizado', 'fueron', 'de', 'mi', 'agrado', 'en', 'una', 'calificacion', 'de', 'lo', 'califico', 'como', 'seleccion', 'el', 'envio', 'expreso', 'por', 'el', 'que', 'cobraron', 'dólare', 'adicional', 'llegó', 'destino', 'dia', 'despu', 'del', 'mencionado', 'por', 'amazon', 'el', 'destino', 'era', 'en', 'florida', 'la', 'tienda', 'de', 'origen', 'tambien', 'revisando', 'el', 'histori', 'del', 'trayecto', 'resulta', 'que', 'el', 'equipo', 'llegó', 'hasta', 'kentucki', 'explico', 'eso', 'podemo', 'decir', 'que', 'le', 'dio', 'la', 'vuelta', 'al', 'mundo', 'para', 'ir', 'de', 'un', 'punto', 'otro', 'que', 'estaban', 'solo', 'alguno', 'kms', 'de', 'distancia', 'se', 'quien', 'es', 'el', 'respons', 'pero', 'considero', 'que', 'si', 'cobran', 'adicional', 'por', 'un', 'envio', 'expreso', 'deberian', 'cumplir', 'devolv', 'el', 'dinero'], ['got', 'blackberri', 'month', 'ago', 'perfect', 'got', 'one', 'brand', 'new', 'sold', 'amazon', 'anxious', 'get', 'sinc', 'terribl', 'experi', 'last', 'year', 'got', 'one', 'anoth', 'seller', 'paid', 'price', 'new', 'bb', 'got', 'one', 'refurbish', 'stolen', 'bb', 'pin', 'fake', 'happi', 'recent', 'purchas', 'everyth', 'came', 'brand', 'new', 'box', 'manual', 'headphon', 'batteri', 'etc', 'far', 'phone', 'great', 'qwerti', 'keyboard', 'awesom', 'trackpad', 'cool', 'fulli', 'work', 'brazil'], ['parec', 'raro', 'que', 'est', 'teléfono', 'gémini', 'trae', 'españold', 'en', 'las', 'opcion', 'de', 'cambio', 'de', 'lenguaj', 'mas', 'que', 'raro', 'insólito', 'porqu', 'esto', 'teléfono', 'son', 'multilenguaj', 'pareciera', 'un', 'teléfono', 'reconstruido', 'usado', 'previament', 'que', 'le', 'fueron', 'eliminado', 'los', 'lenguaj', 'para', 'hacer', 'mas', 'espacio', 'en', 'la', 'memoria', 'de', 'est', 'smartphon', 'satisfecho', 'con', 'la', 'compra', 'por', 'favor', 'los', 'futuro', 'comprador', 'espero', 'se', 'asesoren', 'bien', 'con', 'el', 'vendedor', 'se', 'aseguren', 'de', 'que', 'la', 'información', 'que', 'se', 'menciona', 'para', 'la', 'venta', 'del', 'teléfono', 'sea', 'la', 'misma', 'para', 'el', 'momento', 'de', 'la', 'entrega'], ['excelent'], ['nice', 'phone', 'unlock', 'deliveri', 'ship', 'ok', 'new', 'box', 'bad', 'thing', 'model', 'not', 'iclud', 'leather', 'case', 'neither', 'memori', 'card', 'phone', 'work', 'correct', 'batteri', 'softwar', 'alreadi', 'updat', 'use', 'differ', 'countri', 'work', 'perfect', 'movistar', 'line', 'venezuela'], ['excelent', 'vendedor', 'el', 'equipo', 'llegó', 'sin', 'problema', 'en', 'perfecta', 'condicion', 'la', 'puerta', 'de', 'mi', 'casa', 'lo', 'recomiendo', 'ampliament'], ['wors', 'phone', 'ever', 'buy', 'lifetim', 'think', 'compani', 'big', 'rip', 'poor', 'peopl', 'sell', 'someth', 'big', 'farc'], ['excelent', 'producto', 'de', 'calidad', 'recomendando', 'como', 'lo', 'estaba', 'buscando', 'excelent', 'servicio', 'de', 'envio', 'miami', 'recibido', 'tiempo', 'estimado'], ['excel', 'purchas'], ['antenna', 'weak', 'old', 'blackberri', 'better', 'recept', 'go', 'outsid', 'build', 'talk'], ['first', 'blackberri', 'not', 'lot', 'refer', 'work', 'perfect', 'smaller', 'previous', 'bb', 'pretti', 'easi', 'handl', 'price', 'excel', 'invest'], ['well', 'whole', 'blackberri', 'arriv', 'good', 'condit', 'sent', 'good', 'packag', 'accessoriesth', 'thing', 'not', 'bring', 'memori', 'batteri', 'vehicleotherwis', 'good'], ['like'], ['est', 'producto', 'es', 'bello', 'el', 'color', 'es', 'hermoso', 'es', 'muy', 'elegant', 'tien', 'mucha', 'funcion', 'la', 'tienda', 'es', 'muy', 'respons', 'ya', 'que', 'el', 'producto', 'llego', 'ant', 'de', 'la', 'fecha', 'tanto', 'el', 'producto', 'como', 'la', 'tienda', 'ampliament'], ['order', 'gift', 'someon', 'not', 'like', 'small', 'apart', 'everyth', 'perfect', 'came', 'new', 'box', 'time'], ['hola', 'bueno', 'dia', 'soy', 'de', 'venezuela', 'caraca', 'compr', 'est', 'productu', 'hasta', 'ahora', 'ha', 'salido', 'buenisimo', 'lo', 'traje', 'por', 'liberti', 'express', 'salio', 'en', 'el', 'envio', 'lo', 'recomiendo'], ['nice', 'phone', 'unlock', 'deliveri', 'ship', 'ok', 'new', 'box', 'bad', 'thing', 'model', 'not', 'iclud', 'leather', 'case', 'neither', 'memori', 'card', 'phone', 'work', 'correct', 'batteri', 'softwar', 'alreadi', 'updat', 'use', 'differ', 'countri', 'work', 'perfect', 'movistar', 'line', 'venezuela'], ['purchas', 'phone', 'request', 'deliv', 'friend', 'address', 'florida', 'would', 'visit', 'would', 'travel', 'back', 'jamaica', 'remov', 'packag', 'materi', 'arriv', 'jamaica', 'two', 'day', 'later', 'attempt', 'charg', 'phone', 'charg', 'six', 'hour', 'would', 'not', 'take', 'charg', 'one', 'bar', 'entir', 'night', 'remov', 'batteri', 'tri', 'follow', 'morn', 'avail', 'thought', 'batteri', 'defect', 'bought', 'new', 'batteri', 'jamaica', 'result', 'dispos', 'packag', 'florida', 'not', 'return', 'phone', 'feel', 'cheat'], ['excel'], ['el', 'celular', 'llego', 'en', 'excelent', 'estado', 'el', 'tiempo', 'de', 'entrega', 'fue', 'muy', 'rapido', 'funciona', 'la', 'perfeccion', 'en', 'venezuela', 'con', 'movistar', 'aun', 'lo', 'pruebo', 'con', 'otra', 'compania'], ['despué', 'que', 'compr', 'est', 'equipo', 'hubo', 'problema', 'con', 'el', 'envió', 'reembolsaron', 'mi', 'dinero', 'pero', 'perdí', 'imagino', 'que', 'del', 'envió', 'muy', 'malo', 'para', 'mi'], ['good', 'phone'], ['good'], ['good', 'part', 'unlock', 'easi', 'use', 'sim', 'card', 'k', 'key', 'not', 'work'], ['yes', 'unlock', 'good', 'phone'], ['el', 'equipo', 'funciona', 'muy', 'bien', 'contien', 'todo', 'los', 'accesorio', 'que', 'el', 'vendedor', 'especifica', 'lo', 'único', 'que', 'en', 'el', 'menú', 'de', 'idioma', 'pose', 'el', 'españold', 'recomendando', 'excelent', 'compra'], ['purchas', 'replac', 'age', 'white', 'phone', 'proven', 'equal', 'task', 'hamper', 'although', 'not', 'much', 'rapid', 'declin', 'servic', 'area', 'contract', 'plan', 'use', 'exclus', 'intern', 'phone', 'travel', 'consid', 'use', 'virgin', 'sprint', 'servic', 'reliabl', 'domest', 'blackberri', 'demis', 'appear', 'immin'], ['purchas', 'two', 'blackberri', 'curv', 'juli', 'year', 'receiv', 'phone', 'howev', 'one', 'defect', 'not', 'abl', 'use', 'one', 'fact', 'not', 'abl', 'use', 'phone', 'not', 'even', 'disappoint', 'money', 'seem', 'wast', 'rip', 'buy', 'phone', 'suppos', 'new', 'not', 'even', 'get', 'day', 'servic', 'potenti', 'buyer', 'warn'], ['good', 'product', 'fast', 'deliveri'], ['excel'], ['not', 'work', 'sent', 'back', 'not', 'get', 'refund'], ['great', 'blackberri', 'r', 'p', 'h', 'n', 'e', 'reason', 'cost'], ['upset', 'dealer', 'say', 'warranti', 'phone', 'sold', 'not', 'work', 'sever', 'store', 'told', 'problem', 'inner', 'antenna', 'not', 'fix', 'problem', 'paid', 'someth', 'never', 'work', 'not', 'know', 'other', 'write', 'good', 'comment', 'dealer', 'learn', 'lesson', 'never', 'buy', 'someth', 'without', 'warranti', 'matter', 'good', 'price', 'sound', 'regret', 'later'], ['realli', 'excel', 'gusta', 'conoc', 'todo', 'los', 'detall', 'del', 'producto', 'para', 'saber', 'si', 'se', 'adecúa', 'mis', 'necesidad', 'que', 'tipo', 'de', 'servicio', 'prestan', 'usted', 'hasta', 'ahora', 'todo', 'ha', 'ido', 'muy', 'bienthank'], ['compr', 'est', 'producto', 'porqu', 'ya', 'estaba', 'recomendado', 'por', 'otro', 'adema', 'funcionaria', 'ien', 'en', 'mi', 'pai', 'que', 'es', 'venezuela', 'estoy', 'aprendiendo', 'utilizarlo', 'pero', 'llego', 'en', 'perfecto', 'estado', 'le', 'falto', 'nada', 'con', 'su', 'caja', 'el', 'mano', 'libr', 'cd', 'un', 'manual', 'de', 'bolsillo', 'su', 'cabl', 'de', 'conexion', 'mucha', 'gracia', 'estoy', 'complacidad', 'haber', 'comprado', 'est', 'producto'], ['not', 'receiv', 'ítem', 'yet', 'i', 'angri', 'need', 'blackberri', 'paid', 'happen'], ['littl', 'grand', 'son', 'love', 'everyth', 'went', 'fast', 'way', 'pictur', 'best', 'seller', 'thank', 'georgeta'], ['hola', 'ha', 'llegado', 'el', 'blackberri', 'con', 'problema', 'con', 'el', 'softwar', 'por', 'favor', 'se', 'podria', 'hacer', 'algo', 'con', 'respecto', 'mi', 'caso', 'podrían', 'hacer', 'cambio', 'de', 'mi', 'producto', 'por', 'favor', 'se', 'les', 'agradeceria', 'mucho', 'ya', 'que', 'amazon', 'es', 'una', 'empresa', 'muy', 'conocida', 'aqui', 'en', 'venezuela', 'gustaria', 'tener', 'mala', 'reseña', 'sobr', 'esta', 'pagina', 'gracia', 'por', 'su', 'tiempo', 'espero', 'una', 'respuesta', 'pronto'], ['recibi', 'el', 'bb', 'ayer', 'coloqu', 'mi', 'sim', 'sirv', 'prefecto', 'como', 'celular', 'con', 'digitel', 'aun', 'activado', 'el', 'servicio', 'bb', 'sin', 'embargo', 'varia', 'persona', 'han', 'dicho', 'que', 'el', 'aparato', 'debio', 'traer', 'una', 'memoria', 'adicion', 'que', 'es', 'raro', 'que', 'la', 'tenga', 'quisiera', 'saber', 'si', 'verdaderament', 'la', 'trae', 'receiv', 'yesterday', 'work', 'good', 'cel', 'phone', 'not', 'bb', 'servic', 'yet', 'i', 'worri', 'peopl', 'told', 'bb', 'must', 'bring', 'adit', 'memori', 'card', 'not', 'bring', 'want', 'know', 'true', 'true', 'receiv', 'adit', 'memori'], ['charger', 'port', 'fell', 'day', 'believ', 'phone', 'refurbish', 'not', 'new', 'advertis'], ['order', 'phone', 'not', 'blackberri', 'messeng', 'phone', 'unlock', 'not', 'get', 'internet', 'servic', 'provid'], ['excelent'], ['comprado', 'dos', 'black', 'berri', 'es', 'una', 'oferta', 'engañosa', 'ya', 'que', 'en', 'las', 'oferta', 'dicen', 'que', 'son', 'aparato', 'nuevo', 'lo', 'son', 'asi', 'como', 'dicen', 'que', 'son', 'negro', 'los', 'envian', 'rosado', 'esto', 'es', 'una', 'burla', 'al', 'clientei', 'bought', 'two', 'black', 'berri', 'mislead', 'offer', 'rang', 'say', 'new', 'devic', 'not', 'well', 'say', 'black', 'pink', 'send', 'custom', 'joke'], ['fine'], ['got', 'phone', 'amazon', 'tri', 'tmobil', 'sim', 'radio', 'work', 'abl', 'connect', 'wifi', 'router', 'success', 'uma', 'unlicens', 'mobil', 'access', 'softwarei', 'miss', 'devic', 'bad', 'need', 'make', 'voic', 'call', 'internet', 'wifi', 'uma', 'idea', 'exist', 'instal', 'uma', 'softwar'], ['great', 'basic', 'phone', 'phone', 'give', 'hour', 'hour', 'batteri', 'life', 'great', 'text', 'call'], ['thank', 'product', 'fine', 'see', 'later'], ['got', 'phone', 'far', 'extrem', 'pleas', 'tutori', 'great', 'intro', 'phone', 'featur', 'trackpad', 'make', 'screen', 'easi', 'navig', 'also', 'made', 'call', 'call', 'qualiti', 'fair', 'good', 'friend', 'call', 'gotten', 'new', 'phone', 'not', 'sure', 'slight', 'echo', 'end', 'got', 'use', 'keyboard', 'fair', 'quick', 'sent', 'text', 'although', 'key', 'may', 'smaller', 'model', 'still', 'abl', 'text', 'troubl', 'batteri', 'not', 'fulli', 'charg', 'charg', 'not', 'sure', 'batteri', 'life', 'see', 'long', 'take', 'go', 'full', 'phone', 'mani', 'great', 'featur', 'light', 'easi', 'use', 'even', 'someon', 'like', 'not', 'smart', 'phone'], ['nice', 'cost', 'effici', 'entri', 'level', 'blackberri', 'chose', 'differ', 'color', 'get', 'pretti', 'much', 'everyth', 'would', 'get', 'higher', 'end', 'model', 'except', 'gps', 'accessori', 'not', 'come', 'box'], ['sold', 'bad', 'cell'], ['lo', 'compr', 'muy', 'bueno', 'gracia', 'buy', 'good', 'thank'], ['llego', 'tard', 'el', 'celular', 'pero', 'ademá', 'de', 'eso', 'el', 'cargador', 'era', 'para', 'ese', 'modelo', 'de', 'teléfono', 'ni', 'el', 'cabl', 'usb'], ['not', 'live', 'without', 'classic', 'fit', 'hand', 'enough', 'room', 'data'], ['good', 'recommend', 'product', 'product', 'seller'], ['excel', 'product', 'recommend'], ['satisfi', 'product', 'good', 'phone', 'everyth', 'arriv', 'perfect', 'condit', 'ius', 'phone', 'everyth', 'work', 'fine'], ['ok', 'bought', 'phone', 'sent', 'venezuela', 'big', 'new', 'couldnot', 'activ', 'cuz', 'stolen', 'serial', 'number', 'phone', 'block', 'internationali', 'unfortun', 'phone', 'compani', 'could', 'not', 'activ', 'lost', 'money', 'pleas', 'not', 'buy', 'phone', 'user'], ['truli', 'unlock', 'phone', 'charg', 'readi', 'go', 'iphon', 'would', 'like', 'introduc', 'blackberri', 'user', 'interfac', 'phone'], ['el', 'equipo', 'llego', 'en', 'buen', 'estado', 'pero', 'el', 'mismo', 'día', 'que', 'lo', 'comencé', 'usar', 'se', 'apago', 'así', 'mismo', 'suced', 'cada', 'vez', 'que', 'se', 'recalienta', 'es', 'un', 'martirio', 'porqu', 'todo', 'los', 'dia', 'se', 'apaga', 'quisiera', 'devolverlo', 'pero', 'lamentablement', 'tien', 'garantía', 'estoy', 'en', 'venezuela', 'que', 'decepcion'], ['good', 'product', 'high', 'recommend', 'not', 'problem', 'work', 'correct', 'great', 'qualiti', 'thank'], ['ok'], ['peopl', 'realli', 'like', 'i', 'not', 'fan', 'blackberri', 'phone', 'especi', 'button', 'feel', 'cheap', 'phone', 'hour', 'least', 'two', 'day', 'carrier', 'tri', 'figur', 'get', 'thing', 'work', 'final', 'gave', 'away', 'two', 'week'], ['excelent', 'equipo', 'lo', 'recomiendo', 'quien', 'desean', 'tener', 'un', 'buen', 'equipo', 'por', 'mucho', 'tiempo', 'es', 'lo', 'mejor', 'que', 'bb', 'ha', 'tirado', 'al', 'mercado'], ['came', 'unlock', 'brand', 'new', 'even', 'though', 'advertis', 'good', 'condit', 'simpl', 'cellphon', 'without', 'much', 'bell', 'whistl'], ['excelent', 'producto'], ['not', 'set', 'email', 'blackberri', 'tigerdirect', 'not', 'find', 'order', 'number', 'inform'], ['happi', 'phone', 'need', 'complet', 'q', 'would', 'flash', 'second', 'purchas', 'phone', 'latter', 'buy', 'phone', 'came', 'memori', 'purchas', 'sent', 'instead', 'first', 'purchas', 'sent', 'anoth', 'store', 'brought', 'memori'], ['love', 'new', 'cell', 'phone', 'came', 'perfect', 'though', 'middl', 'key', 'not', 'work', 'well', 'beggin', 'hour', 'aprox', 'work', 'perfect', 'fine', 'like', 'magic', 'someth', 'mayb', 'went', 'crazi', 'bit', 'love', 'think', 'gir', 'cellphon', 'hahaha', 'kid', 'huge', 'chang', 'old', 'cell', 'blackberri', 'absolut', 'recommend'], ['buy', 'cell', 'phone', 'big', 'mistak', 'useless', 'phone', 'arriv', 'trackpad', 'broken', 'chang', 'trackpad', 'still', 'not', 'work', 'proper', 'not', 'buy', 'phone'], ['good', 'product', 'good', 'shape', 'function', 'nowaday', 'use', 'venezuela', 'without', 'problem', 'gift', 'cousin'], ['ok'], ['mess', 'new', 'blackberri', 'refus', 'pay', 'full', 'price', 'get', 'anoth', 'daughter', 'insist', 'replac', 'sinc', 'love', 'blackberri', 'phone', 'phone', 'work', 'great', 'thing', 'not', 'figur', 'get', 'wifi', 'boost', 'signal', 'insid', 'home'], ['i', 'quit', 'disappoint', 'say', 'order', 'new', 'phone', 'look', 'like', 'refurbish', 'phone', 'batteri', 'cover', 'look', 'like', 'not', 'phone', 'see', 'part', 'side', 'phone', 'done', 'get', 'away', 'use', 'pearl', 'load', 'see', 'blackberri', 'one', 'see', 'kind', 'mtn', 'not', 'sure', 'anyon', 'problem', 'pre', 'load', 'theme', 'not', 'like', 'know', 'bb', 'phone', 'next', 'time', 'pass', 'screen', 'feel', 'edg', 'plus', 'screen', 'didnot', 'come', 'plastic', 'cover', 'like', 'know', 'new', 'phone', 'come', 'problem', 'not', 'phone', 'not', 'read', 'memori', 'card', 'sometim', 'ago', 'check', 'insid', 'realli', 'look', 'use', 'pin', 'insid', 'back', 'phone', 'not', 'correspond', 'phone', 'actual', 'use', 'look', 'like', 'wast', 'money', 'vex'], ['bb', 'excel', 'like', 'soo', 'much', 'good', 'track', 'everyth', 'good'], ['excel'], ['good', 'phone', 'lock', 'tmobil', 'network', 'coupl', 'problem', 'servic', 'not', 'greatest'], ['well', 'not', 'shut', 'act', 'dead', 'day', 'would', 'diffrent', 'would', 'not', 'care', 'not', 'phone', 'walk', 'away', 'min', 'came', 'back', 'dead', 'buy', 'someth', 'els', 'spend', 'money', 'i', 'return'], ['friend', 'love', 'littl', 'defect', 'good', 'thing', 'knew', 'fix', 'phone', 'problem', 'solv'], ['got', 'phone', 'arriv', 'well', 'packag', 'new', 'phone', 'well', 'seal', 'tag', 'along', 'latest', 'softwar', 'instal', 'recommend', 'buy', 'product', 'good', 'thank'], ['arriv', 'perfect', 'condit', 'brand', 'new', 'use', 'att', 'account', 'busi', 'app', 'problem', 'would', 'recommend', 'get', 'compat', 'mobil', 'carrier'], ['el', 'equipo', 'vien', 'en', 'una', 'excelent', 'presentaciòn', 'incluy', 'todo', 'los', 'accesorio', 'hasta', 'un', 'encuentro', 'en', 'colombia', 'el', 'telefono', 'aceptò', 'las', 'tarjeta', 'de', 'los', 'operador', 'entrega', 'se', 'dio', 'en', 'meno', 'tiempo', 'de', 'lo', 'esperado', 'recomendado'], ['est', 'celular', 'lo', 'compr', 'mediant', 'un', 'amigo', 'le', 'llego', 'la', 'direccion', 'de', 'el', 'el', 'trajo', 'ecuador', 'todo', 'estaba', 'perfecto', 'el', 'telefono', 'nuevo', 'todo', 'empacado', 'inclus', 'vino', 'una', 'tarjeta', 'de', 'memoria', 'de', 'dentro', 'del', 'telefono', 'lo', 'unico', 'que', 'est', 'celular', 'era', 'fabricado', 'en', 'un', 'pai', 'europeo', 'venia', 'con', 'el', 'programa', 'en', 'españold', 'pero', 'hubo', 'problema', 'ya', 'que', 'mediant', 'las', 'aplicacion', 'pude', 'instalarl', 'el', 'idioma', 'españold', 'por', 'cierto', 'le', 'probe', 'chip', 'de', 'las', 'dos', 'operadoradora', 'mas', 'conocida', 'del', 'pai', 'claro', 'movistar', 'en', 'las', 'dos', 'funciono', 'excelent', 'sin', 'necesidad', 'de', 'hacerl', 'algo', 'al', 'telefono', 'hasta', 'ahora', 'ha', 'dado', 'problema', 'todo', 'esta', 'bien', 'lorecomiendo', 'mucho', 'por', 'cierto', 'yo', 'lo', 'compr', 'directo', 'amazon'], ['great', 'deal', 'phone', 'arriv', 'good', 'condit', 'new', 'work', 'got', 'accessori', 'seal', 'lot', 'ernesto'], ['perfect', 'phone', 'good', 'product', 'sinc', 'littl', 'year', 'still', 'work', 'perfect', 'compat', 'phone', 'compani', 'venezuela'], ['ok'], ['excelent'], ['los', 'telefono', 'se', 'compraron', 'hace', 'un', 'año', 'realment', 'son', 'de', 'muy', 'buena', 'calidad', 'tuve', 'ningun', 'problema', 'al', 'desbloquearlo', 'colocarl', 'la', 'linea', 'de', 'preferencia', 'usada', 'aca', 'en', 'venezuela'], ['not', 'realli', 'happen', 'product', 'never', 'lleguo', 'purchas', 'truli', 'lost', 'money', 'packag', 'not', 'reach', 'unfortun'], ['must', 'say', 'custom', 'servic', 'good', 'everyth', 'possibl', 'resolv', 'problem', 'result', 'recommend', 'everyon', 'shop', 'wireovia'], ['el', 'vendedor', 'es', 'muy', 'atento', 'respons', 'el', 'equipo', 'llego', 'en', 'buena', 'condicion', 'tal', 'cual', 'como', 'estaba', 'en', 'la', 'publicación', 'lo', 'recomiendo'], ['wors', 'phone', 'ever', 'buy', 'lifetim', 'think', 'compani', 'big', 'rip', 'poor', 'peopl', 'sell', 'someth', 'big', 'farc'], ['nice', 'fast'], ['excelent'], ['instruct', 'manual', 'cd', 'come', 'phone', 'complet', 'spanish', 'howev', 'turn', 'phone', 'english', 'send', 'phone', 'back', 'not', 'speak', 'read', 'spanish'], ['purchas', 'two', 'blackberri', 'curv', 'juli', 'year', 'receiv', 'phone', 'howev', 'one', 'defect', 'not', 'abl', 'use', 'one', 'fact', 'not', 'abl', 'use', 'phone', 'not', 'even', 'disappoint', 'money', 'seem', 'wast', 'rip', 'buy', 'phone', 'suppos', 'new', 'not', 'even', 'get', 'day', 'servic', 'potenti', 'buyer', 'warn'], ['la', 'caja', 'el', 'producto', 'vino', 'en', 'buen', 'estado', 'le', 'coloqu', 'su', 'tarjeta', 'sim', 'la', 'reconocio', 'sin', 'problema', 'hasta', 'ahora', 'todo', 'va', 'perfecto', 'el', 'producto', 'es', 'totalment', 'nuevo'], ['order', 'amazon', 'last', 'month', 'phone', 'work', 'week', 'optic', 'stop', 'work', 'sudden', 'one', 'day', 'phone', 'becam', 'complet', 'useless', 'serious', 'doubt', 'build', 'qualiti', 'phone', 'amazon', 'custom', 'servic', 'great', 'though', 'promis', 'full', 'refund', 'sent', 'phone'], ['blackberri', 'versatil', 'easi', 'use', 'power', 'bought', 'year', 'old', 'daughter', 'happi', 'famili', 'member', 'blackberri', 'fan', 'one', 'thing', 'love', 'blackberri', 'messeng', 'allow', 'us', 'communic', 'easili', 'addit', 'cost'], ['peopl', 'realli', 'like', 'i', 'not', 'fan', 'blackberri', 'phone', 'especi', 'button', 'feel', 'cheap', 'phone', 'hour', 'least', 'two', 'day', 'carrier', 'tri', 'figur', 'get', 'thing', 'work', 'final', 'gave', 'away', 'two', 'week'], ['telefono', 'llego', 'en', 'buena', 'condicion', 'tal', 'cual', 'como', 'se', 'supon', 'vendría', 'recomiendo', 'ampliament', 'al', 'vendedor', 'por', 'ser', 'una', 'persona', 'muy', 'seria', 'cumplida'], ['receiv', 'time', 'excel', 'condit', 'test', 'sim', 'card', 'oper', 'vzla', 'movistar', 'movilnet', 'digitel', 'work', 'well', 'not', 'languag', 'spanish', 'preload', 'easi', 'solv', 'instal', 'use', 'bb', 'desktop', 'manageri', 'recommend', 'product', 'seller'], ['excelent', 'producto', 'tien', 'todo', 'lo', 'que', 'necesita', 'es', 'muy', 'completo', 'solo', 'falta', 'el', 'flash', 'en', 'su', 'camara', 'pero', 'todo', 'lo', 'dema', 'excelent', 'desd', 'venezuela', 'saludo'], ['r', 'look', 'brand', 'new', 'not', 'go', 'order', 'receiv', 'time', 'not', 'brand', 'new', 'refurb', 'seller', 'not', 'mention', 'whether', 'brand', 'new', 'refurb', 'tat', 'not', 'fair', 'star', 'product', 'seller', 'say', 'buyer', 'bewar'], ['excelent'], ['got', 'sever', 'day', 'ago', 'open', 'parcel', 'sad', 'found', 'total', 'differ', 'thought', 'headphon', 'instruct', 'mismatch', 'mac', 'print', 'actual', 'one', 'machin', 'one', 'big', 'movistar', 'logo', 'bottom', 'panel', 'realli', 'disppoint', 'guess', 'obvious', 'not', 'one', 'websit', 'yeah', 'unlock', 'make', 'call', 'sim', 'card', 'compani', 'annoy', 'logo', 'panel', 'welcom', 'pictur', 'movistar', 'machin', 'start'], ['cheaper', 'javelin', 'camera', 'not', 'great', 'replac', 'trackbal', 'mousepad', 'terrif', 'idea', 'peopl', 'blackberri', 'i', 'stick', 'cell', 'phone', 'last', 'two', 'bb', 'replac', 'trackbal', 'least', 'time'], ['work', 'das', 'gothru', 'work'], ['excel'], ['hi', 'problem', 'mi', 'blackberri', 'send', 'packag', 'not', 'come', 'box', 'usb', 'cabl', 'headphon', 'pleas', 'send'], ['phone', 'littl', 'overpr', 'product', 'last', 'long', 'time', 'give', 'four', 'star'], ['got', 'phone', 'amazon', 'tri', 'tmobil', 'sim', 'radio', 'work', 'abl', 'connect', 'wifi', 'router', 'success', 'uma', 'unlicens', 'mobil', 'access', 'softwarei', 'miss', 'devic', 'bad', 'need', 'make', 'voic', 'call', 'internet', 'wifi', 'uma', 'idea', 'exist', 'instal', 'uma', 'softwar'], ['pleas', 'bit', 'darker', 'pictur', 'love', 'total', 'unlock', 'i', 'also', 'happi', 'includ', 'free', 'case'], ['resulto', 'ser', 'un', 'buen', 'telefono', 'pesar', 'de', 'todo', 'siento', 'satisfecha', 'por', 'el', 'dinero', 'invertido', 'pueden', 'comprar', 'pero', 'esperen', 'algo', 'como', 'de', 'agencia', 'pero', 'obtendrán', 'un', 'buen', 'telefono'], ['bad', 'product'], ['exelent'], ['good', 'recommend', 'product', 'product', 'seller'], ['compr', 'directament', 'amazon', 'como', 'siempr', 'qued', 'satisfecha', 'con', 'la', 'compra', 'el', 'producto', 'vino', 'nuevo', 'de', 'paquet', 'con', 'todo', 'los', 'accesorio', 'original', 'la', 'caja', 'sellada', 'en', 'fin', 'recomiendo', 'comprar', 'directament', 'amazon', 'son', 'respons', 'con', 'su', 'clientela'], ['excel'], ['estoy', 'muy', 'contenta', 'con', 'mi', 'compra', 'el', 'tiempo', 'de', 'entrega', 'dentro', 'de', 'lo', 'esperado', 'el', 'funciona', 'muy', 'bien', 'por', 'lo', 'que', 'lo', 'recomiendo'], ['dissapoint', 'phone', 'refus', 'work', 'decemb', 'wish', 'could', 'get', 'never', 'buy', 'anyth', 'electron', 'live', 'trinidad', 'west', 'indi'], ['el', 'equipo', 'funciona', 'muy', 'bien', 'contien', 'todo', 'los', 'accesorio', 'que', 'el', 'vendedor', 'especifica', 'lo', 'único', 'que', 'en', 'el', 'menú', 'de', 'idioma', 'pose', 'el', 'españold', 'recomendando', 'excelent', 'compra'], ['bought', 'friend', 'charg', 'place', 'sim', 'came', 'leather', 'pouch', 'hold', 'phone', 'waist'], ['bought', 'phone', 'two', 'week', 'ago', 'everyth', 'work', 'fine', 'except', 'call', 'not', 'listen', 'person', 'unless', 'choos', 'speakerphon', 'function', 'i', 'realli', 'disappoint', 'think', 'i', 'wast', 'money', 'sinc', 'live', 'argentina', 'not', 'tech', 'support', 'blackberri'], ['good', 'product', 'featur', 'applic', 'work', 'compact', 'easi', 'use'], ['one', 'best', 'item', 'ever', 'bought', 'amazon', 'got', 'saw', 'receiv', 'item', 'time', 'nice'], ['fine'], ['bought', 'gift', 'embarrass', 'phone', 'batteri', 'life', 'gosh', 'disappoint', 'complet', 'drain'], ['nice'], ['bought', 'black', 'berri', 'receiv', 'one', 'broken', 'sinc', 'warranti', 'intern', 'version', 'expens', 'black', 'berri', 'ever', 'known', 'one', 'respons'], ['excelent', 'telefono', 'muy', 'contento', 'con', 'la', 'compra', 'de', 'est', 'gran', 'telefono', 'curv', 'parec', 'que', 'es', 'super', 'rapido', 'se', 'guinda', 'la', 'navegacion', 'por', 'internet', 'super', 'rapida', 'tien', 'mucha', 'funcion', 'que', 'permiten', 'que', 'el', 'telefono', 'sea', 'una', 'maravilla', 'manipularlo', 'el', 'manejo', 'es', 'un', 'placer', 'ligera', 'todo', 'acces', 'con', 'una', 'sola', 'mano', 'tien', 'la', 'bola', 'de', 'cristal', 'es', 'más', 'rápido', 'preciso', 'que', 'la', 'tradicion', 'bola', 'le', 'doy', 'un'], ['excelent'], ['telefono', 'usado', 'llegó', 'sin', 'los', 'tornillo', 'trasero', 'en', 'dia', 'de', 'uso', 'el', 'pin', 'de', 'carga', 'pantalla', 'dañadosus', 'phone', 'screw', 'came', 'back', 'pin', 'charg', 'display', 'damag'], ['bad', 'defect', 'cel', 'less', 'three', 'month', 'screen', 'whole', 'sistem', 'damag', 'repair'], ['thank'], ['sorri', 'sent', 'invoic', 'product', 'urgent', 'need', 'send', 'invoic', 'address', 'return', 'product', 'happi', 'day'], ['phone', 'arriv', 'perfect', 'condit', 'brand', 'new', 'add', 'chip', 'start', 'work', 'correct', 'high', 'recommend', 'buy', 'seal', 'box', 'charger', 'softwar', 'headphon', 'instruct'], ['nice', 'blacberri', 'nice', 'cheap', 'blackberri', 'use', 'hard', 'work', 'condit', 'year', 'durabl', 'nice', 'function', 'work', 'intern'], ['good', 'phone', 'recent', 'use', 'yet', 'recomend', 'world', 'requir', 'smart', 'phone', 'work'], ['order', 'phone', 'novemb', 'think', 'got', 'nov', 'seen', 'ok', 'dec', 'think', 'phone', 'start', 'mess', 'tri', 'contact', 'seller', 'could', 'not', 'get', 'answer', 'still', 'not', 'get', 'repli', 'said', 'i', 'stuck', 'phone', 'work', 'like', 'want', 'nobodi', 'hear', 'thing', 'say', 'buy', 'one', 'think', 'come', 'better', 'go', 'store', 'buy', 'one'], ['ha', 'parecido', 'un', 'muy', 'buen', 'producto', 'de', 'hecho', 'yo', 'soy', 'comprador', 'de', 'celular', 'el', 'que', 'compro', 'se', 'lo', 'recomiendo', 'para', 'todo', 'aquel', 'que', 'and', 'en', 'busca', 'de', 'un', 'javelin', 'hasta', 'ahora', 'tenido', 'ningún', 'problema', 'ni', 'del', 'sistema', 'ni', 'las', 'part', 'operativa', 'como', 'mucha', 'persona', 'que', 'dicen', 'que', 'lo', 'javelin', 'salen', 'malo', 'por', 'esa', 'part', 'hasta', 'ahora', 'como', 'dije', 'tenido', 'ningún', 'problema', 'espero', 'le', 'sirva', 'de', 'ayuda', 'recomendación', 'para', 'aquel', 'que', 'opt', 'por', 'por', 'comprar', 'en', 'esta', 'tienda'], ['cheapli', 'built', 'ball', 'alreadi', 'give', 'problem', 'case', 'come', 'phone', 'super', 'tight', 'not', 'pleas', 'phone', 'qualiti'], ['excelent', 'producto'], ['cancel', 'busi', 'buy', 'wrong', 'cellphon', 'everyth', 'clean', 'give', 'money', 'quick', 'recommend', 'buy', 'peopl', 'realli', 'secur', 'amaz', 'deal'], ['broke', 'within', 'year', 'not', 'realli', 'unlcok'], ['ok'], ['good'], ['producto', 'exacto', 'todo', 'bien', 'gracia', 'excelent', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e'], ['excel'], ['perfecto'], ['good', 'congratul'], ['est', 'celular', 'es', 'repotenciado', 'solo', 'duro', 'un', 'mes', 'enseguida', 'se', 'dañolo', 'lleve', 'un', 'tecnico', 'enter', 'que', 'era', 'repotenciado', 'tien', 'reparacion', 'fue', 'una', 'estafa', 'porquem', 'lo', 'vendieron', 'como', 'nuevo'], ['price', 'well', 'work', 'need', 'complaint'], ['phone', 'given', 'staff', 'member', 'complain', 'not', 'work', 'well', 'tri', 'repair', 'avail', 'take', 'hour', 'charg', 'not', 'stay', 'charg', 'hour'], ['excel', 'product', 'arriv', 'good', 'condit', 'meet', 'requir', 'wide', 'recommend', 'thank', 'everyth'], ['insert', 'movilnet', 'sim', 'card', 'old', 'bb', 'gsm', 'readi', 'came', 'box', 'everyth', 'brand', 'new', 'ac', 'convert', 'usb', 'cabl', 'headphon', 'would', 'recomend', 'phone', 'price', 'work', 'band', 'not', 'work', 'band', 'digitelfunciona', 'bien', 'en', 'movilnet', 'venezuela', 'vien', 'completo', 'con', 'sus', 'accesorio', 'en', 'su', 'caja', 'origin', 'si', 'usan', 'una', 'empresa', 'seria', 'para', 'traerlo', 'venezuela', 'recomiendo', 'actualizar', 'el', 'os', 'la', 'ultima', 'version', 'usando', 'desktop', 'manag', 'funciona', 'en', 'la', 'banda', 'de', 'digitel', 'el', 'pedido', 'lo', 'hice', 'por', 'amazon', 'pero', 'el', 'producto', 'lo', 'suministró', 'zena', 'mobil'], ['perfecto'], ['good'], ['nice', 'work', 'fine'], ['easi', 'use', 'unlock', 'want'], ['last', 'month', 'bought', 'blackberri', 'curv', 'unlock', 'gsm', 'smartphon', 'mp', 'camera', 'gps', 'bluetooth', 'unlock', 'phone', 'intern', 'version', 'graphit', 'greysold', 'jiam', 'panthi', 'blackberri', 'problem', 'write', 'messag', 'everi', 'letter', 'push', 'cell', 'phone', 'write', 'time', 'fix', 'put', 'keyboard', 'slow', 'blackberri', 'not', 'improv', 'bad'], ['producto', 'de', 'excelent', 'calidad', 'muy', 'bueno', 'funciona', 'muy', 'bien', 'estoy', 'muy', 'contento', 'con', 'mi', 'equipo', 'párese', 'muy', 'bueno', 'el', 'blackberri', 'curv'], ['smartphon', 'new', 'think', 'pin', 'imei', 'devic', 'difer', 'one', 'box'], ['excel'], ['bien'], ['exelent'], ['excel'], ['problem', 'kind', 'good', 'product', 'good', 'price', 'deliveri', 'time', 'estim', 'good', 'condit', 'sometim', 'hard', 'write', 'review', 'goe', 'well'], ['blackberri', 'curv', 'black', 'keyboard', 'wifi', 'quadband', 'unlock', 'cell', 'phone', 'quadband', 'not', 'oper', 'phone', 'hurt', 'month', 'restart', 'time', 'bad'], ['excel', 'recommend'], ['phone', 'excel', 'use', 'unit', 'state', 'function', 'strong', 'phone', 'use', 'unit', 'state'], ['order'], ['fine'], ['phone', 'arriv', 'shape', 'understand', 'must', 'speak', 'blackberri', 'appreci', 'phone', 'durabl', 'newer', 'phone', 'made', 'today', 'batteri', 'life', 'much', 'better', 'touchscreen'], ['good'], ['phone', 'new', 'well', 'packag', 'work', 'fine', 'satisfi', 'purchas', 'regret'], ['problem', 'receiv', 'call', 'speak', 'listen', 'carri', 'repar', 'day', 'tri', 'problem', 'not', 'disappear'], ['purchas', 'gift', 'well', 'receiv', 'told', 'good', 'first', 'blackberri', 'phone'], ['poor', 'product', 'not', 'recommendedpoor', 'ppopoor', 'product', 'not', 'recommendedpoor', 'product', 'not', 'recommendedpoor', 'product', 'not', 'recommendedor', 'product', 'not', 'recommendedroduct', 'not', 'recommend'], ['es', 'bien'], ['ok'], ['al', 'parec', 'todo', 'iba', 'bien', 'en', 'cuanto', 'ala', 'compra', 'del', 'producto', 'pero', 'cuando', 'llego', 'el', 'equipo', 'telefono', 'blackberri', 'di', 'cuenta', 'que', 'tenia', 'un', 'gran', 'detall', 'el', 'cual', 'el', 'ofertado', 'decía', 'que', 'trabajaba', 'con', 'banda', 'q', 'es', 'la', 'plataforma', 'de', 'mi', 'paí', 'venezuela', 'motivo', 'por', 'el', 'cual', 'lo', 'compr', 'pero', 'era', 'así', 'est', 'teléfono', 'venia', 'para', 'trabajar', 'con', 'otra', 'banda', 'q', 'es', 'la', 'cual', 'sirv', 'para', 'tenerlo', 'por', 'lo', 'tanto', 'exhorto', 'al', 'vendedor', 'tener', 'mas', 'cuidado', 'en', 'cuanto', 'eso'], ['rate', 'phone', 'instead', 'case', 'first', 'review', 'rate', 'case', 'like', 'colour', 'cute', 'fit', 'perect', 'wish', 'gotten', 'hard', 'case', 'though', 'go', 'get', 'one', 'later'], ['excelent'], ['get', 'faulti', 'tefeno', 'entratar', 'problem', 'applic', 'also', 'came', 'without', 'headset', 'suppos', 'i', 'buy', 'new', 'comput'], ['die', 'month', 'use', 'led', 'not', 'abl', 'reset', 'nuthin', 'buck', 'window'], ['excelent'], ['estoy', 'contento', 'con', 'est', 'bb', 'parec', 'excelent', 'equipo', 'aquí', 'en', 'venezuela', 'levanta', 'sin', 'ningún', 'el', 'teléfono', 'el', 'vendedor'], ['good'], ['excelent'], ['bueno'], ['not', 'work', 'network', 'slow', 'not', 'buy', 'want', 'work', 'att', 'proper', 'sent', 'mine', 'back'], ['producto', 'impec', 'envio', 'rapido', 'recomendado', 'gent', 'seria', 'lo', 'recomiendo', 'ampliament', 'para', 'hacer', 'negocio', 'son', 'una', 'maravilla', 'de', 'vendedor', 'producto', 'sellado'], ['cumpl', 'con', 'las', 'especificacion', 'asi', 'debe', 'ser', 'muy', 'muy', 'muy', 'bueno', 'muy', 'muy', 'muy', 'bueno', 'muy', 'muy', 'muy', 'bueno', 'muy', 'muy', 'muy', 'bueno'], ['great', 'purchas', 'good', 'price', 'good', 'devic', 'good', 'servic', 'strong', 'recommend', 'product', 'friend'], ['neat', 'phone', 'like', 'much', 'would', 'given', 'star', 'review', 'camera', 'not', 'best', 'ok', 'qualiti', 'could', 'better'], ['excelent', 'la', 'compra', 'de', 'est', 'equipo', 'muy', 'bueno', 'lo', 'recomiendo', 'para', 'futura', 'compra', 'lego', 'tal', 'cual', 'como', 'se', 'esperaba'], ['excel'], ['good'], ['excel'], ['excelent'], ['great', 'product', 'ship', 'per'], ['perfect'], ['excellent', 'producto', 'lo', 'recomiendo', 'ampliament', 'es', 'inteligent', 'versatil', 'ligero', 'practico', 'comodo', 'de', 'usar', 'el', 'sistema', 'operativo', 'es', 'de', 'ultima', 'generacion', 'amig'], ['comgratul', 'yes', 'smalpon', 'amazon', 'adrian', 'jose', 'yancel', 'ruiz'], ['excelent'], ['bueno'], ['good', 'deliveri', 'use', 'barcelona', 'color', 'weird', 'bought', 'reason', 'work', 'fine', 'blackberri'], ['realli', 'good', 'excel', 'servic'], ['excelent', 'telefono', 'muy', 'contento', 'con', 'la', 'compra', 'de', 'est', 'gran', 'telefono', 'curv', 'parec', 'que', 'es', 'super', 'rapido', 'se', 'guinda', 'la', 'navegacion', 'por', 'internet', 'super', 'rapida', 'tien', 'mucha', 'funcion', 'que', 'permiten', 'que', 'el', 'telefono', 'sea', 'una', 'maravilla', 'manipularlo', 'el', 'manejo', 'es', 'un', 'placer', 'ligera', 'todo', 'acces', 'con', 'una', 'sola', 'mano', 'tien', 'la', 'bola', 'de', 'cristal', 'es', 'más', 'rápido', 'preciso', 'que', 'la', 'tradicion', 'bola', 'le', 'doy', 'un'], ['work', 'almost', 'sim', 'card', 'allow', 'phone', 'contact', 'inform', 'countri', 'visit'], ['phone', 'littl', 'overpr', 'product', 'last', 'long', 'time', 'give', 'four', 'star'], ['excel', 'product', 'not', 'desbloquedo', 'funciana', 'venezuela', 'said', 'buy', 'unlock'], ['ok'], ['box', 'not', 'seal', 'cableleath', 'caseheadsetphoneand', 'batteryphon', 'perfect', 'condit'], ['good', 'part', 'unlock', 'easi', 'use', 'sim', 'card', 'k', 'key', 'not', 'work'], ['devic', 'arriv', 'perfect', 'condit', 'total', 'new', 'work', 'perfect', 'venezuelan', 'sim', 'card', 'phone', 'fast', 'light', 'verey', 'good', 'resolucion', 'without', 'hate', 'littl', 'ball', 'bought', 'devic', 'alreadi', 'tri', 'work', 'great', 'first', 'one'], ['buen', 'equipo', 'fácil', 'de', 'instalar', 'linea', 'telefónica', 'movilnet', 'venezuela', 'probé', 'el', 'celular', 'por', 'un', 'mes', 'quedado', 'satisfecho', 'toda', 'las', 'funcion', 'trabajan', 'bien', 'pin', 'blakcberri', 'messeng', 'lo', 'recomiendo', 'le', 'dare', 'estrella', 'por', 'las', 'cualidad', 'del', 'equipo', 'sino', 'por', 'ser', 'exactament', 'lo', 'que', 'oferto', 'amazon'], ['exelent'], ['perfect', 'phone', 'good', 'product', 'sinc', 'littl', 'year', 'still', 'work', 'perfect', 'compat', 'phone', 'compani', 'venezuela'], ['excelent', 'producto', 'era', 'lo', 'que', 'en', 'realidad', 'estaba', 'esperando', 'llego', 'tiempo', 'excelent', 'compra'], ['todo', 'llegu', 'en', 'perfecta', 'condicion', 'lo', 'que', 'pedi', 'producto', 'de', 'excelent', 'calidad', 'sin', 'nada', 'mas', 'que', 'decirgracia', 'se', 'de', 'venezuela'], ['third', 'blackberri', 'bought', 'product', 'perfect', 'price', 'good', 'phone'], ['compr', 'est', 'producto', 'porqu', 'ya', 'estaba', 'recomendado', 'por', 'otro', 'adema', 'funcionaria', 'ien', 'en', 'mi', 'pai', 'que', 'es', 'venezuela', 'estoy', 'aprendiendo', 'utilizarlo', 'pero', 'llego', 'en', 'perfecto', 'estado', 'le', 'falto', 'nada', 'con', 'su', 'caja', 'el', 'mano', 'libr', 'cd', 'un', 'manual', 'de', 'bolsillo', 'su', 'cabl', 'de', 'conexion', 'mucha', 'gracia', 'estoy', 'complacidad', 'haber', 'comprado', 'est', 'producto'], ['good'], ['purchas', 'phone', 'request', 'deliv', 'friend', 'address', 'florida', 'would', 'visit', 'would', 'travel', 'back', 'jamaica', 'remov', 'packag', 'materi', 'arriv', 'jamaica', 'two', 'day', 'later', 'attempt', 'charg', 'phone', 'charg', 'six', 'hour', 'would', 'not', 'take', 'charg', 'one', 'bar', 'entir', 'night', 'remov', 'batteri', 'tri', 'follow', 'morn', 'avail', 'thought', 'batteri', 'defect', 'bought', 'new', 'batteri', 'jamaica', 'result', 'dispos', 'packag', 'florida', 'not', 'return', 'phone', 'feel', 'cheat'], ['buen', 'equipo', 'excelent', 'funcionamiento', 'era', 'lo', 'que', 'esperaba', 'lo', 'recomiendo', 'es', 'de', 'buena', 'calidad', 'muy', 'buen', 'acabado'], ['not', 'receiv', 'ítem', 'yet', 'i', 'angri', 'need', 'blackberri', 'paid', 'happen'], ['bought', 'gift', 'embarrass', 'phone', 'batteri', 'life', 'gosh', 'disappoint', 'complet', 'drain'], ['excelent', 'vendedor', 'atento', 'comunicativo', 'al', 'momento', 'de', 'las', 'pregunta', 'el', 'equipo', 'gemini', 'completo', 'con', 'todo', 'sus', 'accesorio', 'funciona', 'muy', 'bien', 'aqui', 'en', 'venezuela', 'totalment', 'nuevo', 'lo', 'recomiendo'], ['el', 'celular', 'se', 'adapto', 'perfectament', 'la', 'red', 'de', 'mi', 'pai', 'tenido', 'ningún', 'inconvenient', 'con', 'el', 'hasta', 'ahora'], ['sorri', 'sent', 'invoic', 'product', 'urgent', 'need', 'send', 'invoic', 'address', 'return', 'product', 'happi', 'day'], ['blackberri', 'unlock', 'phone', 'mp', 'camera', 'bluetooth', 'intern', 'version', 'warranti', 'black', 'buena', 'tard', 'el', 'dia', 'de', 'mayo', 'de', 'realic', 'una', 'compra', 'de', 'un', 'blackberri', 'unlock', 'phone', 'mp', 'camera', 'bluetooth', 'intern', 'version', 'warranti', 'black', 'el', 'cual', 'fue', 'prosesado', 'como', 'entregado', 'por', 'la', 'compañia', 'liberti', 'express', 'en', 'miami', 'debido', 'la', 'falta', 'de', 'dato', 'en', 'el', 'paquet', 'su', 'factura', 'correspondient', 'por', 'favor', 'le', 'agradezco', 'su', 'pronta', 'respuesta', 'para', 'que', 'dicha', 'compañia', 'pueda', 'prosesar', 'enviar', 'el', 'paquet', 'su', 'destino', 'ya', 'que', 'ha', 'sido', 'entregado', 'atentament', 'jenni', 'hernandez', 'nw', 'st', 'liberti', 'express', 'miami', 'florida', 'unit', 'state'], ['product', 'came', 'like', 'descript', 'said', 'problem', 'could', 'not', 'get', 'fast', 'enough', 'problem', 'track', 'packag', 'defin', 'order', 'oem', 'shop', 'futur'], ['well', 'say', 'tittl', 'review', 'good', 'product', 'work', 'excel', 'condit', 'moment', 'not', 'present', 'problem', 'hope', 'guy', 'continuo', 'selli', 'caind', 'product', 'greet', 'venezuela'], ['el', 'telefono', 'celular', 'vino', 'en', 'exelent', 'condicion', 'en', 'su', 'caja', 'origin', 'su', 'cargador', 'mano', 'libr', 'cabl', 'usb', 'sus', 'distinto', 'manual', 'de', 'usuario', 'adicion', 'tambien', 'trajo', 'una', 'sd', 'de', 'gb', 'exelent', 'vendedor'], ['nice', 'basic', 'not', 'cheap', 'resist', 'daili', 'accid', 'rain', 'food', 'etc'], ['recomendado', 'para', 'todo', 'los', 'usuario', 'de', 'venezuela', 'se', 'coloco', 'chip', 'de', 'digitel', 'movistar', 'funcionaron', 'perfecto', 'sin', 'problema', 'hasta', 'ahora', 'ya', 'tenemo', 'mes', 'con', 'los', 'equipo', 'recuerden', 'comprar', 'directament', 'amazon', 'ya', 'que', 'hay', 'meno', 'probabilidad', 'de', 'ser', 'engañado', 'estafado'], ['phone', 'seem', 'not', 'origin', 'central', 'button', 'never', 'fit', 'correct', 'case', 'sever', 'issu', 'person', 'use', 'get', 'phone', 'last', 'least', 'year', 'phone', 'omg', 'headach', 'chang', 'month', 'bought', 'way', 'headphon', 'phone', 'came', 'total', 'fake', 'horribl', 'qualiti', 'suspect', 'seller', 'not', 'sell', 'origin', 'item', 'would', 'not', 'recommend'], ['order', 'blackberri', 'mom', 'uncl', 'sinc', 'not', 'want', 'use', 'touch', 'screen', 'return', 'phone', 'keyboard', 'small', 'print', 'button', 'also', 'tini', 'therefor', 'hard', 'text', 'even', 'dial', 'phone', 'number', 'especi', 'finger', 'big', 'screen', 'small', 'hard', 'surf', 'read', 'internet', 'easili', 'set', 'complic', 'function', 'not', 'fyi', 'mom', 'uncl', 'use', 'phone', 'use', 'love', 'one', 'main', 'reason', 'keyboard', 'appear', 'big', 'screen', 'big', 'hope', 'inform', 'help'], ['el', 'celular', 'llego', 'en', 'buen', 'estado', 'sin', 'problema', 'auqu', 'tengo', 'una', 'acotacion', 'enviaron', 'las', 'factura', 'del', 'equipo', 'gracia'], ['well', 'whole', 'blackberri', 'arriv', 'good', 'condit', 'sent', 'good', 'packag', 'accessoriesth', 'thing', 'not', 'bring', 'memori', 'batteri', 'vehicleotherwis', 'good'], ['realli', 'want', 'love', 'phone', 'final', 'decid', 'tri', 'blackberri', 'mani', 'year', 'use', 'phone', 'not', 'want', 'pay', 'much', 'one', 'not', 'want', 'physic', 'keyboard', 'want', 'get', 'not', 'lte', 'band', 'opt', 'one', 'receiv', 'phone', 'initi', 'impress', 'look', 'cheap', 'heavi', 'start', 'thing', 'set', 'fine', 'start', 'use', 'phone', 'becam', 'frustrat', 'everyth', 'kept', 'freez', 'signific', 'lag', 'reboot', 'phone', 'hope', 'would', 'help', 'not', 'restor', 'phone', 'start', 'result', 'not', 'rememb', 'high', 'bb', 'standard', 'posit', 'side', 'love', 'os', 'therefor', 'return', 'get', 'passport', 'hear', 'one', 'ferrari', 'compar', 'ford', 'i', 'cross', 'finger', 'perform', 'expect', 'physic', 'keyboard', 'not', 'bother', 'much'], ['horribl'], ['good', 'mobil', 'price', 'awesom', 'button', 'increas', 'decreas', 'volum', 'shaki', 'cheap', 'hard', 'press', 'access', 'home', 'screen', 'not', 'easi', 'apart', 'phone', 'excel', 'app', 'like', 'vonag', 'not', 'avail'], ['far', 'best', 'devic'], ['replac', 'could', 'get', 'bigger', 'screen', 'leap', 'speed', 'wise', 'get', 'job', 'done', 'budget', 'recept', 'great', 'drop', 'call', 'due', 'phone', 'net', 'work', 'hand', 'i', 'c', 'w', 'barbado', 'leav', 'lot', 'desir', 'build', 'qualiti', 'solid', 'nice', 'weight', 'batteri', 'life', 'great', 'go', 'whole', 'day', 'email', 'account', 'black', 'stack', 'app', 'face', 'book', 'blackberri', 'messeng', 'crack', 'berri', 'etc', 'still', 'enough', 'power', 'left', 'need', 'charg'], ['bought', 'father', 'love', 'blackberri', 'ship', 'describ'], ['fast', 'reliabl', 'rug', 'instant', 'upgrad', 'swap', 'sim'], ['great', 'cell', 'work', 'well'], ['realli', 'want', 'love', 'phone', 'final', 'decid', 'tri', 'blackberri', 'mani', 'year', 'use', 'phone', 'not', 'want', 'pay', 'much', 'one', 'not', 'want', 'physic', 'keyboard', 'want', 'get', 'not', 'lte', 'band', 'opt', 'one', 'receiv', 'phone', 'initi', 'impress', 'look', 'cheap', 'heavi', 'start', 'thing', 'set', 'fine', 'start', 'use', 'phone', 'becam', 'frustrat', 'everyth', 'kept', 'freez', 'signific', 'lag', 'reboot', 'phone', 'hope', 'would', 'help', 'not', 'restor', 'phone', 'start', 'result', 'not', 'rememb', 'high', 'bb', 'standard', 'posit', 'side', 'love', 'os', 'therefor', 'return', 'get', 'passport', 'hear', 'one', 'ferrari', 'compar', 'ford', 'i', 'cross', 'finger', 'perform', 'expect', 'physic', 'keyboard', 'not', 'bother', 'much'], ['amaz', 'phone'], ['el', 'celuloar', 'q', 'pedi', 'es', 'un', 'productgo', 'liberado', 'como', 'lo', 'pedi', 'asi', 'q', 'mucha', 'gracia', 'mi', 'gent', 'estoy', 'muy', 'agradecido'], ['not', 'buy', 'user', 'brought', 'blackberri', 'pearl', 'unlock', 'phone', 'dealer', 'gift', 'parent', 'india', 'got', 'switch', 'start', 'full', 'batteri', 'show', 'sign', 'home', 'screen', 'sinc', 'not', 'non', 'sim', 'could', 'not', 'verifi', 'phone', 'parent', 'receiv', 'phone', 'india', 'found', 'phone', 'not', 'unlock', 'batteri', 'not', 'good', 'confirm', 'use', 'batteri', 'phone', 'dealer', 'not', 'bring', 'back', 'phone', 'refund', 'not', 'return', 'worth', 'ship', 'charg', 'time', 'softwar', 'flash', 'buy', 'anoth', 'batteri', 'cell', 'use', 'first', 'horribl', 'experi', 'amazon'], ['may', 'not', 'state', 'art', 'smartphon', 'person', 'want', 'function', 'reliabl', 'simpl', 'phone', 'phone', 'i', 'not', 'kind', 'person', 'like', 'touchscreen', 'phone', 'like', 'physic', 'keyboard', 'text', 'grant', 'take', 'time', 'get', 'use', 'pocket', 'size', 'phone', 'bring', 'anywher', 'perk', 'smartphon', 'yet', 'classic', 'phone', 'feel', 'nice', 'afford', 'phone', 'would', 'recommend', 'phone', 'anyon', 'want', 'simpl', 'yet', 'sleek', 'smartphon'], ['teléfono', 'de', 'buena', 'calidad', 'excelent', 'compra', 'muy', 'acertada', 'llego', 'venezuela', 'tiempo', 'sin', 'inconvenient', 'muy', 'bueno', 'mi', 'encanto', 'buen', 'materi'], ['buena', 'días', 'soy', 'de', 'venezuela', 'compr', 'teléfono', 'son', 'muy', 'cómodo', 'llegaron', 'en', 'muy', 'buen', 'estado', 'vino', 'con', 'todo', 'sus', 'accesorio', 'funciona', 'el', 'perfecto', 'con', 'movilnet', 'movistar', 'con', 'digitel', 'e', 'probado', 'recomiendo', 'est', 'vendedor', 'el', 'blackberri'], ['mani', 'thing', 'eas'], ['almost', 'perfect', 'phone', 'front', 'camera', 'way', 'realli', 'nice', 'phone', 'look', 'great', 'enjoy', 'fact', 'not', 'common'], ['thought', 'buy', 'unlock', 'blackberri', 'priv', 'not', 'know', 'go', 'blackberri', 'priv', 'also', 'sd', 'slot', 'not', 'work', 'not', 'detect', 'sd', 'card', 'insert', 'also', 'difficult', 'get', 'sim', 'card', 'slot', 'phone', 'scratch', 'around', 'hole', 'use', 'tool', 'remov', 'seem', 'not', 'new', 'phone', 'seem', 'work', 'fine', 'far', 'android', 'not', 'marshmallow', 'overal', 'not', 'bad', 'phone', 'not', 'expect', 'receiv', 'order'], ['return', 'phone', 'matter', 'person', 'choic', 'phone', 'arriv', 'time', 'good', 'condit', 'alway', 'love', 'bb', 'phone', 'reason', 'not', 'get', 'use', 'new', 'bb', 'phone', 'also', 'return', 'last', 'year', 'run', 'mix', 'droid', 'phone', 'compound', 'smaller', 'screen', 'found', 'annoy', 'tri', 'close', 'thing', 'return', 'someth', 'new', 'found', 'turn', 'phone', 'reset', 'could', 'get', 'place', 'want', 'go', 'person', 'choic', 'found', 'phone', 'need', 'new', 'one', 'phone', 'compani', 'wind', 'send', 'new', 'phone', 'samsung', 'lite', 'replac', 'broken', 'one', 'cost', 'hate', 'screen', 'text', 'stick', 'samsung', 'phone', 'also', 'note', 'love', 'big', 'talk', 'nice', 'text', 'hope', 'blackberri', 'come', 'perfect', 'match', 'phone', 'like', 'return', 'button', 'gave', 'phone', 'star', 'not', 'felt', 'key', 'phone', 'not', 'feel', 'stabl', 'older', 'bb', 'phone', 'model'], ['excel', 'devic', 'great', 'everi', 'day', 'use', 'everyth', 'els', 'second', 'one', 'accident', 'drop', 'first', 'manhol'], ['excel', 'thank', 'venezuela'], ['good', 'phone'], ['physyc', 'great', 'devic', 'well', 'construct', 'remov', 'batteri', 'good', 'keyboard', 'keep', 'mind', 'bb', 'not', 'realli', 'take', 'account', 'loss', 'screen', 'real', 'estat', 'come', 'along', 'physic', 'keyboard', 'design', 'oper', 'system', 'skin', 'top', 'android', 'thing', 'feel', 'littl', 'cramp', 'screen', 'result', 'also', 'go', 'lot', 'troubl', 'want', 'access', 'googl', 'play', 'store', 'doabl', 'not', 'sure', 'mission', 'critic', 'app', 'implement', 'buy', 'blackberri', 'fiddl', 'around', 'get', 'download', 'instal'], ['good'], ['reali', 'like', 'cellphon'], ['thank'], ['pleas', 'smartphon', 'bb', 'great', 'complaint', 'text', 'messag', 'run', 'finger', 'wrong', 'spot', 'somehow', 'switch', 'someth', 'els', 'sensit', 'love', 'also', 'skeptic', 'not', 'say', 'provid', 'compat', 'research', 'learn', 'work', 'slip', 'sim', 'card', 'keep', 'mind', 'take', 'micro', 'sim', 'card', 'make', 'sure', 'one', 'order', 'phone', 'receiv', 'phone', 'realiz', 'sent', 'one', 'got', 'coupl', 'day'], ['satisfi', 'phone', 'exact', 'need', 'ship', 'servic', 'deliv', 'phone', 'ahead', 'schedul', 'great', 'phone'], ['everyth', 'good', 'thank'], ['screen', 'start', 'blank', 'week', 'purchas', 'terribl'], ['product', 'good', 'bran', 'new'], ['not', 'new', 'hope', 'help', 'exterior', 'view', 'goodpleas', 'see', 'upload', 'pictur', 'septemb', 'purchas', 'mobil', 'phone', 'june', 'system', 'folder'], ['perfect'], ['good', 'recommend', 'product', 'product', 'seller'], ['perfect', 'price'], ['love', 'phone', 'not', 'receiv', 'hard', 'case'], ['good', 'describ', 'ad'], ['hi', 'hola', 'phone', 'nice', 'look', 'great', 'differ', 'shop', 'experi', 'made', 'seller', 'pick', 'cell', 'loung', 'good', 'custom', 'servic', 'answer', 'everi', 'email', 'sent', 'staff', 'nice', 'polit', 'phone', 'ligth', 'screen', 'sensit', 'lot', 'memori', 'add', 'lot', 'thing', 'person', 'phone', 'perfect', 'unlock', 'work', 'great', 'gsm', 'carrier', 'also', 'see', 'get', 'phone', 'label', 'cdma', 'turn', 'phone', 'doubl', 'tecnolog', 'suport', 'tecnolog', 'carrier', 'learnt', 'bb', 'not', 'knew', 'even', 'possibl', 'turn', 'gsm', 'set', 'teléfono', 'es', 'súper', 'chévere', 'se', 'espectacular', 'funciona', 'perfecto', 'el', 'teléfono', 'está', 'perfectament', 'desbloqueado', 'funciona', 'excelent', 'con', 'las', 'operadora', 'venezuela', 'yo', 'lo', 'estoy', 'usando', 'con', 'digitel'], ['es', 'mejor', 'que', 'el', 'est', 'vale', 'la', 'pena', 'tien', 'meno', 'problema', 'se', 'hund', 'la', 'pantalla', 'al', 'presionarla'], ['good'], ['like', 'neither', 'shortcom', 'electron', 'oper', 'prefer', 'locat', 'quit', 'rapid', 'gain', 'access', 'applic', 'connect', 'internet', 'rapid', 'stabl'], ['paid', 'unlock', 'phone', 'not', 'make', 'matter', 'wors', 'tri', 'unlock', 'code', 'paperweight'], ['good', 'phone'], ['excel'], ['order', 'blackberri', 'storm', 'unlock', 'phone', 'gift', 'open', 'box', 'inspect', 'phone', 'discov', 'storm', 'verizon', 'logo', 'verizon', 'sim', 'unlock', 'phone', 'wast', 'money', 'time', 'could', 'not', 'use', 'phone', 'return'], ['like', 'phone', 'start', 'right', 'away', 'soon', 'turn', 'besid', 'check', 'email', 'box', 'use', 'websit', 'almost', 'instant', 'great', 'product', 'blackberri', 'would', 'recommend', 'potenti', 'buyer'], ['exelent'], ['good'], ['not', 'realiz', 'account', 'blackberri', 'not', 'use', 'phone'], ['realli', 'like', 'phone', 'touch', 'not', 'work', 'lock', 'get', 'good', 'amount', 'time', 'usual', 'happen', 'year', 'would', 'think', 'get', 'anoth', 'phone', 'anyway'], ['excel', 'seller', 'i', 'receiv', 'storm', 'prefect', 'includ', 'accesori', 'case', 'even', 'gb', 'memori', 'card', 'insid', 'packag', 'arriv', 'time', 'complet', 'i', 'gave', 'five', 'star', 'rate', 'reliabl', 'seller'], ['excelent', 'producto'], ['older', 'thought', 'old', 'need', 'requir', 'use', 'end', 'contract'], ['fucnciono', 'es', 'un', 'asco', 'malo', 'llego', 'muy', 'tard', 'muy', 'malo', 'nole', 'funcion', 'el', 'pin', 'asi', 'que', 'un', 'blackberri', 'sin', 'pin', 'es', 'nada'], ['bought', 'great', 'price', 'go', 'back', 'anoth'], ['cellphon', 'awesom', 'experienc', 'peopl', 'love', 'connect', 'plus', 'work', 'brazil'], ['not', 'wait', 'get', 'phone', 'alot', 'peopl', 'tell', 'not', 'order', 'amazon', 'know', 'amazon', 'never', 'wrong', 'trust', 'compleat', 'love', 'amazon', 'rita', 'bell'], ['mr', 'belang', 'sad', 'disappoint', 'feedback', 'left', 'rate', 'never', 'gotten', 'anyth', 'like', 'year', 'amazon', 'dedic', 'custom', 'servic', 'manag', 'tri', 'contact', 'today', 'phone', 'would', 'also', 'like', 'phone', 'phone', 'bought', 'month', 'warranti', 'void', 'leav', 'feedback', 'not', 'wise', 'decis', 'not', 'see', 'call', 'email', 'not', 'answer', 'ignor', 'idea', 'left', 'hostil', 'feedback', 'need', 'address', 'issu', 'get', 'feedback', 'remov', 'today', 'pleas', 'call', 'us', 'right', 'away', 'phone', 'problem', 'happi', 'replac', 'refund', 'feedback', 'must', 'remov', 'immedi', 'pleas', 'click', 'account', 'upper', 'right', 'corner', 'amazon', 'homepag', 'scroll', 'person', 'communiti', 'see', 'seller', 'feedback', 'submit', 'click', 'see', 'feedback', 'remov', 'button', 'pleas', 'contact', 'us', 'soon', 'possibl', 'assist', 'thank', 'god', 'bless', 'email', 'reciev', 'right', 'call', 'work', 'everyth', 'great', 'thing', 'see', 'write', 'bad', 'review', 'void', 'stuff', 'yes', 'refund', 'money', 'help', 'go', 'email', 'reciev', 'say', 'dedic', 'custom', 'servic', 'not', 'say', 'buy', 'not', 'buy', 'find', 'way', 'realli', 'get', 'work', 'nice', 'wheel', 'deal', 'yes', 'take', 'review', 'want', 'everyon', 'see', 'realli', 'thank', 'time', 'hope', 'help'], ['well', 'purchas', 'item', 'month', 'half', 'ago', 'fist', 'want', 'use', 'att', 'compani', 'not', 'work', 'att', 'not', 'offer', 'phone', 'anyway', 'three', 'day', 'ago', 'came', 'home', 'venezuela', 'famili', 'emerg', 'brough', 'phone', 'use', 'i', 'phone', 'present', 'problem', 'batteri', 'thought', 'new', 'guess', 'not', 'screen', 'not', 'either', 'i', 'extrem', 'disatisfac', 'phone', 'want', 'get', 'contact', 'compani', 'bought', 'not', 'possibl', 'less', 'month', 'phone', 'fall', 'look', 'forward', 'hear', 'back', 'guy', 'soon', 'possibl', 'blackberri', 'storm', 'reviewtagsuggest', 'blackberri', 'storm'], ['noth', 'less', 'noth', 'need', 'expect', 'phone', 'great', 'condit', 'even', 'though', 'use'], ['not', 'work', 'like', 'one', 'bought', 'amazon'], ['receiv', 'product', 'describ', 'excel', 'qualiti', 'fabric', 'recommend', 'product', 'famili', 'friend', 'love'], ['excel', 'serious', 'respons', 'peopl', 'high', 'recommend', 'product', 'meet', 'expect', 'requir', 'packag', 'adequ', 'rate', 'excel'], ['perfecto', 'el', 'equipo', 'desbloqueado', 'funciono', 'perfectament', 'en', 'argentina', 'con', 'proveedor', 'movistar', 'telefonica', 'un', 'exito', 'llegado', 'argentina', 'insert', 'el', 'chip', 'contrat', 'el', 'servicio', 'black', 'berri', 'corrsp'], ['kid', 'want', 'nowaday', 'els', 'say', 'seem', 'pretti', 'solid', 'work', 'smooth', 'blackberri', 'servic', 'bit', 'date', 'day', 'interfac', 'seem', 'odd', 'current', 'time', 'still', 'job'], ['phone', 'may', 'look', 'pretti', 'not', 'describ'], ['bought', 'phone', 'nd', 'got', 'stolen', 'year', 'love', 'got', 'iphon'], ['excel', 'condit', 'like', 'meet', 'expect', 'releas', 'band', 'recommend', 'thanksfiv', 'star', 'thati', 'buy'], ['good'], ['not', 'recommend', 'phone', 'not', 'work', 'flex', 'not', 'state', 'public', 'not', 'trust'], ['el', 'telefono', 'lo', 'recibi', 'en', 'la', 'siguient', 'condicion', 'lo', 'enviaron', 'con', 'la', 'pantalla', 'dañada', 'faltan', 'accesorio', 'es', 'usado', 'realic', 'la', 'compra', 'como', 'nuevo', 'es', 'una', 'irresponsabilidad', 'damag', 'phone'], ['phone', 'new', 'describ', 'fast', 'ship', 'usual', 'amazon', 'look', 'good', 'phone', 'right', 'one'], ['wonder', 'product', 'one', 'time', 'favorit', 'phone', 'trust', 'i', 'quit', 'type', 'person', 'enjoy', 'keyboard', 'well', 'touch', 'option', 'think', 'like', 'one'], ['excel', 'good', 'product', 'todo', 'muy', 'bien', 'buen', 'producto', 'llego', 'tiempo', 'lo', 'recomiendo', 'mi', 'calificación', 'es', 'punto', 'rate', 'point'], ['perfecto'], ['good', 'product', 'expect', 'good', 'would', 'offer', 'gift', 'product', 'purchas', 'motiv', 'user', 'recommend', 'particular', 'product'], ['like', 'blackberri', 'think', 'phone', 'good', 'qualiti', 'person', 'chose', 'phone', 'qwerti', 'keyboard', 'big', 'screen', 'also', 'sleek', 'design', 'easi', 'use', 'would', 'recommend', 'phone', 'anyon', 'not', 'like', 'text', 'use', 'touch', 'screen', 'still', 'want', 'touch', 'screen', 'phone', 'especi', 'young', 'adult', 'kid', 'not', 'want', 'feel', 'place'], ['phone', 'perfect', 'work', 'condit', 'user', 'friend', 'effici', 'strong', 'internet', 'take', 'good', 'pictur', 'video'], ['bought', 'sister', 'jamaica', 'oo', 'love', 'not', 'one', 'wac'], ['order', 'phone', 'friend', 'made', 'sure', 'find', 'satisfi', 'satisfi', 'great', 'seller'], ['blackberri', 'torch', 'unlock', 'phone', 'mp', 'camera', 'full', 'qwerti', 'keyboard', 'gb', 'intern', 'storag', 'unlock', 'phone', 'warranti', 'blackthi', 'product', 'complet', 'rip', 'not', 'buy', 'sell', 'use', 'phone', 'price', 'new', 'one', 'pain', 'spend', 'money', 'stuff', 'phone', 'refus', 'charg', 'batteri', 'die', 'come', 'box', 'screen', 'also', 'refus', 'need', 'someth', 'type', 'supplier', 'data', 'base'], ['excel', 'phone', 'describ', 'batterissu', 'not', 'charg', 'not', 'know', 'bad', 'not', 'howev', 'tri', 'phone', 'differ', 'batteri', 'work', 'perfect', 'sinc', 'gift', 'peopl', 'not', 'call', 'tell', 'problem', 'think', 'good'], ['sirv', 'muy', 'bien', 'vino', 'con', 'todo', 'sus', 'accesorio', 'es', 'un', 'telefono', 'completo', 'todavia', 'lo', 'tengo', 'en', 'uso', 'bien'], ['excelent', 'producto'], ['good'], ['good'], ['thank', 'everyth', 'excel', 'case', 'cellular', 'one', 'grate', 'purchas'], ['perfect'], ['excel'], ['tremend', 'capac', 'good', 'phone', 'noto', 'foulbrood', 'resect', 'littl', 'signal', 'not', 'area', 'venezuela', 'aca', 'crazi', 'thank', 'incred', 'tennologia'], ['good'], ['excel'], ['product', 'still', 'pend', 'give', 'deserv', 'high', 'rate', 'arriv', 'pleas', 'disregar', 'rate', 'rate', 'order', 'submit'], ['bueno'], ['not', 'best', 'good'], ['one', 'die', 'rather', 'new', 'phone', 'simplest', 'answer', 'buy', 'anoth', 'one', 'great', 'deal', 'work', 'perfect'], ['reciev', 'brand', 'new', 'blackberri', 'torch', 'button', 'tact', 'screen', 'perfect', 'camera', 'amaz', 'honest', 'think', 'bit', 'better', 'galaxi', 'mini', 'camera', 'thing', 'not', 'like', 'take', 'standard', 'sim', 'card', 'problem', 'go', 'nd', 'switch', 'micro', 'standard', 'phone', 'excel', 'buy'], ['phone', 'not', 'unlock', 'pay', 'extra', 'phone', 'unlock', 'order', 'new', 'got', 'packag', 'batteri', 'dead', 'earbud', 'indic', 'packag', 'truli', 'disappoint', 'order'], ['much', 'search', 'phone', 'worri', 'would', 'get', 'refurbish', 'one', 'not', 'case', 'true', 'specif', 'complet', 'get'], ['fine'], ['ok', 'excel', 'phone', 'vri', 'happi', 'easi', 'use', 'wuithout', 'problem', 'arriv', 'time', 'thak', 'much'], ['pediel', 'first', 'white', 'blackberri', 'sent', 'black', 'apolog', 'refund', 'small', 'portion', 'start', 'use', 'realiz', 'damag', 'trackbal'], ['good', 'product', 'everyth', 'schedul', 'thank', 'inde'], ['excel', 'product', 'good', 'seller', 'order', 'arriv', 'within', 'stipul', 'time', 'recommend', 'five', 'star', 'seller', 'satisfi', 'purchas', 'sinc', 'buy', 'amazon', 'alway', 'pleasant', 'experi', 'product', 'hand', 'not', 'think', 'anyth', 'els', 'made', 'excel', 'choic', 'disburs', 'money', 'acquir', 'seller', 'behav', 'respons', 'compli', 'detail', 'ship', 'detail', 'perfect', 'good', 'producto', 'muy', 'buen', 'vendedor', 'mi', 'pedido', 'llegó', 'en', 'el', 'tiempo', 'estipulado', 'lo', 'recomiendo', 'todo', 'cinco', 'estrella', 'al', 'vendedor', 'estoy', 'satisfecho', 'con', 'mi', 'compra', 'ya', 'que', 'comprar', 'en', 'amazon', 'siempr', 'ha', 'sido', 'una', 'experiencia', 'agrad', 'una', 'vez', 'tien', 'el', 'producto', 'en', 'tus', 'mano', 'pued', 'pensar', 'en', 'otra', 'cosa', 'que', 'sea', 'que', 'hicist', 'una', 'excelent', 'elección', 'al', 'desembolsar', 'dinero', 'por', 'adquirirlo', 'el', 'vendedor', 'se', 'comporto', 'respons', 'cumplió', 'con', 'los', 'detall', 'del', 'producto', 'los', 'detall', 'del', 'envío', 'perfect', 'good', 'amaz'], ['nice', 'global', 'cell', 'vacat', 'thank'], ['well', 'one', 'day', 'use', 'system', 'crash', 'whole', 'skreen', 'went', 'white', 'skype', 'phone'], ['love', 'product', 'exact', 'look', 'i', 'simpl', 'man'], ['fast', 'deliveri', 'mobil', 'work', 'great', 'function', 'use', 'general', 'cost', 'somewhat', 'reason', 'smartphon'], ['excelent'], ['good'], ['muy', 'bien'], ['nice', 'mobil', 'phone', 'good', 'messag', 'good', 'call', 'qualiti', 'batteri', 'ok', 'good', 'signal', 'good', 'camera', 'photo', 'video', 'although', 'could', 'optim', 'shot', 'darker', 'place', 'one', 'thing', 'miss', 'competit', 'appstor'], ['perfect'], ['blackberri', 'receiv', 'ok', 'clear', 'lesser', 'qualiti', 'construct', 'previous', 'model', 'product', 'may', 'not', 'fault', 'seller', 'still', 'somewhat', 'disappoint', 'use', 'blackberri', 'mani', 'year', 'purchas', 'model', 'first', 'one', 'lower', 'qualiti', 'particular', 'strengh', 'materi', 'use', 'back', 'panel'], ['excelent'], ['product', 'defect', 'not', 'work', 'box', 'not', 'abl', 'get', 'turn', 'would', 'not', 'recommend'], ['es', 'perfecto', 'cumpl', 'toda', 'las', 'expectativa', 'el', 'traslado', 'estuvo', 'dentro', 'del', 'tiempo', 'indicado', 'por', 'el', 'vendedor', 'excelent', 'producto', 'lo', 'recomiendo'], ['everyth', 'great', 'thank', 'fast', 'ship', 'good', 'qualiti', 'phone'], ['phone', 'exact', 'want', 'feel', 'like', 'i', 'tune', 'know', 'want', 'need', 'torch'], ['great', 'product', 'sold', 'smart', 'devic', 'sale', 'excel', 'condit', 'box', 'eeryth', 'includ', 'except', 'sd', 'card', 'work', 'great', 'excelenteproducto', 'vendido', 'por', 'smart', 'devic', 'sale', 'producto', 'en', 'excelent', 'estado', 'con', 'todo', 'incluido', 'meno', 'la', 'micro', 'sd', 'caja', 'orgin', 'levanta', 'con', 'movistar', 'venezuela'], ['phone', 'arriv', 'time', 'work', 'expect', 'nice', 'product', 'servic', 'i', 'would', 'recommend', 'articl', 'vendor'], ['got', 'phone', 'notic', 'problem', 'trackpad', 'disappoint', 'cos', 'bought', 'behalf', 'friend', 'travel', 'africa', 'day', 'deliv', 'could', 'not', 'return'], ['neat', 'brand', 'new', 'seal', 'phone', 'love'], ['good'], ['excelent'], ['excel', 'seller', 'product', 'nice'], ['complet', 'dissatisfi', 'seller', 'public', 'say', 'phone', 'cash', 'buy', 'buy', 'blackberri', 'sent', 'motorola', 'box', 'charger', 'usb', 'cabl', 'batteri', 'not', 'bad', 'bulg', 'bone', 'serv', 'upset', 'situat'], ['bought', 'phone', 'matter', 'fact', 'abl', 'convinc', 'friend', 'purchas', 'one', 'say', 'activ', 'use', 'phone', 'sill', 'said', 'googl', 'found', 'enter', 'phone', 'number', 'first', 'line', 'save', 'saw', 'requir'], ['posit'], ['excelent'], ['love'], ['work', 'great'], ['dad', 'phone', 'almost', 'year', 'still', 'sign', 'wear', 'physic', 'term', 'perform'], ['great', 'cellphon'], ['buen', 'celular', 'pantalla', 'muy', 'amig', 'hay', 'que', 'tener', 'un', 'poco', 'de', 'paciencia', 'al', 'momento', 'de', 'escribir', 'un', 'correo', 'electronico', 'toca', 'digitar', 'despacio'], ['littl', 'problem', 'camera', 'phone'], ['excel'], ['slow'], ['bought', 'phone', 'januari', 'work', 'well', 'next', 'month', 'sinc', 'button', 'clean', 'sever', 'time', 'talk', 'call', 'not', 'hang', 'i', 'lose', 'money', 'ad', 'time', 'go', 'phone', 'compani', 'not', 'hang', 'not', 'transfer', 'differ', 'topic', 'menu', 'without', 'get', 'frustrat', 'whenev', 'sync', 'phone', 'laptop', 'time', 'alway', 'need', 'reset', 'annoy', 'i', 'look', 'phone', 'without', 'button', 'touch', 'screen', 'mayb', 'samsung'], ['not', 'stranger', 'blackberri', 'although', 'old', 'smartphon', 'like', 'older', 'cellular', 'phone', 'phone', 'built', 'brick', 'even', 'secur', 'modern', 'model', 'prior', 'purchas', 'research', 'review', 'mani', 'comment', 'product', 'seller', 'product', 'like', 'verizon', 'brand', 'smartphon', 'come', 'unlock', 'trick', 'mani', 'blackberri', 'user', 'alreadi', 'switch', 'band', 'cdma', 'use', 'sim', 'configur', 'done', 'sim', 'instal', 'unit', 'far', 'one', 'best', 'blackberri', 'phone', 'avail', 'snappi', 'respons', 'batteri', 'life', 'excel', 'regard', 'seller', 'product', 'advertis', 'arriv', 'well', 'protect', 'opportun', 'aris', 'buy', 'seller', 'conclus', 'phone', 'offer', 'price', 'great', 'deal', 'never', 'ceas', 'impress', 'like', 'blackberri', 'phone'], ['excel', 'product', 'seller', 'respons'], ['phone', 'came', 'lock', 'instruct', 'spanish', 'great', 'difficulti', 'util', 'product', 'feel', 'cheat'], ['not', 'use', 'yet', 'take', 'jamaica', 'next', 'month', 'baught', 'friend', 'love', 'though'], ['ok'], ['good'], ['friend', 'enjoy', 'japan', 'like'], ['product', 'came', 'defect', 'brought', 'faulti', 'power', 'suppli', 'irrepar', 'wonder', 'would', 'possibl', 'chang', 'product', 'approxim', 'two', 'month', 'let', 'know', 'contact'], ['producto', 'llegó', 'en', 'muy', 'buena', 'condicion', 'el', 'estuch', 'es', 'de', 'muy', 'buena', 'textura', 'los', 'acabado', 'de', 'igual', 'manera', 'excelent', 'protección', 'para', 'el'], ['phone', 'appar', 'unlock', 'actual', 'fact', 'lock', 'yoigo', 'tri', 'unlock', 'far', 'nobodi', 'abl', 'provid', 'unlock', 'code', 'not', 'buy'], ['good', 'purchas', 'phone', 'took', 'time', 'get', 'use', 'camera', 'qualiti', 'bit', 'far', 'samsung', 'best', 'qualiti', 'camera', 'term', 'privaci', 'reliabl', 'bet', 'got', 'son', 'phone'], ['peopl', 'think', 'blackberri', 'think', 'old', 'phone', 'compani', 'tri', 'surviv', 'blackberri', 'realli', 'fantast', 'os', 'mayb', 'not', 'app', 'googl', 'appl', 'quit', 'honest', 'come', 'smartphon', 'realli', 'best', 'switch', 'android', 'io', 'back', 'android', 'final', 'blackberri', 'first', 'screen', 'broke', 'mind', 'still', 'work', 'car', 'ran', 'entir', 'phone', 'still', 'intact', 'scratch', 'bodi', 'upgrad', 'samsung', 'galaxi', 'hour', 'knew', 'made', 'wrong', 'decis', 'phone', 'not', 'faster', 'intuit', 'reason', 'use', 'messag', 'email', 'sms', 'mms', 'etc', 'contact', 'calendar', 'say', 'app', 'select', 'not', 'bad', 'thing', 'phone', 'amazon', 'made', 'deal', 'add', 'appstor', 'phone', 'peopl', 'complain', 'app', 'cake', 'bottom', 'line', 'blackberri', 'would', 'everyth', 'could', 'get', 'phone', 'peopl', 'hand', 'see', 'realli', 'best', 'mobil', 'os', 'yet'], ['first', 'amazon', 'redesign', 'review', 'dumb', 'not', 'enter', 'titl', 'write', 'review', 'bottom', 'input', 'display', 'across', 'top', 'differ', 'differ', 'stupid', 'thought', 'compani', 'kind', 'lead', 'review', 'phone', 'suppos', 'bridg', 'rim', 'gap', 'consum', 'busi', 'class', 'phone', 'consum', 'would', 'enjoy', 'use', 'almost', 'pull', 'design', 'choic', 'kill', 'reaffirm', 'blackberri', 'still', 'drive', 'cliff', 'stubborn', 'design', 'great', 'realli', 'gestur', 'better', 'iphon', 'interfac', 'better', 'secur', 'android', 'theh', 'screen', 'gorgeous', 'phone', 'fast', 'well', 'built', 'solid', 'realli', 'pick', 'feel', 'like', 'great', 'piec', 'hardwar', 'hey', 'consum', 'want', 'tri', 'blackberri', 'want', 'see', 'ditch', 'android', 'good', 'step', 'oh', 'want', 'move', 'icon', 'want', 'screw', 'icon', 'oh', 'like', 'theme', 'got', 'theme', 'okay', 'not', 'realli', 'like', 'wallpap', 'kind', 'not', 'affect', 'system', 'call', 'theme', 'work', 'bad', 'want', 'differ', 'wallpap', 'lock', 'screen', 'home', 'screen', 'like', 'iphon', 'easi', 'featur', 'peopl', 'love', 'refus', 'offer', 'hate', 'want', 'go', 'bankrupt', 'guess', 'want', 'app', 'head', 'bb', 'appworld', 'wade', 'page', 'garbag', 'download', 'virus', 'pretend', 'applic', 'let', 'anyon', 'put', 'app', 'ln', 'alway', 'adventur', 'actual', 'work', 'roll', 'dice', 'support', 'android', 'app', 'yay', 'okay', 'mean', 'sideload', 'need', 'comput', 'time', 'patienc', 'oh', 'yeah', 'not', 'would', 'imag', 'aer', 'bluetooth', 'usual', 'not', 'want', 'anyth', 'complic', 'android', 'most', 'honest', 'advertis', 'would', 'look', 'like'], ['satisfi', 'phone', 'thank'], ['i', 'happi', 'new', 'blackberri'], ['love', 'thank', 'guy'], ['excel', 'product', 'excel', 'sealer'], ['build', 'qualiti', 'great', 'phone', 'arriv', 'erlier', 'expect', 'perfect', 'learn', 'curv', 'not', 'bad', 'peopl', 'say', 'took', 'day', 'get', 'use', 'phone', 'problem', 'origin', 'drop', 'call', 'hour', 'later', 'got', 'notif', 'latest', 'greatest', 'updat', 'ota', 'updat', 'ever', 'latest', 'version', 'os', 'everi', 'thing', 'work', 'great', 'problem', 'not', 'understand', 'peopl', 'complain', 'mani', 'issu', 'latest', 'updat', 'phone', 'work', 'great', 'latest', 'updat', 'would', 'recommend', 'download', 'btw', 'make', 'sure', 'reboot', 'phone', 'success', 'updat', 'not', 'problem'], ['first', 'hesit', 'buy', 'phone', 'said', 'seller', 'negat', 'review', 'read', 'review', 'noth', 'model', 'phone', 'get', 'lock', 'phone', 'not', 'brand', 'new', 'scratch', 'etc', 'took', 'risk', 'glad', 'got', 'brand', 'new', 'phone', 'free', 'scratch', 'unlock', 'phone', 'amaz', 'i', 'instal', 'googl', 'play', 'store', 'need', 'instal', 'snap', 'direct', 'phone', 'i', 'abl', 'download', 'android', 'app', 'happi', 'choic', 'iphon', 'noth', 'beat', 'blackberri', 'term', 'secur', 'instal', 'googl', 'play', 'store', 'https'], ['love', 'alot'], ['fast', 'effici', 'good', 'screen', 'size', 'think', 'not', 'like', 'fact', 'not', 'enough', 'program', 'yet', 'use', 'busi', 'great'], ['chose', 'phone', 'want', 'smartphon', 'great', 'featur', 'still', 'capabl', 'fit', 'back', 'pocket', 'i', 'phone', 'two', 'month', 'still', 'impress', 'intuit', 'interfac', 'know', 'not', 'ton', 'app', 'not', 'problem', 'one', 'support', 'need', 'skype', 'whatsapp', 'igrann', 'kindl', 'evernot', 'qualiti', 'video', 'photograph', 'excel', 'sound', 'qualiti', 'playback', 'impress', 'longer', 'averag', 'batteri', 'life', 'also', 'definit', 'plus'], ['excelent'], ['use', 'love', 'blackberri', 'upon', 'time', 'blackberri', 'torch', 'kind', 'follow', 'crowd', 'android', 'appl', 'devic', 'decid', 'switch', 'back', 'like', 'hell', 'not', 'like', 'return', 'love', 'screen', 'huge', 'app', 'download', 'batteri', 'life', 'best', 'ever', 'blackberri', 'not', 'everyon', 'peopl', 'say', 'blackberri', 'lost', 'think', 'use', 'platform', 'give', 'tri', 'especi', 'improv', 'os', 'system', 'app', 'grow', 'fall', 'love', 'promis'], ['want', 'adventur', 'order', 'blackberri', 'worst', 'choic', 'bad', 'part', 'also', 'order', 'one', 'mother', 'blackberri', 'interfac', 'ineffici', 'known', 'better', 'sinc', 'use', 'android', 'phone', 'voic', 'command', 'crap', 'app', 'use', 'tablet', 'order', 'uber', 'dolli', 'phone', 'shut', 'mom', 'phone', 'freez', 'tri', 'answer', 'call', 'good', 'batteri', 'life', 'long'], ['regret', 'yet', 'use', 'phone', 'hope', 'not', 'super', 'love', 'tha', 'app', 'batteri', 'screen', 'featur'], ['bought', 'phone', 'decemb', 'replac', 'galaxi', 'note', 'love', 'perform', 'today', 'screen', 'black', 'complet', 'unrespons', 'even', 'continu', 'hard', 'reboot', 'funni', 'thing', 'phone', 'never', 'drop', 'even', 'expos', 'moistur', 'took', 'complet', 'surpris'], ['good', 'product'], ['excel', 'phone', 'fast', 'thin', 'great', 'camera', 'look', 'light', 'robust'], ['definit', 'littl', 'concern', 'go', 'blackberri', 'torch', 'physic', 'keyboard', 'phone', 'great', 'transit', 'love'], ['great', 'phone', 'littl', 'larg', 'size', 'better'], ['seal', 'broken', 'rest', 'fine'], ['not', 'work', 'unlock', 'smartphon', 'us', 'carrier', 'bewar'], ['screen', 'small', 'work', 'great', 'faster', 'samsung', 'samsung', 'load', 'ton', 'app', 'slow', 'anyway'], ['not', 'work'], ['excel', 'product'], ['phone', 'absolut', 'beauti', 'love', 'keyboard', 'respond', 'well', 'oppos', 'android', 'phone', 'use', 'batteri', 'drain', 'quick', 'batteri', 'saver', 'app', 'work', 'well', 'bluetooth', 'allow', 'phone', 'automat', 'connect', 'smart', 'watch', 'switch', 'iphon', 'phone', 'instead', 'purchas', 'new', 'standard', 'size', 'sim', 'bought', 'nano', 'standard', 'size', 'adapt', 'not', 'serious', 'problem', 'glitch', 'non', 'respons', 'app', 'cheap', 'android', 'phone', 'tend', 'real', 'issu', 'camera', 'alway', 'seem', 'red', 'tint', 'pictur', 'unless', 'amaz', 'light', 'snapchat', 'instagram', 'virtual', 'imposs', 'would', 'not', 'recommend', 'phone', 'photograph', 'hand', 'prefer', 'look', 'pictur', 'oppos', 'take', 'phone', 'problem', 'oh', 'man', 'miss', 'swype', 'keyboard', 'microphon', 'speaker', 'phone', 'work', 'beauti', 'respons', 'messag', 'app', 'great', 'littl', 'delay', 'someon', 'send', 'messag', 'receiv', 'overal', 'fantast', 'phone', 'come', 'screen', 'protector'], ['phone', 'take', 'standard', 'size', 'sim', 'need', 'adapt', 'micro', 'nano', 'sim', 'not', 'buy', 'camera', 'disappoint', 'great', 'budget', 'phone', 'custom'], ['expect', 'low', 'dollar', 'surpris', 'good', 'i', 'start', 'pros', 'reason', 'fast', 'lag', 'sometim', 'reason', 'fast', 'dollar', 'get', 'money', 'worth', 'not', 'expect', 'super', 'fast', 'speed', 'not', 'super', 'run', 'casual', 'game', 'abl', 'get', 'minecraft', 'run', 'ram', 'led', 'quit', 'use', 'wish', 'use', 'pretti', 'good', 'stock', 'android', 'must', 'dual', 'sim', 'sd', 'card', 'slot', 'make', 'great', 'batteri', 'insan', 'better', 'iphon', 'batteri', 'rootabl', 'test', 'kingroot', 'work', 'fine', 'great', 'advantag', 'con', 'touchscreen', 'crap', 'abl', 'run', 'game', 'touchscreen', 'bad', 'latenc', 'make', 'game', 'unplay', 'almost', 'strang', 'not', 'see', 'camera', 'garbag', 'could', 'care', 'less', 'sinc', 'not', 'take', 'pictur', 'not', 'enough', 'ram', 'processor', 'fine', 'ram', 'background', 'app', 'near', 'not', 'support', 'lolipop', 'not', 'understand', 'would', 'much', 'faster', 'would', 'not', 'perfect', 'certain', 'get', 'money', 'worth', 'wish', 'would', 'cram', 'ram', 'better', 'touchscreen', 'make', 'much', 'use', 'phone', 'difficult', 'sometim'], ['good'], ['good', 'phone'], ['phone', 'work', 'month', 'wast', 'money', 'crap', 'phone', 'first', 'last', 'time', 'buy', 'phone', 'amazon', 'warn', 'buy', 'phone', 'amazon', 'turn', 'true'], ['not', 'come', 'silicon', 'case'], ['delay', 'transit', 'refund', 'instant', 'express', 'servic', 'payment', 'phone', 'great', 'work', 'well', 'jamaica'], ['excel', 'cell'], ['good', 'month', 'sent', 'tri', 'fix', 'problem', 'never', 'come'], ['great', 'inexpens', 'altern', 'expens', 'smartphon', 'paid', 'around', 'think', 'fantast', 'deal', 'price', 'smartphon', 'great', 'downsid', 'video', 'qualiti', 'back', 'cover', 'video', 'qualiti', 'even', 'zoom', 'pictur', 'defin', 'less', 'par', 'video', 'dark', 'slight', 'distort', 'pic', 'qualiti', 'zoom', 'becom', 'blurri', 'back', 'cover', 'come', 'phone', 'easi', 'drop', 'phone', 'chanc', 'cover', 'come', 'actual', 'drop', 'phone', 'back', 'cover', 'came', 'upon', 'impact', 'batteri', 'fell', 'broke', 'otherwis', 'great', 'phone', 'price', 'not', 'beat'], ['good', 'product', 'bought', 'third', 'time'], ['phone', 'got', 'hot', 'melt'], ['bought', 'phone', 'daughter', 'love', 'issu', 'old', 'phone', 'mini', 'sim', 'one', 'take', 'larger', 'version', 'instead', 'wait', 'order', 'sim', 'adapt', 'sinc', 'att', 'bestbuy', 'told', 'could', 'not', 'help', 'took', 'matter', 'hand', 'figur', 'sim', 'goe', 'top', 'slot', 'tray', 'sim', 'side', 'sim', 'card', 'first', 'slot', 'sim', 'chip', 'face', 'hold', 'place', 'put', 'piec', 'scotch', 'tape', 'put', 'batteri', 'sim', 'snug', 'blu', 'vivo', 'air', 'love', 'say', 'price', 'phone', 'realli', 'great', 'could', 'way', 'wors', 'price'], ['good', 'phone', 'money', 'like', 'dual', 'sim', 'slot', 'phone', 'work', 'north', 'american', 'gsm', 'carrier', 'dual', 'sim', 'phone', 'not', 'alway', 'work', 'use', 'standard', 'mini', 'size', 'sim', 'insert', 'sim', 'littl', 'tricki', 'work', 'sim', 'slot', 'data', 'voic', 'sim', 'slot', 'data', 'voic', 'get', 'best', 'valu', 'use', 'prepaid', 'data', 'minut', 'voic', 'text', 'put', 'airvoic', 'wireless', 'sim', 'slot', 'unlimit', 'voic', 'text', 'phone', 'monitor', 'sim', 'time', 'use', 'data', 'session', 'still', 'receiv', 'phone', 'call', 'text', 'like', 'android', 'allow', 'store', 'mani', 'app', 'sd', 'card', 'batteri', 'life', 'ok', 'use', 'continu', 'batteri', 'last', 'mayb', 'hour', 'connect', 'charger', 'portabl', 'batteri'], ['one', 'worst', 'product', 'ever', 'bought', 'two', 'month', 'bought', 'not', 'longer', 'work', 'frozen', 'startup', 'splash', 'screen', 'not', 'realli', 'recommend'], ['horribl', 'froze', 'not', 'even', 'coupl', 'month', 'never', 'drop', 'crack', 'screen'], ['not', 'work', 'week'], ['overheat', 'crash', 'batteri', 'die', 'first', 'month', 'worst', 'buy', 'ever'], ['find', 'work', 'find'], ['ver', 'good'], ['comment'], ['faith', 'blu', 'phone', 'recipi', 'lol', 'purchas', 'starter', 'phone'], ['thank', 'blu', 'son', 'smile'], ['want', 'buy', 'bateri'], ['good', 'product'], ['work', 'fine', 'curacao', 'island', 'dutch', 'coloni', 'caribbean', 'total', 'unlock', 'two', 'sim', 'card', 'slot', 'full', 'size', 'sim', 'not', 'need', 'cut', 'sim', 'card', 'need', 'adaptor', 'make', 'normal', 'fit', 'slot', 'come', 'one', 'batteri', 'one', 'earpiec', 'one', 'usb', 'cabl', 'plug', 'make', 'usb', 'attach', 'electr', 'one', 'transpar', 'screen', 'protector', 'nice', 'phone', 'price', 'open', 'page', 'relat', 'fast', 'opera', 'softwar', 'googleplay', 'front', 'back', 'camera', 'differ', 'languag', 'choos', 'start', 'english', 'spanish', 'etc', 'recommend'], ['great', 'phone', 'wife', 'love'], ['love', 'phone', 'came', 'high', 'recommend', 'replac', 'chip', 'use', 'plan', 'purchas', 'anoth', 'gift'], ['great', 'valu', 'work', 'europ', 'without', 'problem'], ['awesom', 'phone', 'problem'], ['excel'], ['not', 'work'], ['phone', 'hang', 'first', 'applic', 'start', 'give', 'problem', 'not', 'even', 'start', 'brand', 'function', 'not', 'unfortun'], ['far', 'good', 'arriv', 'today', 'replac', 'dead', 'galaxi', 'mini', 'took', 'bit', 'longer', 'i', 'would', 'normal', 'expect', 'amazon', 'last', 'day', 'note', 'still', 'time', 'basic', 'smartphon', 'need', 'respons', 'time', 'littl', 'slow', 'cost', 'much', 'better', 'thought', 'would', 'camera', 'quit', 'pixel', 'not', 'expect', 'take', 'art', 'worthi', 'shot', 'job', 'still', 'work', 'bit', 'piec', 'go', 'new', 'phone', 'i', 'happi', 'note', 'take', 'regular', 'size', 'sim', 'card', 'current', 'micro', 'sim', 'anyth', 'get', 'adapt', 'construct', 'one', 'like', 'pretti', 'solid', 'seem', 'littl', 'phone', 'job'], ['good'], ['stay', 'away', 'phone', 'stop', 'work', 'month', 'wast', 'money'], ['work', 'fine', 'son', 'drop', 'screen', 'crack', 'state'], ['excel', 'product', 'work', 'perfect', 'venezuela'], ['expect'], ['great', 'phone', 'work', 'great', 'straight', 'talk'], ['job', 'case', 'use', 'cheap', 'phone', 'travel', 'europ'], ['great'], ['amaz', 'work', 'fine', 'teenag', 'niec', 'not', 'want', 'give', 'expens', 'smartphon', 'without', 'first', 'show', 'valu', 'respons', 'come', 'cellphon', 'thank', 'yiu'], ['good', 'product', 'simpl', 'use'], ['phone', 'work', 'fine', 'coupl', 'month', 'moment', 'juli', 'cell', 'phone', 'neither', 'work', 'proper'], ['blu', 'phone', 'awesom', 'not', 'overpr', 'like', 'competitor', 'second', 'one', 'never', 'disappoint'], ['son', 'love', 'phone'], ['thank', 'blu', 'son', 'smile'], ['delay', 'transit', 'refund', 'instant', 'express', 'servic', 'payment', 'phone', 'great', 'work', 'well', 'jamaica'], ['kept', 'loos', 'internet', 'connect'], ['phone', 'dead', 'day', 'use'], ['phone', 'got', 'hot', 'melt'], ['bought', 'nephew', 'know', 'android', 'phone', 'love'], ['great', 'phone', 'blu', 'phone', 'never', 'disappoint'], ['return', 'not', 'work'], ['beuti'], ['good'], ['bought', 'yr', 'like', 'bit', 'not', 'camera', 'horribl', 'dark', 'qualiti', 'graini', 'wish', 'not', 'wast', 'money', 'alcatel', 'brand', 'good', 'pleas', 'not', 'wast', 'money', 'screen', 'not', 'either', 'like', 'horribl', 'camera'], ['excel'], ['good', 'siento', 'satisfecha', 'con', 'el', 'aparato'], ['expect', 'low', 'dollar', 'surpris', 'good', 'i', 'start', 'pros', 'reason', 'fast', 'lag', 'sometim', 'reason', 'fast', 'dollar', 'get', 'money', 'worth', 'not', 'expect', 'super', 'fast', 'speed', 'not', 'super', 'run', 'casual', 'game', 'abl', 'get', 'minecraft', 'run', 'ram', 'led', 'quit', 'use', 'wish', 'use', 'pretti', 'good', 'stock', 'android', 'must', 'dual', 'sim', 'sd', 'card', 'slot', 'make', 'great', 'batteri', 'insan', 'better', 'iphon', 'batteri', 'rootabl', 'test', 'kingroot', 'work', 'fine', 'great', 'advantag', 'con', 'touchscreen', 'crap', 'abl', 'run', 'game', 'touchscreen', 'bad', 'latenc', 'make', 'game', 'unplay', 'almost', 'strang', 'not', 'see', 'camera', 'garbag', 'could', 'care', 'less', 'sinc', 'not', 'take', 'pictur', 'not', 'enough', 'ram', 'processor', 'fine', 'ram', 'background', 'app', 'near', 'not', 'support', 'lolipop', 'not', 'understand', 'would', 'much', 'faster', 'would', 'not', 'perfect', 'certain', 'get', 'money', 'worth', 'wish', 'would', 'cram', 'ram', 'better', 'touchscreen', 'make', 'much', 'use', 'phone', 'difficult', 'sometim'], ['gift', 'love'], ['wife', 'live', 'flip', 'phone', 'long', 'batteri', 'expens', 'phone', 'decid', 'upgrad', 'get', 'phone', 'kid', 'surpris', 'oper', 'puretalk', 'took', 'sim', 'card', 'old', 'phone', 'one', 'get', 'puretalk', 'send', 'reset', 'code', 'sim', 'set', 'phone', 'start', 'work', 'lot', 'app', 'use', 'immedi', 'load', 'thing', 'know', 'good', 'match', 'us', 'place', 'order', 'second', 'phone', 'phone', 'month', 'puretalk', 'pay', 'cell', 'phone', 'use'], ['not', 'wast', 'money', 'buy', 'purchas', 'phone', 'februari', 'august', 'start', 'malfunct', 'mother', 'advic', 'technician', 'phone', 'eventu', 'stop', 'work'], ['perfecto'], ['not', 'wast', 'money', 'buy', 'purchas', 'phone', 'februari', 'august', 'start', 'malfunct', 'mother', 'advic', 'technician', 'phone', 'eventu', 'stop', 'work'], ['excel', 'product', 'work', 'perfect', 'venezuela'], ['expect'], ['work', 'greattook', 'costa', 'rica', 'stuck', 'chip', 'jus', 'fantast'], ['good'], ['delay', 'transit', 'refund', 'instant', 'express', 'servic', 'payment', 'phone', 'great', 'work', 'well', 'jamaica'], ['ideal', 'phone', 'kid', 'not', 'best', 'adult', 'look', 'advanc', 'stuff', 'phone', 'not', 'case', 'perfect', 'howev', 'good', 'basic', 'game', 'basic', 'usag', 'phone', 'offer'], ['phone', 'day', 'bought', 'phone', 'never', 'work', 'keep', 'shut', 'work', 'want', 'took', 'phone', 'shop', 'special', 'phone', 'not', 'know', 'wrong', 'phone', 'wast', 'still', 'good', 'condit', 'not', 'work'], ['great', 'phone', 'great', 'seller'], ['good'], ['phone', 'not', 'good', 'start', 'good', 'month', 'could', 'get', 'refund', 'phone'], ['excelent'], ['love', 'color'], ['realli', 'good', 'smartphon', 'work', 'perfect', 'complaint', 'thank'], ['good'], ['sent', 'daughter', 'jamaicaso', 'far', 'complaint'], ['great', 'like'], ['i', 'happi', 'purchas', 'great', 'cellphon', 'model'], ['nice', 'cellphon'], ['got', 'phone', 'month', 'ago', 'today', 'went', 'start', 'screen', 'stray', 'lock', 'tri', 'everyth', 'make', 'work', 'remov', 'batteri', 'remov', 'sim', 'card', 'tri', 'vid', 'youtub', 'told', 'noth', 'work', 'without', 'phone'], ['bought', 'girlfriend', 'noth', 'problem', 'play', 'game', 'call', 'torn', 'often', 'iot', 'take', 'min', 'load', 'onlin', 'game', 'go', 'figur', 'kick', 'lot', 'i', 'not', 'complet', 'sure', 'use', 'hangout', 'talk', 'also', 'take', 'time', 'load', 'kick', 'not', 'seem', 'bad', 'go', 'amazon', 'problem', 'seem', 'perhap', 'load', 'differ', 'way', 'faster', 'load', 'i', 'not', 'sure', 'get', 'post', 'well', 'stori', 'told', 'slow', 'heavi', 'user', 'definit', 'not', 'phone', 'anoth', 'thing', 'tri', 'get', 'hook', 'provid', 'said', 'not', 'hook', 'blu', 'i', 'not', 'sure', 'info', 'becom', 'avail', 'updat', 'review', 'return', 'gotten', 'differ', 'bad', 'experi', 'round'], ['not', 'wast', 'money', 'bought', 'phone', 'parent', 'holiday', 'present', 'month', 'phone', 'die'], ['absolut', 'garbag', 'not', 'buy', 'wast', 'money', 'dose', 'not', 'work', 'need', 'use', 'mobil', 'data', 'even', 'turn', 'mobil', 'data'], [], ['love', 'phone', 'easi', 'setup', 'use', 'featur', 'need', 'best', 'price', 'small', 'enough', 'purs', 'pocket', 'big', 'enoughto', 'read', 'display', 'comfort', 'thank'], ['bought', 'unlock', 'mobil', 'intern', 'trip', 'sure', 'meet', 'need'], ['ideal', 'island'], ['phone', 'week', 'worth', 'everi', 'penni', 'love'], ['great', 'phone', 'price', 'thought', 'half', 'screen', 'not', 'work', 'replac', 'would', 'cost', 'almost', 'much', 'phone', 'bare', 'two', 'month', 'rescind', 'recommend'], ['ver', 'good'], ['good', 'perform', 'consid', 'price', 'cell'], ['bueno', 'muy', 'bueno'], ['great', 'valu'], ['good'], ['great', 'phone', 'work', 'great', 'straight', 'talk'], ['good', 'month', 'sent', 'tri', 'fix', 'problem', 'never', 'come'], ['phone', 'work', 'fine', 'coupl', 'month', 'moment', 'juli', 'cell', 'phone', 'neither', 'work', 'proper'], ['good', 'product'], ['genial'], ['great', 'phone', 'price', 'thought', 'half', 'screen', 'not', 'work', 'replac', 'would', 'cost', 'almost', 'much', 'phone', 'bare', 'two', 'month', 'rescind', 'recommend'], ['nice', 'phone', 'low', 'price'], ['great', 'phone'], ['use', 'full', 'size', 'sim', 'card', 'not', 'one', 'need', 'get', 'adaptor', 'not', 'know', 'much', 'not', 'adaptor', 'yet'], ['experi', 'phone'], ['balanc', 'cost', 'benefit', 'perfect', 'beauti', 'light'], ['excel', 'product', 'keep'], ['work', 'perfect', 'fine', 'good', 'condit'], ['exellen'], ['love'], ['got', 'bestfriend', 'mom', 'not', 'phone', 'fanat', 'want', 'phone', 'make', 'call', 'text', 'told', 'not', 'pass', 'get', 'simpl', 'phone', 'far', 'good'], ['work', 'fine', 'curacao', 'island', 'dutch', 'coloni', 'caribbean', 'total', 'unlock', 'two', 'sim', 'card', 'slot', 'full', 'size', 'sim', 'not', 'need', 'cut', 'sim', 'card', 'need', 'adaptor', 'make', 'normal', 'fit', 'slot', 'come', 'one', 'batteri', 'one', 'earpiec', 'one', 'usb', 'cabl', 'plug', 'make', 'usb', 'attach', 'electr', 'one', 'transpar', 'screen', 'protector', 'nice', 'phone', 'price', 'open', 'page', 'relat', 'fast', 'opera', 'softwar', 'googleplay', 'front', 'back', 'camera', 'differ', 'languag', 'choos', 'start', 'english', 'spanish', 'etc', 'recommend'], ['ok'], ['use', 'travel', 'abroad', 'use', 'local', 'sim', 'card', 'dual', 'card', 'littl', 'confus', 'not', 'handl', 'yet', 'mayb', 'next', 'trip'], ['look', 'nice', 'tri', 'america', 'work', 'nice'], ['awesom', 'phone', 'problem'], ['not', 'work', 'i', 'unabl', 'unlock', 'screen', 'initi', 'start', 'lock', 'keep', 'take', 'batteri', 'restart', 'devic'], ['excelent', 'producto'], ['not', 'work', 'week'], ['phone', 'work', 'fine', 'time', 'date', 'keep', 'reset', 'go', 'recharg', 'turn'], ['bought', 'phone', 'cheap', 'replac', 'boyfriend', 'broke', 'phone', 'phone', 'not', 'hold', 'batteri', 'whatsoev', 'use', 'three', 'hour', 'thing'], ['good', 'product'], ['fine'], ['bought', 'three', 'kid', 'daughter', 'broke', 'within', 'month', 'offer', 'day', 'return', 'polici', 'understand', 'return', 'not', 'want', 'item', 'defect', 'buyer', 'bewar', 'crappi', 'custom', 'servic'], ['bought', 'father', 'less', 'month', 'stop', 'work', 'blue', 'second', 'blu', 'phone', 'own', 'stop', 'work', 'not', 'recommend', 'brand', 'anyon', 'not', 'wast', 'money'], ['phone', 'short', 'time', 'would', 'not', 'advis', 'anyon', 'purchas', 'say', 'take', 'horribl', 'pictur', 'low', 'volum', 'talk', 'plus', 'put', 'ice', 'complet', 'shut', 'not', 'charg', 'come', 'wast', 'money', 'dissatisfi'], ['ideal', 'island'], ['got', 'niec', 'blu', 'advanc', 'right', 'happi', 'outcom', 'plus', 'price', 'not', 'bad'], ['everyth', 'ok'], ['look', 'good', 'not', 'use', 'yet', 'send', 'jamaica'], ['phone', 'mean', 'worth', 'price', 'pay', 'phone', 'great', 'back', 'phone', 'great', 'spare', 'phone', 'great', 'phone', 'kid', 'not', 'argu', 'get', 'price', 'pay', 'plus', 'amazon', 'get', 'day', 'ship', 'need', 'phone', 'quick', 'budget', 'easi', 'win', 'pros', 'pricequalitydu', 'simcom', 'case', 'screen', 'protector', 'head', 'market', 'download', 'app', 'good', 'kid', 'play', 'game', 'batterygreat', 'call', 'qualitybluetoothwificon', 'not', 'snappiest', 'phonerun', 'kit', 'katspeak', 'mediocrecamera', 'mediocrescreen', 'size', 'small', 'big', 'handsnow', 'price', 'look', 'great', 'budget', 'tech', 'phone', 'mean', 'give', 'gift', 'kid', 'famili', 'bought', 'grandmoth', 'old', 'old', 'flip', 'phone', 'broke', 'happi', 'overal', 'rate', 'phone', 'must', 'buy', 'great', 'price', 'easili', 'use', 'differ', 'senior'], ['bought', 'nephew', 'know', 'android', 'phone', 'love'], ['decent', 'phone', 'problem', 'thing', 'micro', 'sim', 'card', 'need', 'buy', 'adapt', 'fit', 'correct', 'use', 'rinogear', 'sim', 'card', 'adapt', 'easili', 'found', 'amazon', 'cheap', 'work', 'perfect'], ['work', 'great'], ['blu', 'phone', 'awesom', 'not', 'overpr', 'like', 'competitor', 'second', 'one', 'never', 'disappoint'], ['phone', 'not', 'work'], ['gud', 'phone', 'price'], ['great', 'phone', 'want', 'someon', 'not', 'need', 'high', 'power', 'cellphon', 'bigger', 'size'], ['batteri', 'damag', 'month', 'use', 'work', 'movilnet'], ['sent', 'daughter', 'jamaicaso', 'far', 'complaint'], ['great', 'valu'], ['relationship', 'price', 'phone', 'excel'], ['basic', 'basic', 'phone', 'tech', 'person', 'howev', 'recommend', 'friend', 'purchas', 'preteen', 'son', 'appear', 'meet', 'satisfact', 'love', 'dual', 'sim', 'card', 'featur', 'colour', 'pic', 'super', 'fast'], ['not', 'like', 'small', 'pictur', 'fool'], ['happi', 'perform', 'app', 'work', 'flawless', 'camera', 'could', 'better', 'complaint', 'consid'], ['expect'], ['look', 'good', 'not', 'use', 'yet', 'send', 'jamaica'], ['realli', 'good', 'smartphon', 'work', 'perfect', 'complaint', 'thank'], ['son', 'love', 'phone'], ['woow', 'thank', 'much', 'product', 'arriv', 'super', 'good', 'excel', 'ahead', 'schedul'], ['bought', 'father', 'less', 'month', 'stop', 'work', 'blue', 'second', 'blu', 'phone', 'own', 'stop', 'work', 'not', 'recommend', 'brand', 'anyon', 'not', 'wast', 'money'], ['love', 'color'], ['far', 'good', 'arriv', 'today', 'replac', 'dead', 'galaxi', 'mini', 'took', 'bit', 'longer', 'i', 'would', 'normal', 'expect', 'amazon', 'last', 'day', 'note', 'still', 'time', 'basic', 'smartphon', 'need', 'respons', 'time', 'littl', 'slow', 'cost', 'much', 'better', 'thought', 'would', 'camera', 'quit', 'pixel', 'not', 'expect', 'take', 'art', 'worthi', 'shot', 'job', 'still', 'work', 'bit', 'piec', 'go', 'new', 'phone', 'i', 'happi', 'note', 'take', 'regular', 'size', 'sim', 'card', 'current', 'micro', 'sim', 'anyth', 'get', 'adapt', 'construct', 'one', 'like', 'pretti', 'solid', 'seem', 'littl', 'phone', 'job'], ['phone', 'hot', 'signal', 'hope', 'guarante'], ['phone', 'not', 'work'], ['got', 'phone', 'mother', 'want', 'dual', 'sim', 'phone', 'howev', 'less', 'month', 'purchas', 'phone', 'not', 'stick', 'power', 'screen', 'say', 'blu', 'not', 'boot', 'goe', 'main', 'screen', 'never', 'fell', 'anyth', 'extrem', 'disappoint', 'product'], ['love', 'phone', 'hook', 'prepaid', 'carrier', 'work', 'great'], ['faith', 'blu', 'phone', 'recipi', 'lol', 'purchas', 'starter', 'phone'], ['bought', 'phone', 'relat', 'oversea', 'say', 'love'], ['screen', 'small', 'screen', 'resolut', 'bad', 'therefor', 'believ', 'item', 'cheaper'], ['gift', 'love'], ['work', 'fine', 'good'], ['perfect'], ['got', 'bestfriend', 'mom', 'not', 'phone', 'fanat', 'want', 'phone', 'make', 'call', 'text', 'told', 'not', 'pass', 'get', 'simpl', 'phone', 'far', 'good'], ['not', 'good', 'phone'], ['fine'], ['thank', 'blu', 'son', 'smile'], ['work', 'great'], ['amaz', 'work', 'fine', 'teenag', 'niec', 'not', 'want', 'give', 'expens', 'smartphon', 'without', 'first', 'show', 'valu', 'respons', 'come', 'cellphon', 'thank', 'yiu'], ['good', 'thank'], ['love'], ['return', 'stop', 'work', 'ez', 'anyth', 'electron', 'fail', 'right', 'box', 'experi'], ['good', 'basic', 'phone', 'low', 'cost', 'troubl', 'key', 'alpha', 'numer', 'keyboard', 'not', 'good', 'want', 'lot', 'text', 'use', 'england', 'iceland', 'global', 'sim', 'card', 'order', 'abl', 'touch', 'famili', 'friend', 'travel'], ['awesom'], ['good', 'phone', 'children', 'far', 'good', 'wifi', 'camera', 'etc', 'ok', 'memori', 'includ', 'buy', 'one', 'thing', 'broke', 'screen', 'not', 'know', 'get', 'one', 'replac', 'sinc', 'abroad'], ['excel'], ['ok'], ['fabuloso'], ['purchas', 'smartphon', 'mother', 'nice', 'tini', 'phone', 'fit', 'hand', 'though', 'not', 'level', 'processor', 'ram', 'handl', 'activ', 'call', 'web', 'brows', 'quit', 'well', 'camera', 'take', 'good', 'pictur', 'voic', 'qualiti', 'good', 'side', 'screen', 'get', 'quit', 'glossi', 'difficult', 'view', 'certain', 'angl', 'otherwis', 'great', 'phone', 'price', 'mention', 'come', 'free', 'case'], ['begin', 'seam', 'ok', 'touch', 'screen', 'good', 'short', 'time', 'realiz', 'slow', 'camera', 'not', 'good', 'sometim', 'block', 'not', 'answer', 'call', 'wish', 'throw', 'wall', 'not', 'buy', 'anoth', 'one', 'still', 'serv', 'purpos'], ['coupl', 'reason', 'bought', 'phone', 'price', 'made', 'good', 'usa', 'new', 'smart', 'phone', 'not', 'know', 'thing', 'home', 'not', 'get', 'good', 'recept', 'problem', 'old', 'phone', 'gave', 'four', 'star', 'yes', 'would', 'tell', 'anyon', 'buy', 'phone'], ['not', 'meet', 'expect', 'user', 'manual', 'not', 'give', 'enough', 'detail', 'not', 'equip', 'intern', 'use', 'could', 'not', 'find', 'option', 'chines'], ['ok'], ['bought', 'daughter', 'love', 'like', 'mini', 'time', 'less', 'cost'], ['junk'], ['not', 'use', 'yet', 'friend', 'took', 'jamaica', 'silenc', 'guess', 'work', 'well', 'critic', 'person', 'henc', 'would', 'not', 'hesit', 'tell', 'defici', 'devic'], ['great', 'phone', 'price', 'big'], ['money', 'well', 'spent', 'issu', 'phone'], ['phone', 'arriv', 'today', 'sep', 'descript', 'said', 'micro', 'sd', 'slot', 'box', 'phone', 'say', 'also', 'purchas', 'sandisk', 'ultra', 'ultra', 'micro', 'sdhc', 'card', 'phone', 'not', 'detect', 'power', 'phone', 'remov', 'card', 'put', 'back', 'phone', 'still', 'not', 'recogn', 'complaint', 'major', 'far', 'phone', 'work', 'put', 'sim', 'card', 'connect', 'network', 'search', 'internet', 'problem', 'blu', 'phone', 'not', 'detect', 'microsd', 'card', 'peopl', 'suggest', 'microsd', 'card', 'need', 'format', 'first', 'use', 'put', 'card', 'adapt', 'came', 'bought', 'sandisk', 'ultra', 'ultra', 'micro', 'sdhc', 'card', 'adapt', 'put', 'sd', 'slot', 'window', 'comput', 'format', 'put', 'back', 'blu', 'dash', 'phone', 'detect', 'microsd', 'chang', 'rate', 'phone', 'bewar', 'maximum', 'microsd', 'size', 'not', 'descript', 'state'], ['slight', 'bubbl', 'screen', 'notic', 'screen', 'black', 'work', 'well', 'far', 'quit', 'pleas'], ['still', 'tri', 'get', 'use', 'love'], ['phone', 'realli', 'great', 'bought', 'phone', 'comment', 'read', 'peopl', 'bought', 'phone', 'tri', 'see', 'peopl', 'say', 'true', 'phone', 'realli', 'surpris', 'work', 'great', 'fact', 'taken', 'sim', 'samsung', 'note', 'continu', 'use', 'blu', 'dash', 'trust', 'go', 'phone', 'never', 'regret', 'like', 'regret', 'buy', 'phone'], ['great', 'phone'], ['purchas', 'phone', 'gift', 'mother', 'seem', 'realli', 'enjoy', 'phone', 'good', 'thing', 'say'], ['far', 'happi', 'phone', 'realli', 'good', 'price', 'work', 'us', 'continu', 'shop', 'amazon'], ['grate', 'grate', 'grate', 'rate', 'star'], ['buy', 'phone', 'brother', 'ja', 'said', 'good'], ['beauti', 'phone', 'nice', 'color', 'work', 'good', 'far', 'came', 'piec', 'love', 'rico'], ['son', 'love', 'put', 'sim', 'card', 'kept', 'number', 'everyth', 'excel', 'blue', 'popular', 'around', 'area', 'wonder', 'product'], ['beauti', 'phone', 'nice', 'color', 'work', 'good', 'far', 'came', 'piec', 'love', 'rico'], ['took', 'time', 'get', 'use', 'set', 'phone', 'like', 'huge'], ['phone', 'easi', 'oper', 'total', 'satisfi', 'everyth', 'thought', 'would', 'much', 'bank', 'check', 'lot', 'great', 'app', 'chose', 'love', 'phone', 'bought', 'mine', 'brother', 'bought', 'one', 'recommend', 'love', 'price', 'great'], ['got', 'comment', 'yet'], ['great', 'phone', 'need'], ['assum', 'phone', 'problem', 'charg', 'cabl', 'replac', 'would', 'buy', 'anoth', 'need', 'phone'], ['bought', 'phone', 'smash', 'blu', 'studio', 'beyond', 'repair', 'phone', 'outperform', 'galaxi', 'note', 'ii', 'also', 'smash', 'smartphon', 'come', 'die', 'catastroph', 'death', 'would', 'rather', 'smash', 'phone', 'phone', 'even', 'insur', 'best', 'part', 'mayb', 'samsung', 'carrier', 'bloatwar', 'even', 'phone', 'faster', 'batteri', 'life', 'better', 'expens', 'one', 'blu', 'fan', 'sure', 'make', 'sure', 'check', 'featur', 'buy', 'one', 'need', 'guy', 'make', 'good', 'product', 'need', 'download', 'app', 'rais', 'volum', 'sound', 'music', 'big', 'deal'], ['love', 'blue', 'dash', 'nice', 'phone'], ['good'], ['phone', 'amaz', 'price', 'exceed', 'expect'], ['nice'], ['ni', 'dam', 'good'], ['good'], ['great', 'purchas', 'quick', 'deliveri', 'thank'], ['phone', 'becam', 'lock', 'servic'], ['great', 'phone'], ['nice', 'product'], ['nice'], ['love'], ['love', 'love'], ['not', 'impress', 'slow', 'dr', 'appt', 'camera', 'listen', 'review'], ['first', 'smartphon', 'much', 'research', 'perfect', 'fit', 'price', 'featur', 'advertis'], ['wonder', 'use', 'jamaica', 'problem'], ['terribl'], ['love', 'phone', 'size', 'work'], ['actual', 'wrong', 'yellow', 'wrong', 'model', 'much', 'headach', 'return'], ['great', 'phone', 'love', 'complaint', 'got', 'not', 'lot', 'memori', 'everytim', 'tri', 'download', 'someth', 'say', 'not', 'enough', 'space'], ['overal', 'good', 'phone', 'like', 'big', 'could', 'see', 'letter', 'one', 'thing', 'hard', 'hear', 'talk', 'phone', 'not', 'loud'], ['awesom', 'phone', 'price', 'complaint'], ['great', 'phone', 'love'], ['great', 'phone', 'love', 'complaint', 'got', 'not', 'lot', 'memori', 'everytim', 'tri', 'download', 'someth', 'say', 'not', 'enough', 'space'], ['bought', 'phone', 'mum', 'realli', 'love', 'size', 'phone', 'stay', 'facebook', 'whatup', 'name'], ['excel'], ['return', 'type', 'small', 'screen', 'key', 'difficult'], ['bought', 'phone', 'not', 'work', 'metro', 'pcs', 'phone', 'also', 'begin', 'chip', 'around', 'top', 'corner', 'howev', 'featur', 'describ', 'l'], ['phone', 'great', 'loud', 'previous', 'phone', 'cubot', 'found', 'quiet', 'bought', 'phone', 'reason', 'small', 'music', 'phone', 'happi', 'width', 'find', 'phone', 'wide', 'use', 'sound', 'wonder', 'surpris', 'look', 'play', 'music', 'phone', 'great', 'choic', 'wish', 'nice', 'silicon', 'cover', 'back', 'tho'], ['excel'], ['great'], ['bad', 'phone', 'reboot', 'constant', 'custom', 'servic', 'bad', 'one', 'respons', 'everi', 'time', 'hard', 'reset'], ['good'], ['excel'], ['batteri', 'run', 'fast', 'price', 'cheap', 'charg', 'everyday'], ['not', 'buy', 'product', 'thought', 'great', 'first', 'screen', 'went', 'complet', 'white', 'line', 'streak', 'bare', 'see', 'screen', 'store', 'vehicl', 'coupl', 'month', 'emerg', 'use', 'use', 'week', 'white', 'screen', 'streak', 'happen', 'poor', 'devic'], ['sound', 'set', 'poor', 'low', 'even', 'i', 'speaker', 'headset'], ['bought', 'spare', 'phone', 'gave', 'famili', 'member', 'sinc', 'lost', 'cell', 'work', 'pretti', 'good', 'cheap', 'work', 'phone', 'basic', 'not', 'demand', 'data', 'person', 'work', 'good', 'camera', 'cheap', 'want', 'buck', 'b', 'use', 'differ', 'type', 'chip', 'countri', 'work', 'good', 'overal'], ['travel', 'caribbean', 'phone', 'work', 'buy', 'qualiti', 'issu', 'recommend'], ['googd'], ['bought', 'wife', 'kept', 'tell', 'not', 'want', 'smartphon', 'although', 'continu', 'amaz', 'know', 'everyth', 'time', 'wrong', 'love'], ['excel', 'seller', 'recomend'], ['positivo'], ['easi', 'use'], ['phone', 'give', 'problem', 'keep', 'turn', 'back', 'turn', 'back'], ['excel'], ['great', 'phone', 'money'], ['ok'], ['keep', 'mind', 'idol', 'need'], ['love', 'complic', 'peool', 'hear', 'sometim'], ['excel'], ['great', 'budget', 'android', 'phone', 'especi', 'look', 'someth', 'temporarili', 'replac', 'mainstream', 'android', 'devic', 'like', 'samsung', 'motorola', 'overal', 'work', 'without', 'problem', 'run', 'fair', 'smooth', 'howev', 'phone', 'not', 'go', 'devic', 'stream', 'video', 'brows', 'web', 'although', 'not', 'find', 'better', 'option'], ['okay', 'phone', 'not', 'expect', 'not', 'worth', 'phone', 'touch', 'screen', 'stop', 'work', 'i', 'tri', 'everyth', 'fix', 'wonder', 'price', 'keep', 'drop'], ['would', 'given', 'minus', 'star', 'not', 'one', 'got', 'phone', 'daughter', 'day', 'return', 'time', 'day', 'way', 'screen', 'turn', 'white', 'kid', 'not', 'phone', 'buck', 'got', 'use', 'phone', 'day', 'great', 'dash', 'c', 'gsm', 'unlock', 'cell', 'phone', 'white'], ['good'], ['happi'], ['good', 'phone', 'price', 'bought', 'backup', 'travel', 'countri', 'could', 'buy', 'price', 'iphon', 'galaxi'], ['good', 'phone', 'good', 'app', 'featur', 'recommend', 'i', 'would', 'given', 'star', 'fm', 'beginn', 'replac', 'phone'], ['good'], ['super', 'slow', 'cellphon', 'screen', 'resolut', 'terribl', 'camera', 'piec', 'junk', 'recept', 'signal', 'joke', 'posit', 'point', 'front', 'speaker', 'pleas', 'save', 'money', 'buy', 'someth', 'better'], ['nice', 'phone', 'price', 'paid', 'would', 'like', 'phone', 'cover', 'deal'], ['right', 'price'], ['like'], ['lock', 'phone', 'satan'], ['receiv', 'phone', 'damag', 'screen', 'requir', 'reimburs'], ['ok'], ['final', 'today', 'open', 'packag', 'phone', 'not', 'continu', 'not', 'instal', 'applic', 'first', 'time', 'someth', 'like', 'happen', 'purchas'], ['work', 'well'], ['not', 'expect', 'blu', 'product', 'clear', 'budget', 'phone'], ['excel', 'product', 'thank'], ['yess'], ['great'], ['happi', 'buy'], ['excel'], ['excel', 'thank', 'venezuela'], ['excelent'], ['phone', 'came', 'problem', 'access', 'camera', 'not', 'accomplish', 'connect', 'wifi', 'network', 'could', 'not', 'use', 'caus', 'wast', 'money'], ['not', 'work', 'proper'], ['love'], ['recommend'], ['recommend'], ['perfect', 'phone', 'send', 'cuba', 'love', 'one', 'say', 'best', 'recept', 'ever', 'high', 'recommend'], ['perfect'], ['not', 'bad', 'good', 'phone'], ['excel', 'phone', 'qualiti', 'deliv', 'time', 'hassl', 'point'], ['excelent'], ['bien', 'excelent'], ['put', 'sd', 'card', 'instal', 'app', 'thing', 'practic', 'unus', 'instal', 'gmail', 'hangout', 'app', 'hangout', 'requir', 'googl', 'play', 'servic', 'updat', 'would', 'instal', 'intern', 'memori', 'not', 'sd', 'card', 'like', 'free', 'intern', 'memori', 'quick', 'consum', 'app', 'data', 'cach', 'use', 'phone', 'minut', 'phone', 'sluggish', 'crash', 'lot', 'manufactur', 'need', 'put', 'intern', 'memori', 'even', 'big', 'sd', 'card', 'unus', 'purpos'], ['good'], ['problem', 'love', 'happi'], ['like', 'design', 'phone', 'not', 'enough', 'memori'], ['good'], ['muy', 'bueno'], ['buena'], ['phone', 'work', 'great'], ['phone', 'frozen', 'blu', 'logo', 'longer', 'work', 'bought', 'item', 'littl', 'month', 'ago', 'alreadi', 'damag', 'would', 'not', 'recommend', 'buy', 'phone', 'not', 'even', 'new', 'android', 'user', 'blu', 'better', 'option', 'one'], ['good', 'enough', 'phone', 'everyday', 'use', 'nice', 'simpl', 'batteri', 'remov'], ['excel'], ['bought', 'product', 'recent', 'problem', 'keep', 'say', 'sim', 'card', 'i', 'tri', 'lot', 'not', 'work', 'suck', 'dissatisfi'], ['dislik', 'blu', 'phone'], ['excel', 'product', 'thank'], ['excelent'], ['great', 'servic', 'satisfi', 'thank'], ['nice'], ['excel', 'product'], ['excel'], ['recomendado'], ['good'], ['exel'], ['great', 'cheap', 'need', 'phone', 'intern', 'use', 'work', 'great'], ['realli', 'cute'], ['good'], ['excelent'], ['not', 'touch', 'product', 'even', 'worth', 'toy'], ['celular', 'economico', 'perod', 'graneficiencia'], ['disappoint', 'product'], ['excelent'], ['crappi', 'product', 'not', 'find', 'way', 'sync', 'contact', 'googl', 'account', 'sht', 'simpli', 'not', 'let', 'spent', 'hour', 'research', 'web', 'not', 'found', 'possibl', 'solut'], ['friend', 'love', 'excel', 'pfone'], ['perfecto'], ['good'], ['excel'], ['not', 'expect', 'anyth', 'amaz', 'phone', 'someth', 'use', 'micro', 'sd', 'card', 'not', 'seem', 'fit', 'put', 'wrong', 'know', 'without', 'one', 'not', 'much', 'space', 'today', 'kept', 'get', 'memori', 'low', 'messag', 'delet', 'facebook', 'messeng', 'also', 'order', 'better', 'phone', 'everyth', 'need', 'talk', 'text', 'not', 'need', 'anyth', 'els', 'ok'], ['phone', 'look', 'good', 'offer', 'look', 'phone', 'make', 'call', 'phone', 'app', 'fanci', 'stuff', 'phone', 'not'], ['muy', 'buen', 'producto'], ['todo', 'bien'], ['cell', 'not', 'turn', 'connect', 'appear', 'load', 'turn', 'said', 'bateri', 'bad'], ['love'], ['good'], ['go'], ['excel', 'product'], ['sent', 'present', 'friend', 'love'], ['phone', 'expect', 'mom', 'happi'], ['phone', 'hurt', 'next', 'day', 'i', 'not', 'happi'], ['good'], ['excel', 'seller', 'recommend'], ['excelent'], ['nice', 'good', 'size', 'hand'], ['excel'], ['work', 'great', 'send', 'one', 'anoth', 'countri', 'mexico', 'work', 'perfect', 'fine', 'carri', 'issu', 'problem', 'kind'], ['excel'], ['yess'], ['good', 'product', 'not', 'like', 'camera'], ['good', 'product', 'thank'], ['not', 'expect', 'anyth', 'amaz', 'phone', 'someth', 'use', 'micro', 'sd', 'card', 'not', 'seem', 'fit', 'put', 'wrong', 'know', 'without', 'one', 'not', 'much', 'space', 'today', 'kept', 'get', 'memori', 'low', 'messag', 'delet', 'facebook', 'messeng', 'also', 'order', 'better', 'phone', 'everyth', 'need', 'talk', 'text', 'not', 'need', 'anyth', 'els', 'ok'], ['small', 'return'], ['phone', 'came', 'problem', 'access', 'camera', 'not', 'accomplish', 'connect', 'wifi', 'network', 'could', 'not', 'use', 'caus', 'wast', 'money'], ['pretti', 'nice', 'someth', 'small', 'young', 'kid'], ['excelent', 'producto'], ['nice', 'entri', 'level', 'android', 'devic'], ['not', 'work'], ['good'], ['great', 'devic', 'i', 'recommend', 'anytim', 'price', 'qualiti'], ['cheap', 'not', 'expect', 'much', 'price', 'not', 'function', 'basic', 'android', 'phone', 'exact', 'meant'], ['great'], ['love', 'phone', 'right', 'size', 'purs', 'go', 'unlock', 'phone', 'go', 'countri', 'good'], ['cell', 'went', 'wrong', 'run', 'week', 'half', 'load', 'lit', 'screen', 'blu', 'blu', 'say', 'not', 'happen', 'complet', 'turn', 'contact', 'seller'], ['nice'], ['excel'], ['weak', 'antenna', 'sim', 'card', 'not', 'connect', 'network', 'alway', 'search', 'mode', 'return', 'not', 'recommend', 'pay', 'get', 'overal', 'not', 'work'], ['perfet'], ['good'], ['love'], ['thank', 'excel'], ['pruduct', 'fine'], ['excent', 'product'], ['last', 'month', 'softwar', 'issu', 'tri', 'get', 'android', 'recoveri', 'mode', 'chines', 'unlik', 'usual', 'chines', 'phone', 'recoveri', 'mode', 'miss', 'option', 'wipe', 'reinstal', 'figur', 'even', 'though', 'screen', 'shot', 'googl', 'not', 'match', 'last', 'week', 'minim', 'app', 'freez', 'stuck', 'blu', 'qualiti', 'not', 'memori', 'honest', 'low', 'put', 'app', 'sd', 'card', 'not', 'elimin', 'phone', 'lessen', 'burden', 'everyth', 'els', 'passabl', 'better', 'save', 'get', 'moto', 'e', 'get', 'moto', 'g'], ['phone', 'work', 'good', 'one', 'half', 'month', 'crash', 'unfortun', 'longer', 'elig', 'return', 'wast', 'money'], ['excelent'], ['hello', 'order', 'pink', 'color', 'phone', 'phone', 'charger', 'cabl', 'not', 'work', 'email', 'back', 'thank'], ['excelent', 'producto', 'llego', 'perfecto', 'rápido', 'venezuela', 'se', 'recomienda'], ['ok'], ['right'], ['nice', 'phone'], ['mess', 'within', 'month', 'four', 'month', 'not', 'even', 'turn', 'never', 'buy', 'brand'], ['good', 'cute', 'phone', 'basic', 'run', 'memori', 'first', 'use', 'beacus', 'intern', 'mb', 'must', 'buy', 'sd', 'card', 'order', 'instal', 'app', 'make', 'photo', 'work', 'normal', 'size', 'sim', 'small', 'size', 'feel', 'plastic', 'good', 'thing', 'not', 'want', 'ariund', 'expens', 'phone', 'want', 'basic', 'featur', 'app', 'go'], ['chever'], ['bien'], ['good'], ['good', 'new', 'product', 'accord', 'purchas'], ['actual', 'would', 'like', 'return', 'quit', 'work', 'within', 'first', 'week', 'use'], ['flash', 'camora', 'work'], ['good', 'product', 'not', 'like', 'camera'], ['excelent'], ['exel', 'describ', 'love', 'amazon', 'prise', 'qualiti', 'mani', 'pleasur', 'shop', 'amazon'], ['excel'], ['excelent', 'producto'], ['yes', 'phone', 'littl', 'slow', 'noth', 'horribl', 'though', 'storag', 'super', 'scarc', 'add', 'micro', 'sd', 'card', 'gb', 'price', 'still', 'pretti', 'sweet', 'deal', 'nice', 'littl', 'extra', 'fm', 'radio', 'receiv', 'two', 'sim', 'card', 'slow', 'batteri', 'replac', 'unlik', 'mani', 'recent', 'high', 'end', 'phone', 'come', 'pair', 'earphon', 'well', 'design', 'wall', 'charger', 'tini', 'led', 'not', 'think', 'charger', 'come', 'high', 'end', 'phone', 'usual', 'charger', 'standard', 'micro', 'usb', 'phone', 'feel', 'lot', 'like', 'slight', 'smaller', 'version', 'nexus', 'year', 'i', 'go', 'use', 'work', 'phone', 'sync', 'work', 'account', 'check', 'email', 'emerg', 'turn', 'want', 'realli', 'focus', 'person', 'life', 'low', 'price', 'mean', 'not', 'feel', 'sorri', 'lose', 'break', 'still', 'think', 'pretti', 'good', 'deal', 'remov', 'one', 'star', 'i', 'realli', 'find', 'phone', 'littl', 'slow', 'daili', 'even', 'light', 'usag'], ['bought', 'phone', 'trip', 'bermuda', 'easi', 'use', 'intellig', 'use', 'data', 'download', 'precis', 'not', 'eat', 'data', 'inexpens', 'use'], ['got', 'parent', 'happi', 'got', 'app', 'instal', 'whatsapp', 'tango', 'facebook', 'like'], ['excelent'], ['excel', 'product'], ['love', 'littl', 'enough', 'hand', 'over'], ['not', 'impress'], ['perfect'], ['excelent'], ['touch', 'screen', 'sensit', 'held', 'ear', 'hit', 'key', 'continu', 'would', 'not', 'purchas', 'also', 'end', 'hang', 'peopl', 'head', 'cheek', 'touch', 'correct', 'button'], ['recomendado'], ['excelent', 'producto'], ['nice', 'slim', 'phone', 'easi', 'use'], ['excelent'], ['good', 'condit'], ['buenisimo'], ['excelent'], ['second', 'cell', 'phone', 'android', 'system', 'good', 'price'], ['like'], ['gift', 'mother', 'expect', 'good', 'phone', 'work', 'whith', 'movilnet', 'venezuela', 'problem'], ['phone', 'not', 'work', 'proper', 'get', 'stuck', 'not', 'even', 'turn', 'reset', 'bad', 'got', 'micro', 'sd', 'not', 'memori', 'feel', 'asham', 'gift', 'realli', 'thought', 'good', 'phone', 'give', 'dissapoint'], ['good'], ['excelent'], ['excel', 'fast', 'safe', 'qualiti'], ['yess'], ['good'], ['excel', 'product'], ['love', 'neat', 'not', 'want', 'bigger', 'version', 'want', 'someth', 'messag', 'like', 'whatsapp'], ['work', 'terribl', 'like', 'free', 'data', 'spent', 'phone', 'i', 'clear', 'not', 'tri', 'pay', 'extra', 'waay', 'older'], ['recomendado'], ['ok'], ['perfecto'], ['memori', 'small', 'got', 'sell', 'get', 'updat', 'version'], ['respons', 'salesman', 'recommend'], ['genial'], ['not', 'far', 'sister', 'say', 'ok', 'not', 'enough', 'memori'], ['good', 'phone'], ['work', 'perfect', 'daughter'], ['bueno'], ['grate', 'phone'], ['excelent'], ['excel'], ['good'], ['not', 'work', 'well'], ['pleas', 'product'], ['bare', 'enough', 'ram', 'run', 'os', 'messeng', 'load', 'three', 'app', 'start', 'crash', 'reset', 'phone', 'back', 'factori', 'spec', 'use'], ['get', 'pay'], ['not', 'buy', 'phone', 'not', 'anyth', 'phone'], ['drop', 'call'], ['budget', 'tough', 'phone', 'nice'], ['overal', 'phone', 'cheap', 'get', 'paid', 'not', 'expect', 'good', 'smartphon', 'intern', 'memori', 'low', 'realli', 'not', 'download', 'app', 'unless', 'root', 'whatsapp', 'work', 'fine', 'got', 'pictur', 'qualiti', 'ok', 'well', 'forget', 'web', 'surf', 'even', 'good', 'connect', 'phone'], ['bueno'], ['excel'], ['phone', 'drop', 'not', 'get'], ['phone', 'use', 'hand', 'time', 'batteri', 'explod', 'knew', 'get', 'small', 'memori', 'thought', 'would', 'enough', 'run', 'app', 'two', 'nope', 'download', 'facebook', 'left', 'without', 'space', 'fo', 'run', 'pic', 'app', 'clear', 'text', 'messag', 'etc', 'still', 'go', 'gave', 'mom', 'not', 'interest', 'app', 'ill', 'buy', 'tween', 'better', 'phone'], ['receiv', 'work', 'well', 'good', 'condit', 'venezuela'], ['easi', 'find', 'plan', 'even', 'sim', 'card', 'purchas', 'phone', 'still', 'not', 'allow', 'son', 'take', 'pictur', 'download', 'game'], ['phone', 'two', 'slow'], ['disapoint'], ['bought', 'phone', 'not', 'work', 'not', 'recommend', 'articl'], ['light', 'cheap', 'feel', 'good', 'price'], ['bad', 'phone', 'not', 'recommend', 'buy', 'better', 'option', 'price', 'rang', 'worst', 'problem', 'seem', 'intern', 'memori', 'use', 'alway', 'start', 'servic', 'keep', 'cpu', 'use', 'not', 'keep', 'set', 'date', 'time', 'not', 'abl', 'keep', 'number', 'app', 'use', 'previous', 'phone'], ['not', 'silver', 'poor', 'camera', 'slow', 'respond'], ['god', 'aw', 'batteri', 'life', 'charg', 'time', 'day', 'not', 'even', 'use', 'run', 'android', 'ever', 'noth', 'work', 'save', 'money'], ['great', 'phone', 'money', 'short', 'memori', 'ad', 'sd', 'card', 'extra', 'app', 'storag'], ['nice', 'phone', 'friend', 'enjoy', 'phone', 'back', 'jamaica'], ['good', 'littl', 'phone', 'great', 'bang', 'buck', 'android', 'os', 'analog', 'tv', 'receiv', 'lol', 'built', 'rest', 'phone', 'work', 'well', 'starter', 'phone'], ['great', 'buy'], ['excelent'], ['disappoint', 'not', 'meet', 'expect', 'tv', 'recept', 'poor', 'storag', 'limit', 'even', 'card'], ['love'], ['good'], ['exel', 'product'], ['entir', 'phone', 'disgustin', 'function', 'use'], ['bueno'], ['love', 'work', 'expect', 'arriv', 'good', 'time'], ['bien'], ['nice'], ['need', 'unlock', 'sim', 'card', 'phone', 'trip', 'costa', 'rica', 'read', 'review', 'posit', 'negat', 'decid', 'short', 'term', 'text', 'call', 'email', 'phone', 'would', 'not', 'not', 'even', 'close', 'addit', 'negat', 'review', 'add', 'antenna', 'phone', 'realli', 'realli', 'weak', 'never', 'could', 'make', 'phone', 'call', 'best', 'bar', 'call', 'not', 'go', 'never', 'manag', 'get', 'text', 'get', 'email', 'work', 'unfortun', 'could', 'send', 'email', 'sit', 'within', 'feet', 'router', 'oh', 'yeah', 'batteri', 'life', 'not', 'ok', 'i', 'exagger', 'not', 'use', 'day', 'two', 'forget', 'turn', 'wi', 'fi', 'got', 'coupl', 'hour'], ['sister', 'like'], ['phone', 'slow', 'open', 'app', 'go', 'onlin', 'trulli', 'dissapoint', 'press', 'realli', 'hard', 'touch', 'screen', 'work', 'even', 'turn', 'lock', 'unlock', 'screen', 'work'], ['great', 'phone'], ['excel'], ['phone', 'small', 'cute', 'colour', 'rich', 'bright', 'love', 'fact', 'hold', 'whole', 'sim', 'card', 'mini', 'sim', 'card', 'work', 'perfect', 'fine', 'network', 'jamaica'], ['excelent'], ['excelent', 'gracia'], ['easi', 'access'], ['not', 'use', 'yet', 'phone', 'check', 'memori', 'see', 'use', 'storag', 'free', 'download', 'googl', 'play', 'not', 'mb', 'ram', 'advertis', 'even', 'mb', 'oversight', 'not', 'gotten', 'base', 'go', 'get', 'get', 'flip', 'use', 'micro', 'sd', 'card', 'certain', 'piec', 'softwar', 'not', 'sd', 'card', 'though', 'unless', 'like', 'manag', 'memori', 'time', 'spend', 'littl', 'money', 'get', 'memori'], ['headphon', 'screen', 'protector', 'came', 'box'], ['bought', 'gift', 'person', 'like', 'much'], ['order', 'mother', 'small'], ['buen', 'articulo'], ['phone', 'exact', 'describ', 'arriv', 'perfect', 'condit', 'time', 'manner'], ['overal', 'phone', 'cheap', 'get', 'paid', 'not', 'expect', 'good', 'smartphon', 'intern', 'memori', 'low', 'realli', 'not', 'download', 'app', 'unless', 'root', 'whatsapp', 'work', 'fine', 'got', 'pictur', 'qualiti', 'ok', 'well', 'forget', 'web', 'surf', 'even', 'good', 'connect', 'phone'], ['good'], ['excel', 'product'], ['good'], ['nice', 'phone', 'wat', 'good', 'busin'], ['pleas', 'purchas'], ['love'], ['nice'], ['good', 'phone', 'batteri', 'expand', 'within', 'week', 'result', 'not', 'stay', 'charg', 'coupl', 'hour', 'would', 'not', 'recommend', 'blu', 'use', 'good', 'studio', 'year', 'terribl', 'custom', 'servic', 'terribl', 'phone', 'not', 'anyth', 'show', 'pictur', 'damag', 'caus', 'batteri', 'expand', 'say', 'noth', 'batteri', 'liter', 'fall', 'avoid', 'avoid', 'avoid', 'avoid', 'pleas', 'avoid', 'not', 'buy', 'phone', 'kid', 'anyon', 'easili', 'blow', 'hand'], ['excel', 'phone', 'fast'], ['could', 'zero', 'phone', 'not', 'compat', 'att', 'even', 'tho', 'messag', 'seller', 'everyth', 'not', 'great', 'pictur', 'horribl', 'batteri', 'life', 'almost', 'great', 'color', 'cute'], ['good'], ['garbag', 'brick', 'factori', 'wireless', 'updat', 'thing', 'dinosaur'], ['nice', 'phone', 'work', 'good'], ['limit', 'lot', 'thing', 'like', 'creat', 'album', 'pictur', 'download', 'certain', 'app', 'sometim', 'difficult', 'slide', 'tap', 'item', 'accept', 'game', 'app', 'phone', 'not'], ['updat', 'review', 'purchas', 'phone', 'novemb', 'work', 'great', 'month', 'start', 'not', 'keep', 'track', 'time', 'last', 'week', 'not', 'charg', 'not', 'recommend', 'phone', 'brand', 'stay', 'away', 'far', 'away'], ['love'], ['like'], ['text', 'littl', 'bit', 'challeng', 'alway', 'end', 'wrong', 'letter'], ['outsid', 'look', 'cool', 'bold', 'phone', 'skip', 'go', 'slow', 'camera', 'skip', 'dark', 'languag', 'switch', 'not', 'go', 'back', 'use', 'youtub', 'video', 'ship', 'great', 'phone', 'condit', 'excel', 'mean', 'could', 'leas', 'paid', 'cool', 'color'], ['great', 'gift', 'husband'], ['sent', 'back', 'two', 'small'], ['good'], ['honest', 'phone', 'virtual', 'unus', 'bought', 'use', 'travel', 'abroad', 'could', 'get', 'foreign', 'sim', 'card', 'liter', 'thing', 'want', 'use', 'data', 'look', 'thing', 'not', 'wifi', 'rare', 'work', 'slow', 'charg', 'specif', 'posit', 'die', 'like', 'hour', 'complet', 'worthless'], ['good'], ['cell', 'arriv', 'perfect', 'condit', 'work', 'well'], ['love'], ['phone', 'horribl', 'work', 'day', 'start', 'go', 'slower', 'slower', 'keyboard', 'not', 'work', 'correct', 'either', 'phone', 'week', 'wish', 'could', 'get', 'refund'], ['perfect', 'niec', 'would', 'not', 'buy', 'adult', 'use'], ['receiv', 'phone', 'today', 'i', 'impress', 'quailti', 'phone', 'smasung', 'note', 'love', 'phone', 'right', 'samsung', 'screen', 'tad', 'bit', 'smaller', 'overal', 'great', 'phone', 'definit', 'get', 'kid', 'kind', 'phone', 'soon', 'price', 'excel', 'not', 'go', 'wrong', 'tmobil', 'servic', 'provid'], ['bought', 'phone', 'replac', 'mom', 'phone', 'prefer', 'smart', 'phone', 'load', 'app', 'phone', 'like', 'help', 'keep', 'track', 'also', 'like', 'music', 'could', 'easili', 'load', 'new', 'song', 'remot', 'use', 'android', 'howev', 'one', 'criteria', 'use', 'phone', 'possibl', 'root', 'far', 'known', 'way', 'root', 'lollipop', 'version', 'done', 'research', 'ahead', 'time', 'would', 'known', 'would', 'opt', 'differ', 'reason', 'phone', 'inexpens', 'opt', 'leav', 'sensor', 'phone', 'mom', 'base', 'gsm', 'arena', 'phone', 'proxim', 'sensor', 'gps', 'potenti', 'mean', 'other', 'like', 'gyroscop', 'orient', 'pressur', 'temperatur', 'sensor', 'miss', 'not', 'work', 'proper', 'addit', 'teamview', 'quicksupport', 'not', 'remot', 'control', 'phone', 'due', 'firmwar', 'i', 'not', 'awar', 'general', 'lollipop', 'problem', 'must', 'specif', 'phone', 'sinc', 'got', 'phone', 'old', 'mom', 'pretti', 'much', 'deal', 'breaker', 'not', 'help', 'phone', 'remot', 'problem', 'phone', 'need', 'load', 'configur', 'app', 'make', 'phone', 'better', 'not', 'need', 'ask', 'neighbor', 'someon', 'mom', 'would', 'not', 'abl', 'addit', 'mom', 'problem', 'read', 'small', 'print', 'thought', 'could', 'use', 'googl', 'drive', 'scan', 'enlarg', 'print', 'unfortun', 'pic', 'close', 'up', 'came', 'fuzzi', 'think', 'read', 'somewher', 'autofocus', 'camera', 'whatev', 'reason', 'definit', 'disappoint', 'way', 'take', 'macro', 'shot', 'updat', 'general', 'camera', 'seem', 'major', 'problem', 'seem', 'orient', 'wrong', 'lack', 'macro', 'focus', 'anoth', 'deal', 'breaker'], ['love', 'phone', 'everyth', 'descript', 'say', 'i', 'close', 'month', 'almost', 'not', 'encount', 'technic', 'issu', 'realli', 'easi', 'set', 'use', 'scard', 'tmobil', 'interrupt', 'servic', 'complaint', 'bought', 'gold', 'phone', 'week', 'got', 'notic', 'back', 'phone', 'right', 'blu', 'initi', 'seem', 'chang', 'color', 'gold', 'like', 'dark', 'bronz', 'tarnish', 'look', 'like', 'two', 'distinct', 'line', 'see', 'realli', 'well', 'first', 'thought', 'someth', 'tri', 'wipe', 'would', 'not', 'come', 'definit', 'someth', 'way', 'made', 'back', 'phone', 'kind', 'bummer', 'not', 'huge', 'issu', 'hope', 'not', 'continu'], ['far', 'good'], ['nice'], ['excelent'], ['relli', 'nice', 'phone', 'expect', 'less', 'price', 'wish', 'batteri', 'littl', 'larger', 'price', 'good', 'special', 'screen', 'not', 'big', 'resolut', 'recomend', 'first', 'phone', 'kid', 'realli', 'good'], ['work', 'great'], ['great', 'phone', 'great', 'price', 'love', 'love', 'love', 'phone', 'buy', 'two', 'great', 'record', 'phone', 'call', 'everyth', 'love', 'phone'], ['not', 'good', 'intern', 'phone', 'not', 'work', 'wast', 'cash'], [], ['brought', 'phone', 'yr', 'old', 'daughter', 'play', 'made', 'feel', 'bad', 'pay', 'htc', 'wish', 'known', 'phone', 'cheap', 'good', 'qualiti', 'phone', 'not', 'hold', 'alot', 'storag', 'high', 'recommend', 'purchas', 'memori', 'card', 'download', 'googl', 'backup', 'store', 'photo', 'video', 'clear', 'space', 'phone', 'realli', 'nice', 'phone', 'nice', 'qualiti', 'charger', 'price', 'realli', 'not', 'beat'], ['phone', 'awesom', 'practic', 'thing', 'high', 'end', 'expens', 'phone', 'would', 'low', 'cost', 'tune', 'phone', 'initi', 'bright', 'pictur', 'qualiti', 'great', 'could', 'bit', 'brighter', 'sunlight', 'door', 'light', 'back', 'phone', 'nice', 'feel', 'speaker', 'loud', 'enough', 'music', 'not', 'phone', 'call', 'not', 'come', 'earphon', 'disappoint', 'phone', 'batteri', 'charger', 'charg', 'batteri', 'everi', 'night', 'though', 'batteri', 'goe', 'quick', 'lot', 'stuff', 'app', 'run', 'fulli', 'charg', 'within', 'hrs', 'fair', 'fast', 'fit', 'speed', 'effici', 'boost', 'phone', 'clear', 'cach', 'ram', 'need', 'addit', 'memori', 'music', 'pic', 'sd', 'memori', 'card', 'would', 'good'], ['nice', 'phone', 'screen', 'resolut', 'awesom', 'blown', 'away', 'crisp', 'bright', 'screen', 'come', 'lollipop', 'surpris', 'thin', 'budget', 'phone'], ['purchas', 'phone', 'daughter', 'love', 'featur', 'smartphon', 'much', 'cheaper', 'price', 'phone', 'come', 'unlock', 'put', 'sim', 'card', 'good', 'go', 'not', 'issu', 'set', 'servic', 'connect', 'home', 'add', 'sd', 'card', 'gain', 'space', 'extra', 'storag', 'download', 'sever', 'game', 'not', 'issu', 'android', 'phone', 'googl', 'play', 'store', 'alreadi', 'instal', 'well', 'well', 'known', 'app', 'realli', 'like', 'blu', 'brand', 'second', 'phone', 'i', 'purchas', 'tablet', 'well', 'rate', 'right', 'well', 'known', 'brand', 'screen', 'realli', 'great', 'want', 'phone', 'like', 'play', 'game', 'daughter', 'ip', 'technolog', 'screen', 'nice', 'move', 'phone', 'around', 'game', 'lol', 'also', 'featur', 'dual', 'camera', 'bluetooth', 'tool', 'one', 'phone', 'not', 'disappoint', 'i', 'seen', 'review', 'negat', 'feedback', 'work', 'cell', 'phone', 'busi', 'year', 'ago', 'would', 'come', 'across', 'batch', 'issu', 'everi', 'awhil', 'whatev', 'reason', 'not', 'get', 'discourag', 'purchas', 'phone', 'happi', 'purchas'], ['phone', 'junk', 'bought', 'black', 'one', 'white', 'one', 'neither', 'made', 'two', 'month', 'one', 'heat', 'charg', 'crack', 'screen', 'white', 'one', 'tonight', 'heat', 'phone', 'hear', 'turn', 'not', 'see', 'screen', 'not', 'fix'], ['brother', 'love'], ['worst', 'phone', 'ever', 'hello', 'allow', 'text', 'phone', 'call', 'part', 'time', 'memori', 'not', 'good', 'either', 'not', 'impress'], ['first', 'want', 'start', 'say', 'lot', 'research', 'decid', 'read', 'review', 'said', 'not', 'understand', 'negat', 'review', 'abl', 'add', 'app', 'want', 'put', 'sd', 'card', 'not', 'run', 'space', 'one', 'could', 'not', 'not', 'take', 'much', 'space', 'anyway', 'ok', 'love', 'color', 'clariti', 'screen', 'size', 'fact', 'light', 'camera', 'nice', 'not', 'find', 'anyth', 'wrong', 'clariti', 'batteri', 'life', 'not', 'bad', 'nice', 'phone', 'perfect', 'look', 'better', 'expect', 'given', 'low', 'price'], ['price', 'good', 'phone'], ['love', 'phone', 'bought', 'son', 'jamaica', 'know', 'go', 'love', 'i', 'send', 'pic', 'thank'], ['relli', 'nice', 'phone', 'expect', 'less', 'price', 'wish', 'batteri', 'littl', 'larger', 'price', 'good', 'special', 'screen', 'not', 'big', 'resolut', 'recomend', 'first', 'phone', 'kid', 'realli', 'good'], ['great', 'item'], ['not', 'unlock', 'claim', 'seller', 'i', 'tri', 'differ', 'cellular', 'provid', 'without', 'success', 'stuck', 'new', 'worthless', 'phone', 'unfair', 'cruel'], ['storag', 'quick', 'reduc', 'gb', 'os', 'googl', 'app', 'updat', 'instal', 'app', 'game', 'fill', 'storag', 'space', 'point', 'phone', 'shut', 'not', 'check', 'mail', 'not', 'play', 'singl', 'game', 'batteri', 'issu', 'well', 'sit', 'standbi', 'day', 'batteri', 'turn', 'not', 'buy', 'phone'], ['nice'], ['blu', 'happi'], ['serv', 'purpos'], ['excel'], ['came', 'without', 'batteri', 'not', 'satisfi'], ['great', 'product'], ['phone', 'look', 'realli', 'nice', 'month', 'noth', 'work', 'not', 'enough', 'intern', 'storag', 'not', 'allow', 'move', 'inform', 'sd', 'card', 'pleas', 'assist', 'make', 'item', 'actual', 'work', 'advic', 'return', 'option', 'thank'], ['camera', 'not', 'good'], ['not', 'realizd', 'not', 'allow', 'download', 'king', 'game', 'pandora'], ['storag', 'extrem', 'low', 'not', 'good', 'valu', 'money', 'regard'], ['phone', 'look', 'nice', 'first', 'day', 'tri', 'call', 'someon', 'phone', 'rang', 'person', 'could', 'not', 'hear', 'tri', 'call', 'other', 'thing', 'disappoint'], ['mom', 'love', 'phone', 'got', 'still', 'learn', 'use', 'great', 'buy'], ['phone', 'batteri', 'drain', 'fast', 'matter', 'adjust', 'screen', 'resolut', 'phone', 'get', 'hot', 'call', 'qualiti', 'poor', 'would', 'not', 'buy', 'phone'], ['phone', 'got', 'wors', 'i', 'batteri', 'life', 'suck', 'not', 'hold', 'charg', 'gps', 'half', 'phone', 'keep', 'eras', 'slow', 'not', 'even', 'mani', 'app', 'download', 'devicewast', 'money'], ['phone', 'work', 'well', 'need', 'backup', 'phone', 'unlock', 'perfect', 'fit'], ['excel'], ['batteri', 'fast', 'full', 'charg'], ['anoth', 'terribl', 'non', 'respons', 'screen', 'blu', 'sever', 'phone', 'year', 'one', 'worst', 'pixel', 'wash', 'screen', 'find', 'redempt', 'need', 'sever', 'tap', 'thing', 'regist', 'whacki', 'scroll', 'sometim', 'end', 'click', 'someth', 'els', 'entir', 'cheap', 'around', 'even', 'light', 'modifi', 'ui', 'buggi', 'want', 'like', 'snazzi', 'color', 'set', 'apart', 'warn', 'potenti', 'custom', 'not', 'recommend', 'blu', 'hd', 'excel', 'screen', 'slim', 'great', 'price', 'blu', 'energi', 'x', 'plus', 'outstand', 'batteri', 'endur', 'better', 'ui', 'build'], ['love', 'phone', 'howev', 'batteri', 'terribl'], ['cool', 'phone', 'great'], ['nice', 'phone'], ['good', 'thank'], ['awesom', 'phone', 'got', 'mom', 'i', 'super', 'happi', 'easi', 'use', 'smartphon', 'construct', 'phone', 'bit', 'delic', 'opinion', 'hope', 'nice', 'case', 'last', 'coupl', 'year', 'overal', 'price', 'work', 'great'], ['bought', 'phone', 'work', 'part', 'even', 'though', 'not', 'use', 'lot', 'app', 'clean', 'constant', 'act', 'glitchi', 'slow', 'switch', 'phone', 'replac', 'phone', 'even', 'wors', 'glitch', 'turn', 'turn', 'volum', 'alarm', 'almost', 'late', 'work', 'take', 'volum', 'vibrat', 'even', 'volum', 'high', 'speak', 'someon', 'phone', 'bare', 'hear', 'hear', 'fine', 'ridicul', 'ask', 'refund'], ['good', 'phone', 'price'], ['kind', 'slow', 'phone', 'total', 'worth', 'money', 'spent'], ['good'], ['long', 'stori', 'short', 'carrier', 'never', 'speak', 'lifetim', 'screw', 'need', 'new', 'afford', 'durabl', 'date', 'phone', 'search', 'final', 'narrow', 'decis', 'blu', 'x', 'plus', 'x', 'mean', 'xtrem', 'awesom', 'moment', 'open', 'packag', 'phone', 'way', 'bigger', 'expect', 'use', 'straight', 'talk', 'gsm', 'sim', 'card', 'set', 'easi', 'also', 'pink', 'love', 'camera', 'let', 'us', 'say', 'sit', 'bed', 'use', 'revers', 'camera', 'see', 'whole', 'bodi', 'qualiti', 'impress', 'price', 'skeptic', 'receiv', 'phone', 'i', 'glad', 'made', 'right', 'choic', 'wait', 'snapchat'], ['phone', 'goe', 'dead', 'turn', 'back', 'organ', 'screen', 'mess', 'move', 'app', 'back', 'spot', 'also', 'ran', 'room', 'ad', 'memori', 'card', 'husband', 'not', 'abl', 'add', 'pictur', 'memori', 'card', 'back', 'everyth', 'factori', 'reset', 'see', 'everyth', 'back', 'would', 'sd', 'card', 'nope', 'pictur', 'gone', 'app', 'still', 'give', 'not', 'happi', 'even', 'though', 'phone', 'week', 'pictur', 'famili', 'visit', 'germani', 'tri', 'put', 'comput', 'would', 'not', 'let', 'could', 'not', 'put', 'social', 'media', 'brother', 'not', 'allow', 'pictur', 'girl', 'gone', 'phone', 'also', 'rare', 'charg', 'take', 'hour', 'turn', 'still', 'also', 'not', 'hold', 'charg', 'goe', 'charg', 'dead', 'within', 'minut'], ['posit'], ['beauti', 'phone', 'not', 'play', 'movi', 'video', 'show', 'still', 'film', 'reel', 'back', 'goe', 'everyth', 'els', 'phone', 'beauti', 'respons', 'hate', 'return'], ['ok', 'phone', 'price', 'not', 'support', 'usb', 'otg', 'devic', 'mean', 'not', 'connect', 'usb', 'stick', 'car', 'comput', 'reader', 'extrrnal', 'dac', 'devic', 'otg', 'support', 'avail', 'elsewher', 'root', 'phone', 'interest', 'sound', 'qualiti', 'headphon', 'not', 'good', 'peopl', 'not', 'ever', 'notic', 'bug', 'drain', 'whole', 'batteri', 'less', 'unless', 'reset', 'phone', 'i', 'not', 'sure', 'os', 'fault', 'app', 'not', 'shadi', 'app'], ['beauti', 'phone', 'good', 'camera', 'work', 'well', 'netflix'], ['bought', 'phone', 'research', 'project', 'i', 'southamerica', 'two', 'major', 'negat', 'minut', 'call', 'phone', 'start', 'not', 'tri', 'use', 'differ', 'sound', 'etc', 'could', 'not', 'fix', 'far', 'i', 'miss', 'work', 'not', 'buy'], ['great'], ['would', 'not', 'recommend', 'buy', 'phone', 'not', 'get', 'wrong', 'screen', 'size', 'featur', 'great', 'rival', 'smartphon', 'dual', 'sim', 'card', 'featur', 'easi', 'set', 'not', 'need', 'help', 'howev', 'day', 'purchas', 'phone', 'stop', 'phone', 'random', 'shut', 'one', 'day', 'matter', 'take', 'batteri', 'switch', 'wall', 'outlet', 'use', 'usb', 'comput', 'instead', 'wall', 'outlet', 'refus', 'charg', 'hour', 'keep', 'plug', 'wall', 'final', 'start', 'charg', 'thing', 'never', 'drop', 'never', 'wet', 'i', 'tri', 'get', 'hold', 'blu', 'talk', 'either', 'give', 'money', 'back', 'simpli', 'replac', 'fix', 'phone', 'luck', 'far', 'buy', 'risk'], ['thank', 'lot', 'perfect', 'love', 'itregard', 'ybelic', 'uzcategui'], ['excel'], ['five', 'star'], ['got', 'phone', 'march', 'phone', 'hot', 'touch', 'like', 'phone', 'except', 'wish', 'intern', 'space', 'not', 'lot', 'excess', 'app', 'pre', 'instal', 'app', 'not', 'remov', 'take', 'lot', 'space'], ['love'], ['price', 'awesom', 'phone', 'stylish', 'bright', 'color', 'good', 'featur', 'camera', 'take', 'great', 'pictur', 'batteri', 'life', 'thing', 'not', 'impress', 'charg', 'everi', 'night', 'i', 'not', 'one', 'constant', 'phone'], ['realli', 'good', 'phone'], ['bought', 'gift', 'peopl', 'bought', 'peopl', 'bought', 'realli', 'happi', 'though', 'week', 'hope', 'get', 'atleast', 'year'], ['devic', 'not', 'last', 'good', 'month', 'start', 'shut', 'final', 'not', 'come'], ['price', 'awesom', 'phone', 'stylish', 'bright', 'color', 'good', 'featur', 'camera', 'take', 'great', 'pictur', 'batteri', 'life', 'thing', 'not', 'impress', 'charg', 'everi', 'night', 'i', 'not', 'one', 'constant', 'phone'], ['excel', 'product', 'thank', 'amazon'], ['everyth', 'expect', 'phone', 'worth', 'price', 'complain', 'instruct', 'pull', 'back', 'cover', 'spent', 'like', 'minut', 'tri', 'figur', 'phone', 'fast', 'batteri', 'last', 'day', 'use', 'camera', 'amaz', 'also', 'front', 'camera', 'not', 'shown', 'everywher', 'batteri', 'mah', 'not', 'mah', 'detail', 'charg', 'not', 'make', 'reboot', 'finali', 'complet', 'charg', 'everyth', 'els', 'amaz', 'screen', 'resolut', 'bright', 'metal', 'back', 'cover', 'accesori', 'dual', 'sim', 'thing', 'love', 'option', 'camera', 'let', 'us', 'use', 'flash', 'lamp', 'sensor', 'adjust', 'easili', 'like'], ['wow', 'goodi', 'yemeni', 'happi'], ['nice', 'phone', 'purchas', 'gift', 'impress', 'dual', 'sim', 'featur', 'come', 'handi'], ['two', 'headphon', 'good'], ['piec', 'use', 'hand', 'free', 'not', 'senior', 'citizen', 'friend'], ['bought', 'daughter', 'good'], ['phone', 'not', 'get', 'servic', 'return'], ['nice', 'phone', 'price'], ['nice', 'phone', 'work', 'well', 'light', 'conveni', 'carri', 'pocket'], ['mother', 'year', 'old', 'purchas', 'item', 'unlock', 'compat', 'att', 'come', 'virtual', 'manual', 'charger', 'someth', 'break', 'easili', 'time', 'goe', 'insert', 'sim', 'card', 'could', 'not', 'get', 'phone', 'not', 'say', 'emerg', 'would', 'not', 'pick', 'network', 'search', 'search', 'detail', 'phone', 'could', 'troubl', 'shoot', 'issu', 'could', 'not', 'find', 'sort', 'tutori', 'phone', 'qualiti', 'phone', 'comput', 'background', 'numer', 'smart', 'phone', 'basic', 'phone', 'pretti', 'knowledg', 'come', 'troubleshoot', 'anyth', 'technic', 'sound', 'advic', 'not', 'purchas', 'phone', 'pleas', 'rememb', 'old', 'get', 'pay'], ['could', 'not', 'get', 'work', 'network'], ['would', 'not', 'work', 'realli', 'love', 'iam', 'look', 'anoth', 'one'], ['not', 'work', 'work', 'return'], ['dead', 'box', 'even', 'charg', 'batteri', 'hour'], ['work', 'fine', 'love', 'larger', 'number'], ['work', 'great', 'dad', 'good', 'phone'], ['not', 'buy', 'phone', 'big', 'button', 'great', 'navig', 'ring', 'around', 'enter', 'button', 'nightmar', 'use', 'kept', 'turn', 'radio', 'good', 'luck', 'turn', 'damn', 'thing', 'task', 'bar', 'ridicul', 'senior', 'tri', 'use', 'icon', 'frame', 'tini', 'tini', 'littl', 'blue', 'outlin', 'imposs', 'see', 'unless', 'look', 'though', 'magnifi', 'glass', 'also', 'two', 'slot', 'sim', 'card', 'fill', 'one', 'insert', 'sim', 'card', 'word', 'still', 'stay', 'screen', 'distract', 'sound', 'qualiti', 'good', 'navig', 'around', 'phone', 'bad', 'thing', 'kill', 'could', 'great', 'littl', 'phone', 'addit', 'tell', 'good', 'big', 'button', 'phone', 'good', 'instruct', 'print', 'size', 'font', 'senior', 'citizen', 'could', 'read', 'worst', 'phone', 'ever', 'bought', 'return', 'immedi'], ['wonder', 'cool', 'look', 'sort', 'art', 'deco', 'bought', 'mom', 'eleg', 'ea', 'use', 'nanogenarian'], ['parent', 'larger', 'button', 'plus', 'phone', 'bummer', 'big', 'problem', 'user', 'guid', 'download', 'guid', 'found', 'line', 'worthless', 'not', 'provid', 'instruct', 'contact', 'compani', 'help', 'either', 'sorri', 'bought', 'one'], ['work', 'great', 'dad', 'good', 'phone'], ['love', 'cell', 'work', 'good'], ['charg', 'batteri', 'made', 'appropri', 'set', 'made', 'call', 'perfect', 'post', 'instal', 'second', 'sim', 'card'], ['gave', 'two', 'star', 'nice', 'look', 'number', 'larg', 'old', 'absolut', 'instruct', 'phone', 'took', 'hour', 'figur', 'one', 'thing', 'get', 'voic', 'mail', 'i', 'iphon', 'user', 'well', 'samsung', 'galaxi', 'user', 'end', 'order', 'anoth', 'flip', 'phone', 'brand', 'current', 'fall', 'apart', 'phone', 'use', 'sever', 'year', 'hard', 'chang', 'nicer', 'look', 'not', 'much', 'learn'], ['complet', 'garbag'], ['radio', 'keep', 'come', 'use', 'direct', 'arrow', 'right', 'left', 'annoy', 'aunt', 'not', 'use'], ['good'], ['pick', 'mother', 'law', 'intimid', 'full', 'featur', 'smart', 'job', 'good', 'form', 'factor', 'work', 'well', 'basic', 'quiet', 'menus', 'madden', 'fm', 'radio', 'kind', 'pointless', 'turn', 'time', 'could', 'not', 'figur', 'turn', 'sim', 'brand', 'carrier', 'use', 'att', 'tower', 'inexpens', 'easi', 'activ', 'goid', 'coverag'], ['phone', 'came', 'without', 'charger', 'number', 'written', 'ink', 'back', 'look', 'like', 'use'], ['beauti', 'basic', 'phone', 'tv', 'dual', 'sim', 'model', 'eleg', 'love'], ['good'], ['pli', 'defet', 'phone'], ['volum', 'low', 'even', 'maximum'], ['phone', 'chunki', 'batteri', 'otherwis', 'top', 'notch', 'phone', 'return', 'would', 'set', 'would', 'power', 'cycl', 'reason', 'defect', 'happen', 'amazon', 'usual', 'great', 'return'], ['good', 'phone'], ['return', 'phone', 'today', 'less', 'month', 'stop', 'detect', 'sim', 'card', 'send', 'piec', 'crap', 'back', 'refund'], ['love', 'phone', 'nice', 'phone', 'long', 'last', 'batteri', 'easi', 'get', 'around', 'take', 'good', 'pictur', 'i', 'would', 'recommend'], ['product', 'everyth', 'expect', 'deliv', 'time', 'well', 'pack', 'thank'], ['awesom', 'batteri', 'life', 'love', 'problem', 'touch', 'screen', 'not', 'sensit', 'not', 'big', 'deal', 'reallyy', 'good', 'cellphon'], ['purchas', 'temporari', 'phone', 'husband', 'cell', 'phone', 'broke', 'realli', 'like', 'phone', 'not', 'believ', 'qualiti', 'price', 'use', 'day', 'abl', 'download', 'favorit', 'app', 'watch', 'video', 'take', 'good', 'pictur', 'arriv', 'alreadi', 'charg', 'includ', 'accessori', 'one', 'would', 'need', 'get', 'start', 'headphon', 'case', 'screen', 'protector', 'great', 'ad', 'addit'], ['far', 'phone', 'work', 'great', 'fast', 'internet', 'close', 'open', 'app', 'price', 'perfect', 'batteri', 'last', 'day', 'work', 'problem', 'old', 'galaxi', 'love', 'two', 'sim', 'card', 'slot', 'run', 'fast', 'data', 'one', 'card', 'switch', 'data', 'sim', 'fast', 'data', 'use', 'switch', 'app', 'sd', 'card', 'not', 'let', 'set', 'file', 'manag', 'camera', 'take', 'nice', 'clear', 'pictur', 'video', 'not', 'use', 'front', 'camera', 'often', 'pretti', 'clear', 'make', 'rington', 'music', 'phone', 'nice', 'need', 'download', 'extra', 'app', 'like', 'blackscreen', 'gestur', 'make', 'line', 'w', 'phone', 'asleep', 'instant', 'perform', 'ever', 'function', 'assign', 'design', 'conveni', 'need', 'torch', 'light', 'screen', 'protector', 'came', 'not', 'seem', 'fit', 'edg', 'screen', 'mani', 'time', 'drop', 'alreadi', 'say', 'protect', 'screen', 'also', 'came', 'clear', 'hard', 'case', 'alreadi', 'broken', 'replac', 'wish', 'could', 'find', 'hybrid', 'protect', 'case', 'amazon', 'tri', 'blu', 'purchas', 'tablet', 'long', 'time', 'ago', 'still', 'work', 'great', 'took', 'sim', 'card', 'afford', 'compar', 'other'], ['excel'], ['bought', 'replac', 'phone', 'travel', 'countri', 'realli', 'like', 'dual', 'sim', 'option', 'move', 'person', 'safeti', 'emerg', 'must', 'cell', 'phone', 'travel', 'not', 'hard', 'pay', 'phone', 'around', 'batteri', 'not', 'long', 'last', 'previous', 'model', 'storag', 'kind', 'pooh', 'app', 'hoarder', 'bought', 'sd', 'card', 'take', 'minut', 'get', 'sort', 'sound', 'ok', 'take', 'littl', 'long', 'open', 'unlock', 'screen', 'button', 'lack', 'better', 'term', 'bottom', 'super', 'sensit', 'sluggish', 'like', 'went', 'grab', 'slip', 'place', 'onto', 'floorboard', 'end', 'call', 'complet', 'random', 'contact', 'someon', 'volunt', 'project', 'two', 'year', 'ago', 'got', 'hear', 'declin', 'sauc', 'chicken', 'strip', 'wish', 'cashier', 'nice', 'use', 'rear', 'camera', 'product', 'photo', 'light', 'box', 'pretti', 'good', 'not', 'photograph', 'finer', 'tune', 'option', 'not', 'mean', 'much', 'work', 'need', 'issu', 'relat', 'clumsi', 'though', 'sound', 'could', 'also', 'peopl', 'talk', 'halfway', 'total', 'hear', 'loss', 'therefor', 'huh', 'constant', 'mash', 'face', 'touchscreen', 'phone', 'obscur', 'pretti', 'sure', 'mom', 'hous', 'phone', 'actual', 'kind', 'could', 'take', 'time', 'learn', 'featur', 'not', 'need', 'i', 'fussi', 'leav', 'review', 'other', 'like', 'want', 'someth', 'plug', 'go', 'need', 'advanc', 'featur', 'work', 'great', 'realli', 'apathet', 'learn', 'new', 'devic', 'might', 'awkward', 'moment'], ['love', 'blu', 'energi'], ['upgrad', 'samsung', 'galaxi', 'victori', 'lte', 'cdma', 'android', 'sim', 'phone', 'want', 'dual', 'sim', 'phone', 'travel', 'outsid', 'us', 'not', 'want', 'make', 'major', 'invest', 'use', 'blu', 'coupl', 'week', 'still', 'get', 'use', 'interfac', 'differ', 'enough', 'samsung', 'minor', 'annoy', 'hand', 'phone', 'seem', 'everyth', 'suppos', 'not', 'realli', 'complain', 'kudo', 'blu', 'includ', 'screen', 'protector', 'case', 'phone', 'box', 'love', 'abil', 'rapid', 'charg', 'batteri', 'not', 'charg', 'phone', 'everi', 'day', 'spec', 'claim', 'batteri', 'not', 'remov', 'wrong', 'batteri', 'remov', 'micro', 'sd', 'card', 'realli', 'necess', 'surpris', 'given', 'phone', 'spec', 'not', 'view', 'negat', 'real', 'complaint', 'manual', 'onlin', 'access', 'browser', 'rather', 'store', 'phone', 'pdf', 'want', 'latest', 'greatest', 'android', 'smartphon', 'phone', 'not', 'hand', 'want', 'basic', 'smartphon', 'batteri', 'great', 'price', 'blu', 'energi', 'x', 'look'], ['look', 'good', 'far', 'not', 'complain', 'good', 'product'], ['awesom', 'cool', 'phone', 'play', 'coolest', 'game', 'great', 'screen', 'movi', 'blue', 'support', 'great', 'second', 'blu', 'phone', 'would', 'buy'], ['realli', 'like', 'phone', 'work', 'venezuela', 'thing', 'not', 'like', 'case', 'not', 'matter', 'recommend'], ['far', 'best', 'phone', 'purchas', 'littl', 'pricey', 'like', 'would', 'recommend', 'phone', 'anyon'], ['would', 'not', 'hold', 'pro', 'pay', 'pay', 'squar', 'origin', 'blue', 'energi', 'x', 'work', 'great', 'bought', 'newer', 'model', 'wife', 'sold', 'not', 'accept', 'newer', 'phone', 'mot', 'accept', 'earbud', 'built', 'antenna', 'bad', 'origin', 'bud', 'work', 'well', 'quit', 'comfort', 'an', 'never', 'problem'], ['excel'], ['good', 'product', 'hundr', 'buck', 'worth'], ['far', 'best', 'phone', 'purchas', 'littl', 'pricey', 'like', 'would', 'recommend', 'phone', 'anyon'], ['like', 'phone', 'blu', 'energi', 'x', 'especi', 'not', 'cheap', 'look', 'though', 'scare', 'order', 'not', 'realli', 'know', 'feel', 'made', 'good', 'choic', 'final', 'batteri', 'life', 'also', 'good', 'review', 'gave', 'star', 'screen', 'touch', 'respons', 'littl', 'slow', 'hard', 'phone', 'charg', 'well', 'first', 'attempt', 'charg', 'phone', 'charger', 'adapt', 'refus', 'get', 'power', 'level', 'even', 'left', 'charg', 'night', 'start', 'charg', 'laptop', 'use', 'usb', 'cord', 'came', 'adapt', 'good', 'detach', 'would', 'need', 'get', 'new', 'adapt', 'final', 'said', 'intern', 'mine', 'realli', 'could', 'download', 'app', 'felt', 'like', 'could', 'taken', 'wrote', 'review', 'anyway', 'guess', 'expect', 'much', 'price'], ['happi', 'everyth', 'need', 'would', 'recommend', 'depend', 'phone'], ['internet', 'not', 'work', 'use', 'india'], ['gift'], ['excel'], ['new', 'era', 'mobil', 'high', 'batteri', 'capac', 'easili', 'touch', 'screen', 'good', 'stuff', 'insid', 'price', 'less'], ['drop', 'first', 'day', 'usag', 'broke'], ['packag', 'damag', 'reciev'], ['could', 'give', 'star', 'would', 'work', 'minut', 'could', 'longer', 'detect', 'network', 'sim', 'card', 'data', 'connect', 'avail', 'matter', 'mani', 'time', 'reset', 'phone', 'reset', 'sim', 'card', 'noth', 'work'], ['phone', 'met', 'requir'], ['love', 'phone', 'old', 'phone', 'work', 'terribl', 'trip', 'san', 'francisco', 'come', 'need', 'new', 'phone', 'case', 'old', 'one', 'quit', 'order', 'phone', 'got', 'day', 'earlier', 'expect', 'work', 'fine', 'net', 'plan', 'thing', 'add', 'apn', 'data', 'earphon', 'hard', 'plastic', 'get', 'uncomfort', 'charg', 'extrem', 'fast', 'batteri', 'last', 'day', 'without', 'use', 'data', 'wifi', 'general', 'max', 'bright', 'san', 'francisco', 'megapixel', 'camera', 'take', 'realli', 'good', 'pictur', 'main', 'complaint', 'case', 'come', 'famili', 'blu', 'phone', 'bought', 'soft', 'rubber', 'case', 'fair', 'protect', 'phone', 'case', 'hard', 'plastic', 'edg', 'take', 'case', 'put', 'time', 'could', 'not', 'decid', 'whether', 'like', 'feel', 'case', 'not', 'bottom', 'right', 'corner', 'crack', 'thought', 'would', 'break', 'thought', 'would', 'crack', 'seem', 'crack', 'due', 'fact', 'live', 'extrem', 'dri', 'area', 'brittl', 'drop', 'hundr', 'time', 'san', 'francisco', 'case', 'protect', 'extrem', 'well', 'crack', 'screen', 'not', 'even', 'scratch', 'yet', 'even', 'though', 'land', 'street', 'i', 'impress', 'phone', 'durabl', 'perform', 'far', 'better', 'expect', 'case', 'issu', 'seem', 'circumstanti', 'issu', 'would', 'not', 'worri'], ['pleas', 'phone'], ['good', 'phone', 'price'], ['replac', 'two', 'within', 'month'], ['great', 'batteri', 'life', 'bad', 'camera', 'expect', 'price', 'though', 'not', 'beat'], ['great', 'phone', 'amaz', 'batteri', 'life', 'nice', 'design', 'realli', 'worth', 'money'], ['good', 'wallet', 'cover'], ['minut', 'charg', 'joke', 'batteri', 'not', 'last', 'long', 'said', 'apart', 'phone', 'work', 'great', 'littl', 'apprehens', 'sinc', 'i', 'never', 'heard', 'blu', 'far', 'work', 'well', 'like'], ['great', 'batteri', 'life', 'bad', 'camera', 'expect', 'price', 'though', 'not', 'beat'], ['love', 'phone', 'old', 'phone', 'work', 'terribl', 'trip', 'san', 'francisco', 'come', 'need', 'new', 'phone', 'case', 'old', 'one', 'quit', 'order', 'phone', 'got', 'day', 'earlier', 'expect', 'work', 'fine', 'net', 'plan', 'thing', 'add', 'apn', 'data', 'earphon', 'hard', 'plastic', 'get', 'uncomfort', 'charg', 'extrem', 'fast', 'batteri', 'last', 'day', 'without', 'use', 'data', 'wifi', 'general', 'max', 'bright', 'san', 'francisco', 'megapixel', 'camera', 'take', 'realli', 'good', 'pictur', 'main', 'complaint', 'case', 'come', 'famili', 'blu', 'phone', 'bought', 'soft', 'rubber', 'case', 'fair', 'protect', 'phone', 'case', 'hard', 'plastic', 'edg', 'take', 'case', 'put', 'time', 'could', 'not', 'decid', 'whether', 'like', 'feel', 'case', 'not', 'bottom', 'right', 'corner', 'crack', 'thought', 'would', 'break', 'thought', 'would', 'crack', 'seem', 'crack', 'due', 'fact', 'live', 'extrem', 'dri', 'area', 'brittl', 'drop', 'hundr', 'time', 'san', 'francisco', 'case', 'protect', 'extrem', 'well', 'crack', 'screen', 'not', 'even', 'scratch', 'yet', 'even', 'though', 'land', 'street', 'i', 'impress', 'phone', 'durabl', 'perform', 'far', 'better', 'expect', 'case', 'issu', 'seem', 'circumstanti', 'issu', 'would', 'not', 'worri'], ['bought', 'phone', 'less', 'month', 'one', 'went', 'blank', 'not', 'drop', 'got', 'wet', 'accid', 'screen', 'start', 'blink', 'one', 'day', 'went', 'blank', 'fulli', 'charg', 'unabl', 'return', 'pass', 'day', 'would', 'not', 'recommend'], ['love', 'wonder', 'product'], ['everi', 'thing', 'need', 'plus', 'batteri', 'life', 'fantast', 'day', 'charg'], ['cool', 'describ'], ['take', 'great', 'pictur', 'super', 'fast', 'nice', 'size', 'not', 'big', 'not', 'small'], ['phone', 'batteri', 'die', 'random', 'charg', 'multipl', 'time', 'daili', 'think', 'sold', 'defect', 'phone'], ['phone', 'work', 'great', 'box', 'mother', 'day', 'gift', 'phone', 'could', 'not', 'charg', 'call', 'audio', 'could', 'not', 'heard', 'thank', 'good', 'amazon', 'return', 'polici'], ['love', 'purchas', 'much', 'last', 'one'], ['phone', 'great', 'price', 'amaz', 'camera', 'app', 'go', 'well'], ['actual', 'wore', 'appal', 'phone', 'review', 'made', 'realli', 'excit', 'got', 'realiz', 'mislead', 'phone', 'slow', 'buggi', 'not', 'even', 'download', 'book', 'kindl', 'everi', 'minut', 'say', 'not', 'network', 'connect', 'multipl', 'app', 'stop', 'download', 'sound', 'qualiti', 'horrend', 'bare', 'hear', 'call', 'let', 'alon', 'tri', 'hear', 'anyth', 'speaker', 'disappoint', 'say', 'pictur', 'qualiti', 'not', 'bad'], ['love', 'work', 'great'], ['not', 'seem', 'durabl', 'name', 'brand', 'phone', 'daughter', 'drop', 'screen', 'shatter', 'complet', 'unus', 'crack', 'samsung', 'year', 'ago', 'still', 'work', 'great'], ['hi', 'mani', 'problem', 'phone', 'screen', 'problem', 'auxilari', 'bluetooth', 'slow', 'need', 'solut', 'pleas', 'answer'], ['phone', 'far', 'best', 'phone', 'set', 'mine', 'metropc', 'problem', 'connect', 'lot', 'peopl', 'ask', 'thought', 'i', 'would', 'give', 'head', 'phone', 'great'], ['phone', 'awesom', 'camera', 'wors', 'galaxi', 'though', 'expect', 'phone', 'perform', 'describ', 'batteri', 'hold', 'charg', 'twice', 'long', 'old', 'phone', 'definit', 'must', 'buy', 'live', 'batteri', 'percentag', 'rang'], ['turn', 'wifi', 'night', 'get', 'day', 'without', 'charg', 'lot', 'bloatwar', 'one', 'still', 'love', 'blu', 'phone'], ['worth'], ['realli', 'like', 'phone', 'work', 'perfect', 'thing', 'camera', 'qualiti', 'not', 'best'], ['one', 'best', 'phone', 'i', 'bought', 'far'], ['love', 'realli', 'excit', 'get', 'review', 'made', 'worri', 'not', 'worri', 'honest', 'great', 'run', 'great', 'thing', 'not', 'like', 'idc', 'due', 'fact', 'phone', 'amaz', 'give', 'start', 'get', 'phone', 'higher', 'gb', 'phone', 'not', 'quiet', 'either', 'especi', 'play', 'someth', 'loud', 'although', 'not', 'come', 'equal', 'still', 'good', 'not', 'understand', 'peopl', 'not', 'think', 'loud'], ['bought', 'phone', 'iphon', 'broke', 'need', 'someth', 'quick', 'phone', 'could', 'ever', 'temporari', 'not', 'good', 'phone', 'horribl', 'pictur', 'qualiti', 'everyth', 'thing', 'good', 'text', 'call'], ['excel', 'devic'], ['case', 'fit', 'well', 'look', 'good', 'seem', 'quit', 'sturdi', 'thicker', 'rubber', 'corner', 'offer', 'fair', 'protect', 'short', 'fall'], ['receiv', 'mail', 'today', 'first', 'impress', 'nice', 'phone', 'price', 'resolut', 'not', 'bad', 'not', 'lag', 'yet', 'howev', 'warn', 'not', 'exact', 'apn', 'enter', 'proper', 'mms', 'not', 'come', 'cricket', 'went', 'store', 'could', 'not', 'help', 'howev', 'old', 'blu', 'phone', 'use', 'apn', 'set', 'work', 'great', 'use', 'instead', 'not', 'receiv', 'send', 'text', 'messag', 'without', 'turn', 'phone', 'back', 'also', 'updat', 'not', 'work', 'proper', 'either', 'not', 'buy', 'receiv', 'replac', 'phone', 'wors', 'origin', 'not', 'even', 'download', 'anyth', 'play', 'store', 'wors', 'phone', 'ever', 'extrem', 'frustrat', 'send', 'text', 'messag', 'appar', 'download', 'anyth', 'play', 'store', 'not', 'purchas', 'anoth', 'blu', 'phone', 'absolut', 'horribl'], ['batteri', 'not', 'last', 'anywher', 'near', 'long', 'say', 'not', 'even', 'last', 'longer', 'last', 'phone'], ['rate', 'use', 'blu', 'phone', 'although', 'get', 'laggi', 'love', 'screen', 'amaz', 'energi', 'plus', 'bad', 'area', 'softwar', 'odd', 'tri', 'run', 'basic', 'appl', 'softwar', 'kept', 'get', 'glitchest', 'past', 'ghost', 'app', 'front', 'cam', 'distort', 'cours', 'could', 'gotten', 'lemon', 'not', 'like', 'experi'], ['great', 'phone', 'money', 'realli', 'give', 'star', 'dose', 'not', 'much', 'old', 'galaxi', 'note', 'reason', 'replac', 'consid', 'cost', 'new', 'galaxi', 'phone', 'wish', 'could', 'afford', 'complaint', 'wifi', 'not', 'appear', 'work', 'well', 'mayb', 'super', 'short', 'rang', 'old', 'wifi', 'tech', 'also', 'wifi', 'enabl', 'want', 'keep', 'fail', 'use', 'even', 'though', 'receiv', 'perfect', 'good', 'cell', 'signal', 'not', 'switch', 'unless', 'shut', 'wifi', 'manual', 'problem', 'receiv', 'good', 'cell', 'signal', 'far', 'stay', 'allot', 'gig', 'per', 'month', 'ps', 'batteri', 'life', 'amaz', 'onoli', 'need', 'charg', 'week'], ['fantast', 'phone'], ['said', 'phone', 'compat', 'straight', 'true', 'not', 'compat', 'straight', 'talk', 'would', 'let', 'make', 'receiv', 'call', 'text', 'data', 'pic', 'messag'], ['like', 'everyth', 'except', 'camerabad', 'qualiti', 'oh', 'not', 'lte'], ['good', 'rough', 'buy'], ['awe', 'everyth', 'phone', 'awe', 'poor', 'design', 'not', 'even', 'know', 'start', 'total', 'wast', 'money', 'phone', 'goe', 'straight', 'trash', 'belong'], ['realli', 'want', 'love', 'phone', 'not', 'own', 'almost', 'year', 'problem', 'ad', 'speakerphon', 'garbl', 'unus', 'gps', 'suck', 'constant', 'put', 'feet', 'away', 'differ', 'road', 'go', 'differ', 'direct', 'start', 'not', 'connect', 'cell', 'tower', 'not', 'load', 'phone', 'speed', 'great', 'though', 'problem'], ['great', 'great', 'phone', 'husband', 'love'], ['realli', 'like', 'smart', 'phone', 'wait', 'new', 'sim', 'arriv', 'realli', 'test', 'far', 'everyth', 'work', 'great', 'look', 'great', 'love', 'batteri', 'time', 'cours', 'tell', 'nice', 'smart', 'phone', 'load', 'microssdhc', 'card', 'recogn', 'problem'], ['phone', 'absolut', 'great', 'batteri', 'life', 'amaz', 'use', 'full', 'charg', 'includ', 'text', 'listen', 'music', 'check', 'social', 'media', 'throughout', 'school', 'day', 'plus', 'charg', 'super', 'quick', 'camera', 'pretti', 'good', 'front', 'face', 'camera', 'good', 'light', 'best', 'result', 'thing', 'bug', 'provid', 'headphon', 'not', 'best', 'qualiti', 'overal', 'love', 'phone'], ['audio', 'phone', 'low', 'raspi', 'return', 'phone'], ['phone', 'function', 'much', 'like', 'samsung', 'galaxi', 'love', 'long', 'batteri', 'last', 'usual', 'charg', 'everi', 'day', 'depend', 'much', 'use', 'complaint', 'someon', 'use', 'bunch', 'app', 'version', 'not', 'enough', 'memori', 'store', 'updat', 'would', 'recommend', 'someon', 'new', 'use', 'smartphon'], ['exact', 'look'], ['second', 'blu', 'phone', 'rug', 'well', 'made', 'blu', 'anoth', 'winner'], ['phone', 'look', 'fanci', 'screen', 'huge', 'purchas', 'give', 'dad', 'brazil', 'blu', 'kind', 'phone', 'never', 'loos', 'connect', 'matter', 'far', 'go', 'lost', 'olf', 'blu', 'upset', 'decid', 'get', 'one', 'model', 'around', 'thousand', 'reai', 'brazil', 'lot', 'money', 'sold', 'impress', 'screen', 'size', 'nice', 'phone', 'look', 'got', 'yo', 'admit', 'got', 'upset', 'check', 'phone', 'not', 'expect', 'perfect', 'phone', 'definit', 'expect', 'front', 'camera', 'got', 'flash', 'help', 'lot', 'take', 'pictur', 'freez', 'kind', 'get', 'decent', 'one', 'front', 'camera', 'aw', 'focus', 'take', 'forev', 'wait', 'second', 'click', 'pictur', 'otherwis', 'mess', 'imag', 'video', 'ooh', 'boy', 'decent', 'stay', 'not', 'move', 'around', 'move', 'matter', 'slow', 'loos', 'complet', 'focus', 'tri', 'record', 'someth', 'movement', 'forget', 'also', 'record', 'even', 'thought', 'environ', 'quiet', 'insid', 'bedroom', 'much', 'nois', 'video', 'made', 'like', 'wind', 'last', 'volum', 'omg', 'realli', 'bad', 'matter', 'high', 'video', 'audio', 'suck', 'download', 'volum', 'boost', 'app', 'call', 'mobileuncl', 'tool', 'still', 'nothin', 'headphon', 'littl', 'bit', 'better', 'not', 'perfect', 'littl', 'nois', 'know', 'phone', 'i', 'phone', 'price', 'lg', 'samsung', 'great', 'realli', 'want', 'good', 'least', 'save', 'dad', 'r', 'definit', 'not', 'worth', 'oohh', 'onlin', 'video', 'imag', 'alright', 'though', 'batteri', 'realli', 'seem', 'good', 'low', 'night', 'long', 'sinc', 'yesterday', 'afternoon', 'still', 'iphon', 'would', 'dead'], ['love', 'blu', 'product', 'ia', 'one', 'absolut', 'love', 'batteri', 'life', 'fantast', 'stay', 'charg', 'day', 'even', 'heavi', 'use', 'storag', 'great', 'better', 'last', 'phone', 'major', 'plus'], ['con', 'time'], ['good'], ['love', 'phone', 'latest', 'os', 'monster', 'batteri', 'snappi', 'perform', 'come', 'charger', 'clear', 'case', 'screen', 'protector', 'fm', 'radio', 'surpris', 'use', 'use', 'two', 'week', 'far', 'good'], ['bought', 'daughter', 'like', 'blu', 'phone', 'buy', 'great', 'bargain', 'phone'], ['amaz', 'purchas', 'month', 'screen', 'start', 'go', 'crazi', 'think', 'lcd', 'burnt', 'mayb', 'cheap', 'screen', 'line', 'screen', 'constant', 'time', 'screen', 'seem', 'burnt', 'shadow', 'scroll', 'contact', 'support', 'given', 'link', 'reformat', 'phone', 'not', 'work'], ['congratulecion'], ['love', 'look', 'phone', 'beauti', 'speaker', 'issu', 'return', 'other', 'could', 'not', 'hear', 'well', 'hear', 'end', 'buy', 'good', 'pair', 'ear', 'bud', 'order', 'hear', 'peopl', 'say', 'phone', 'purchas', 'separ', 'protect', 'case', 'phone', 'made', 'imposs', 'hear', 'anyth', 'prevent', 'protect', 'phone', 'damag', 'futur', 'better', 'return', 'happi', 'rest', 'not', 'audio', 'issu', 'rate', 'might', 'phone', 'manufactur', 'issu', 'return', 'easi', 'full', 'refund'], ['part', 'great', 'phone', 'weight', 'not', 'feel', 'cheap', 'cours', 'could', 'batteri', 'lol', 'not', 'real', 'whiz', 'bang', 'person', 'use', 'phone', 'actual', 'phone', 'call', 'text', 'graphic', 'technic', 'stuff', 'fine', 'may', 'may', 'not', 'someon', 'els', 'need', 'respect', 'great', 'bang', 'buck', 'howev', 'one', 'gripe', 'volum', 'blu', 'phone', 'seem', 'like', 'model', 'ring', 'talk', 'volum', 'gotten', 'quieter', 'put', 'one', 'particular', 'speaker', 'phone', 'still', 'hold', 'close', 'ear', 'hear', 'ridicul', 'see', 'old', 'school', 'not', 'use', 'phone', 'much', 'make', 'phone', 'call', 'therefor', 'think', 'old', 'hard', 'hear', 'problem', 'even', 'year', 'old', 'son', 'made', 'comment', 'annoy', 'quit', 'call', 'volum', 'not', 'get', 'mean', 'know', 'samsung', 'galaxi', 'reason', 'price', 'technic', 'advanc', 'blu', 'make', 'phone', 'one', 'would', 'think', 'make', 'ringer', 'call', 'volum', 'louder', 'one', 'could', 'actual', 'hear', 'ring', 'hear', 'speak', 'would', 'simpl', 'thing'], ['phone', 'absolut', 'great', 'batteri', 'life', 'amaz', 'use', 'full', 'charg', 'includ', 'text', 'listen', 'music', 'check', 'social', 'media', 'throughout', 'school', 'day', 'plus', 'charg', 'super', 'quick', 'camera', 'pretti', 'good', 'front', 'face', 'camera', 'good', 'light', 'best', 'result', 'thing', 'bug', 'provid', 'headphon', 'not', 'best', 'qualiti', 'overal', 'love', 'phone'], ['origin', 'order', 'phone', 'month', 'ago', 'phone', 'slight', 'lag', 'bluetooth', 'spotti', 'not', 'work', 'right', 'phone', 'miss', 'import', 'updat', 'hope', 'new', 'order', 'phone', 'would', 'far', 'bluetooth', 'not', 'work'], ['worst', 'not', 'buy', 'pleas'], ['great', 'product', 'good', 'price'], ['first', 'one', 'last', 'three', 'week', 'would', 'not', 'turn', 'three', 'week', 'later', 'got', 'replac', 'screen', 'loos', 'got', 'see', 'insid', 'energi', 'x', 'plus', 'rma', 'one', 'back', 'blu', 'wait', 'three', 'week', 'rma', 'ten', 'week', 'later', 'final', 'sent', 'anoth', 'lemon', 'one', 'not', 'focus', 'rear', 'camera', 'wireless', 'work', 'half', 'time'], ['muy', 'bien', 'gracia'], ['would', 'not', 'buy', 'phone', 'get', 'hot', 'talk', 'time', 'hang', 'set', 'hair', 'fire'], ['love', 'work', 'perfect', 'fine'], ['horribl', 'slow', 'frozen'], ['cel', 'good', 'volum', 'not', 'good'], ['great', 'phone', 'price', 'laggi', 'late', 'job', 'i', 'not', 'go', 'write', 'whole', 'review', 'better', 'one'], ['buy', 'phone', 'one', 'send', 'brother', 'mexico', 'work', 'perfect', 'telmex', 'without', 'flash', 'put', 'sim', 'go', 'work', 'perfect', 'metro', 'pcs'], ['realli', 'like', 'smart', 'phone', 'wait', 'new', 'sim', 'arriv', 'realli', 'test', 'far', 'everyth', 'work', 'great', 'look', 'great', 'love', 'batteri', 'time', 'cours', 'tell', 'nice', 'smart', 'phone', 'load', 'microssdhc', 'card', 'recogn', 'problem'], ['expect'], ['love', 'nice', 'cell', 'phone'], ['realli', 'nice', 'phone', 'like', 'hope', 'upgrad', 'soon'], ['great', 'phone', 'price', 'problem', 'batteri', 'excel'], ['great'], ['price', 'not', 'beat', 'howev', 'temper', 'glass', 'protect', 'cover', 'recommend', 'bottom', 'phone', 'gimmick', 'not', 'fit', 'though', 'amazon', 'bundl', 'packag', 'wast', 'extran', 'cell', 'phone', 'protect', 'amazon', 'suggest', 'i', 'not', 'real', 'happi'], ['love', 'phone', 'even', 'better', 'review', 'read', 'love'], ['admit', 'read', 'review', 'littl', 'nervous', 'buy', 'phone', 'week', 'happi', 'move', 'iphon', 'phone', 'smooth', 'move', 'problem', 'download', 'use', 'jamaica', 'digicel', 'good'], ['amaz', 'phone', 'happi', 'ship', 'fast'], ['purchas', 'phone', 'cspire', 'expens', 'got', 'phone', 'next', 'day', 'great', 'three', 'week', 'later', 'phone', 'screen', 'went', 'disappoint', 'speaker', 'horribl'], ['crash', 'lot', 'restart', 'seem', 'fix'], ['would', 'not', 'buy', 'phone', 'get', 'hot', 'talk', 'time', 'hang', 'set', 'hair', 'fire'], ['bought', 'phone', 'zte', 'grand', 'x', 'max', 'glitch', 'stop', 'work', 'not', 'feel', 'like', 'buy', 'new', 'phone', 'cricket', 'suck', 'kind', 'expens', 'cricket', 'written', 'anyway', 'got', 'phone', 'main', 'batteri', 'life', 'love', 'work', 'smooth', 'surpris', 'not', 'slow', 'glitchi'], ['perfect', 'fast', 'deliveri', 'even', 'holiday'], ['happi', 'phone', 'return', 'first', 'phone', 'day', 'purchas', 'start', 'turn', 'lock', 'amazon', 'made', 'return', 'easi', 'painless', 'happen', 'realli', 'like', 'far', 'replac', 'phone', 'well', 'pass', 'day', 'without', 'issu', 'realli', 'like', 'phone'], ['exact', 'look'], ['excel', 'phone', 'excel', 'price'], ['love', 'new', 'blu', 'got', 'time', 'manner', 'work', 'great'], ['phone', 'work', 'good', 'first', 'day', 'screen', 'flash', 'back', 'forth', 'non', 'stop', 'bought', 'son', 'birthday', 'compani', 'blu', 'not', 'even', 'answer', 'email', 'warrenti', 'joke', 'not', 'buy', 'compani', 'unless', 'want', 'get', 'screw', 'suppos', 'one', 'year', 'manufactur', 'warrenti', 'never', 'take', 'back'], ['bought', 'son', 'love', 'phone', 'may', 'even', 'buy', 'one'], ['phone', 'gorgeous', 'look', 'blu', 'logo', 'might', 'ugli', 'peopl', 'tri', 'cover', 'sticker', 'fell', 'apart', 'later', 'haha', 'well', 'overal', 'design', 'fineth', 'screen', 'not', 'know', 'peopl', 'complain', 'mean', 'obvious', 'better', 'fine', 'not', 'see', 'pixel', 'least', 'put', 'phone', 'inch', 'close', 'eyeth', 'color', 'also', 'fine', 'great', 'view', 'angl', 'think', 'ipsand', 'may', 'ask', 'good', 'camera', 'well', 'would', 'say', 'fine', 'photo', 'focus', 'time', 'kind', 'slow', 'get', 'realli', 'nice', 'shot', 'back', 'camera', 'even', 'get', 'macro', 'like', 'pictur', 'come', 'big', 'flaw', 'video', 'terribl', 'front', 'back', 'camera', 'shaki', 'look', 'like', 'front', 'camera', 'main', 'reason', 'give', 'starsth', 'selfi', 'good', 'light', 'fine', 'look', 'kind', 'soften', 'low', 'light', 'even', 'mid', 'light', 'condit', 'pictur', 'look', 'pretti', 'grey', 'hell', 'grannyand', 'last', 'perform', 'not', 'say', 'hell', 'fast', 'neither', 'say', 'laggi', 'use', 'use', 'social', 'media', 'basic', 'app', 'love', 'not', 'see', 'lag', 'hazzl', 'wait', 'come', 'game', 'stick', 'simpl', 'one', 'like', 'doodl', 'jump', 'haha', 'tri', 'asphalt', 'run', 'good', 'low', 'resolutionoveral', 'great', 'smarthphon', 'great', 'display', 'long', 'last', 'batteri', 'even', 'last', 'two', 'day', 'high', 'use', 'light', 'use', 'last', 'day', 'till', 'die', 'nice', 'perform', 'basic', 'good', 'back', 'camera', 'pictur', 'forget', 'video'], ['biggest', 'complaint', 'definit', 'modifi', 'version', 'os', 'instal', 'along', 'app', 'instal', 'googl', 'launcher', 'pretti', 'much', 'unus', 'biggest', 'drawback', 'bunch', 'extra', 'app', 'app', 'drawer', 'bother', 'peopl', 'not', 'other', 'next', 'biggest', 'complaint', 'screen', 'resolut', 'mani', 'size', 'display', 'resolut', 'adequ', 'text', 'start', 'look', 'littl', 'pixel', 'perform', 'not', 'quit', 'would', 'like', 'grant', 'budget', 'phone', 'not', 'help', 'wonder', 'use', 'stock', 'os', 'not', 'extra', 'app', 'perform', 'might', 'improv'], ['camara', 'good', 'night', 'batteri', 'good'], ['love', 'work', 'great'], ['not', 'seem', 'durabl', 'name', 'brand', 'phone', 'daughter', 'drop', 'screen', 'shatter', 'complet', 'unus', 'crack', 'samsung', 'year', 'ago', 'still', 'work', 'great'], ['love', 'look', 'feel', 'phone', 'well', 'phenomin', 'batteri', 'life', 'ship', 'fast'], ['audio', 'phone', 'low', 'raspi', 'return', 'phone'], ['overal', 'good', 'phone', 'even', 'though', 'brand', 'control', 'familiar', 'easi', 'use', 'surpris', 'love', 'batteri', 'life', 'go', 'day', 'without', 'charg', 'level', 'use', 'facebook', 'youtub', 'text', 'day', 'problem', 'tri', 'connect', 'internet', 'whether', 'carrier', 'att', 'wifi', 'still', 'tri', 'figur', 'overal', 'amaz', 'phone', 'money'], ['own', 'origin', 'blu', 'energi', 'hope', 'problem', 'present', 'phone', 'fix', 'still', 'retain', 'predecessor', 'amaz', 'batteri', 'life', 'sad', 'neither', 'antenna', 'still', 'abysm', 'miss', 'approx', 'incom', 'call', 'phone', 'carrier', 'network', 'problem', 'wherea', 'could', 'easili', 'get', 'four', 'day', 'origin', 'blu', 'energi', 'x', 'plus', 'bare', 'manag', 'ad', 'bloatwar', 'amazon', 'app', 'opera', 'browser', 'not', 'far', 'tell', 'improv', 'origin', 'blu', 'energi', 'fact', 'back', 'home', 'menu', 'button', 'correct', 'order', 'sinc', 'return', 'x', 'plus', 'purchas', 'moto', 'g', 'generat', 'far', 'superior', 'phone', 'high', 'recommend'], ['great', 'qualiti'], ['phone', 'arriv', 'time', 'exceed', 'beyound', 'expect', 'batteri', 'life', 'excel'], ['phone', 'great', 'great', 'price', 'complaint', 'not', 'make', 'snooz', 'last', 'extend', 'period', 'time', 'minut', 'top', 'would', 'high', 'recommend', 'phone'], ['one', 'best', 'thing', 'buy', 'batteri', 'ridicul', 'long', 'last', 'choos', 'mobil', 'compani', 'want', 'awesom', 'phone', 'recomend'], ['good', 'phone', 'batteri', 'life', 'good', 'way', 'better', 'samsung', 'galaxi', 'also', 'great', 'sound', 'realli', 'good', 'far', 'good', 'seller', 'got', 'phone', 'good', 'time', 'great', 'condit'], ['ver', 'good'], ['excel', 'would', 'recommend', 'phone', 'low', 'price', 'batteri', 'use', 'longer', 'time', 'good', 'phone', 'l', 'satisfi', 'choos'], ['realli', 'like', 'phone', 'not', 'heavi', 'hand', 'realli', 'sleek', 'look', 'love', 'gold', 'color', 'featur', 'wish', 'still', 'like', 'split', 'screen', 'realli', 'complaint', 'price', 'paid'], ['love', 'phone', 'issu', 'th', 'volum', 'not', 'high', 'enough'], ['love', 'technic', 'difficulti', 'panick', 'return', 'got', 'realli', 'hot', 'ptsd', 'fire', 'conclus', 'come', 'i', 'glad', 'savedvth', 'refund', 'amazon', 'credit', 'got', 'nexus', 'christma', 'eve', 'immedi', 'upat', 'android', 'marshmallow', 'not', 'batteri', 'stay', 'power', 'kind', 'batteri', 'backup', 'accessori', 'buy'], ['difficult', 'wife', 'use'], ['great', 'product', 'good', 'price'], ['happi', 'deal', 'product', 'excel'], ['good', 'phone'], ['phone', 'terribl', 'came', 'up', 'not', 'deliv', 'time', 'pick', 'phone', 'glitchi', 'pixal', 'video', 'batteri', 'drain', 'fast', 'work', 'wifi', 'switch', 'vice', 'back', 'wifi', 'ongo', 'cycl', 'volum', 'low', 'video', 'music', 'peopl', 'say', 'hear', 'selv', 'echo', 'piec', 'crap', 'mani', 'problem', 'never', 'order', 'rush', 'direct'], ['good', 'phone', 'batteri', 'life', 'good', 'way', 'better', 'samsung', 'galaxi', 'also', 'great', 'sound', 'realli', 'good', 'far', 'good', 'seller', 'got', 'phone', 'good', 'time', 'great', 'condit'], ['bought', 'two', 'one', 'one', 'wife', 'blu', 'phone', 'mani', 'featur', 'not', 'found', 'phone', 'price', 'six', 'month', 'like', 'not', 'problem', 'app', 'not', 'run', 'never', 'dollar', 'phone', 'guess', 'not', 'know', 'exact', 'get', 'phone', 'everyth', 'need', 'not', 'want', 'spend', 'dollar', 'phone', 'check'], ['purchas', 'item', 'late', 'octob', 'late', 'feburauri', 'lcd', 'light', 'go', 'faint', 'think', 'dark', 'thin', 'line', 'run', 'vertic', 'across', 'screen', 'screen', 'flash', 'warranti', 'end', 'decemb', 'second', 'blu', 'not', 'purchas', 'anoth'], ['work', 'great', 'awesom', 'batteri', 'life'], ['samsung', 'user', 'sprint', 'work', 'great', 'new', 'devic', 'differ', 'vendor', 'take', 'bit', 'get', 'custom', 'connect', 'internet', 'well', 'app', 'function', 'fine', 'problem', 'one', 'blue', 'tooth', 'devic', 'super', 'happi'], ['not', 'work', 'verizon', 'not', 'work', 'verizon', 'work', 'gsm', 'phone', 'network', 'tmobil', 'boost', 'etc', 'verizon', 'cdma', 'phone', 'not', 'work', 'nice', 'phone', 'not', 'work', 'unfortun'], ['great', 'product'], ['nice', 'phone', 'fast', 'two', 'line', 'lot', 'batteri', 'day', 'full', 'use', 'without', 'recharg'], ['great', 'phone', 'oper', 'like', 'tablet', 'not', 'much', 'like', 'without', 'expens', 'price', 'batteri', 'last', 'coupl', 'day', 'recharg', 'big', 'plus'], ['os', 'kind', 'slow'], ['problem', 'tri', 'answer', 'phone', 'applic', 'open', 'not', 'work', 'two', 'week', 'ago', 'couldi', 'realli', 'want', 'chang'], ['not', 'receiv', 'text', 'peopl', 'goe', 'old', 'iphon', 'blu', 'energi', 'x', 'phone', 'gold', 'one', 'best', 'phone', 'ever'], ['realli', 'like', 'new', 'energi', 'x', 'plus', 'batteri', 'life', 'visual', 'clariti', 'screen', 'stun', 'take', 'bit', 'longer', 'charg', 'happen', 'twice', 'week', 'worri', 'purchas', 'temper', 'glass', 'screen', 'protector', 'seem', 'make', 'screen', 'even', 'sharper', 'charger', 'come', 'amp', 'charger', 'use', 'charger', 'may', 'may', 'not', 'work', 'bargain', 'phone', 'offer', 'other', 'tether', 'charg', 'cord', 'constant', 'plug', 'phone', 'longest', 'gone', 'half', 'day', 'charg', 'still', 'could', 'made', 'day', 'terrif', 'travel', 'worri', 'power', 'issu'], ['good', 'phone', 'price', 'took', 'india', 'work', 'great', 'charg', 'hold', 'long', 'time', 'excel', 'phone'], ['great', 'phone', 'cheap', 'not', 'best', 'front', 'camera', 'love', 'rest'], ['good'], ['first', 'one', 'last', 'three', 'week', 'would', 'not', 'turn', 'three', 'week', 'later', 'got', 'replac', 'screen', 'loos', 'got', 'see', 'insid', 'energi', 'x', 'plus', 'rma', 'one', 'back', 'blu', 'wait', 'three', 'week', 'rma', 'ten', 'week', 'later', 'final', 'sent', 'anoth', 'lemon', 'one', 'not', 'focus', 'rear', 'camera', 'wireless', 'work', 'half', 'time'], ['great', 'phone', 'appl', 'samsung', 'not', 'upgrad', 'system', 'upgrad', 'factori', 'reset', 'besid', 'great', 'phone'], ['absutley', 'live'], ['front', 'camera', 'horribl'], ['give', 'phone', 'star', 'camera', 'not', 'great', 'also', 'phone', 'not', 'fast', 'price', 'get', 'justifi', 'batteri', 'life', 'amaz', 'not', 'charg', 'phone', 'two', 'day', 'still', 'go', 'would', 'recomend', 'phone', 'anyon', 'want', 'big', 'screen', 'good', 'batteri', 'use', 'speed', 'think', 'phone', 'par', 'higher', 'end', 'tech', 'think'], ['arriv', 'time', 'phone', 'issu', 'day', 'attempt', 'lollipop', 'system', 'updat', 'indic', 'phone', 'follow', 'direct', 'result', 'left', 'phone', 'unabl', 'see', 'either', 'sim', 'card', 'noth', 'work', 'short', 'factori', 'set', 'well', 'still', 'like', 'phone'], ['realli', 'like', 'phone', 'not', 'heavi', 'hand', 'realli', 'sleek', 'look', 'love', 'gold', 'color', 'featur', 'wish', 'still', 'like', 'split', 'screen', 'realli', 'complaint', 'price', 'paid'], ['littl', 'brother', 'first', 'price', 'point', 'perfect', 'perform', 'provid', 'add', 'peac', 'mind', 'not', 'expens', 'phone', 'not', 'like', 'play', 'around', 'android', 'experi', 'pretti', 'clean', 'overal', 'tell', 'pretti', 'comfort'], ['work', 'great', 'wish', 'ringer', 'speaker', 'phone', 'louder'], ['far', 'good', 'work', 'good'], ['love', 'work', 'great'], ['good'], ['third', 'blu', 'studio', 'phone', 'i', 'bought', 'two', 'week', 'mah', 'batteri', 'charg', 'next', 'day', 'dead', 'sit', 'idl', 'plug', 'let', 'charg', 'never', 'went', 'past', 'constant', 'flash', 'low', 'batteri', 'min', 'i', 'send', 'back', 'mayb', 'tri', 'anoth', 'brand', 'ho', 'also', 'antivirus', 'said', 'brand', 'new', 'phone', 'root', 'remov', 'antivirus', 'instal', 'differ', 'antivirus', 'say', 'thing', 'i', 'would', 'finish', 'softwar', 'updat'], ['love', 'love', 'love', 'color', 'design', 'telephon', 'super', 'fast', 'stay', 'charg', 'problem', 'would', 'recommend'], ['love', 'phone', 'say', 'excel', 'batteri', 'life', 'everyon', 'els', 'scrambl', 'plug', 'phone', 'i', 'let', 'borrow', 'charger', 'not', 'usual', 'need'], ['bought', 'boyfriend', 'love'], ['good'], ['good', 'phone', 'price'], ['far', 'good', 'great', 'phone'], ['could', 'not', 'happier', 'price', 'great'], ['hope', 'phone', 'sim', 'card', 'slot', 'holder', 'crook', 'warp', 'loos', 'got', 'like', 'phone', 'like', 'blu', 'product', 'would', 'not', 'actual', 'hold', 'sim', 'card', 'without', 'hold', 'place', 'inconveni', 'go', 'send', 'back', 'replac'], ['great', 'satisfi', 'thank'], ['exel', 'phone', 'fair', 'cost'], ['disappoint', 'phone', 'work', 'fine', 'week', 'stop', 'receiv', 'call', 'return', 'amazon', 'receiv', 'second', 'phone', 'phone', 'last', 'week', 'not', 'stop', 'receiv', 'call', 'frequent', 'troubl', 'place', 'call', 'stuck', 'phone', 'total', 'useless', 'amazon', 'not', 'let', 'return', 'coupl', 'day', 'day', 'time', 'limit'], ['far', 'good', 'work', 'well', 'price', 'hold', 'charg', 'mani', 'day'], ['replac', 'lg', 'phone', 'one', 'far', 'everyth', 'work', 'fine', 'happi', 'far', 'metropc'], ['perfecto'], ['excel', 'good', 'bien', 'i', 'sorri', 'traduct'], ['basic', 'menu'], ['good', 'articl', 'thank', 'recommend'], ['cheap', 'phone', 'cheap', 'qualiti', 'volum', 'set', 'not', 'read', 'file', 'sd', 'rington', 'option', 'menu', 'suck', 'not', 'transfer', 'data', 'sd', 'phone', 'read', 'file', 'sd', 'card', 'via', 'file', 'manag', 'wast', 'money', 'not', 'buy', 'add', 'cash', 'get', 'someth', 'better', 'even', 'year', 'old', 'qwerti', 'cellphon', 'function', 'one'], ['excel', 'product'], ['sister', 'differ', 'cell', 'phone', 'cheaper', 'pay', 'everi', 'month'], ['wast', 'money', 'not', 'unlock', 'not', 'buy'], ['poor', 'qualiti', 'not', 'smart', 'screen', 'toy', 'old'], ['good'], ['total', 'recommend'], ['good', 'mobil'], ['muy', 'bueno', 'excelent', 'recomend'], ['cheap', 'awesom', 'phone', 'batteri', 'last', 'long', 'time', 'bluetooth', 'set', 'littl', 'complic', 'first', 'not', 'know', 'phone', 'bluetooth'], ['good', 'articl', 'thank', 'recommend'], ['ideal', 'cheap', 'cel'], ['good', 'littl', 'phone'], ['good'], ['bueno'], ['never', 'could', 'get', 'pictur', 'text', 'not', 'work', 'wast', 'money'], ['good', 'look', 'spare', 'phone', 'bad', 'thing', 'volum', 'control'], ['poor', 'qualiti', 'not', 'smart', 'screen', 'toy', 'old'], ['put', 'chip', 'turn', 'done', 'run', 'sinc', 'issu', 'person', 'gave', 'sveri', 'happi', 'larg', 'key', 'nice', 'dispos', 'phone', 'price'], ['total', 'piec', 'get', 'pay', 'guess', 'better', 'option'], ['mom', 'main', 'purpos', 'phone', 'call'], ['excel', 'phone'], ['nice', 'featur', 'phone', 'folk', 'not', 'want', 'smartphon', 'realli', 'bright', 'big', 'screen', 'compar', 'featur', 'phone', 'howev', 'took', 'star', 'fact', 'came', 'spanish', 'howev', 'abl', 'chang', 'back', 'english', 'follow', 'devic', 'set', 'configuración', 'languag', 'input', 'idioma', 'entrada', 'de', 'languag', 'idioma', 'select', 'english', 'back', 'button', 'make', 'sure', 'languag', 'devic', 'chang'], ['not', 'send', 'pictur', 'messag', 'phone', 'would', 'use', 'inform', 'purchas', 'phone', 'employe', 'reason', 'bought', 'phone', 'photo', 'updat', 'job', 'site', 'way', 'share', 'photo', 'via', 'bluetooth', 'devic'], ['good'], ['excel', 'product'], ['good'], ['batteri', 'life', 'look', 'good', 'phone', 'good', 'backup', 'phone'], ['fine'], ['great', 'price', 'uncl', 'need', 'dual', 'sim', 'phone', 'work', 'globali', 'phone', 'calk', 'text', 'messag', 'work', 'great', 'south', 'america', 'even', 'radio'], ['excel'], ['work', 'perfect'], ['good'], ['wast', 'money', 'not', 'unlock', 'not', 'buy'], ['less', 'month', 'charg', 'port', 'went', 'vibrat', 'motor', 'errat'], ['nice', 'one'], ['excel', 'phone', 'price', 'lightweight', 'speedi', 'impress', 'tri', 'sever', 'blu', 'phone', 'far', 'better', 'one', 'one', 'i', 'hold', 'easi', 'set', 'easi', 'upgrad', 'kitkat', 'respons', 'screen', 'great', 'look', 'not', 'bloat', 'junk', 'app', 'look', 'great', 'gsm', 'phone', 'unlock', 'readi', 'step', 'phone', 'not', 'work', 'blu', 'lol'], ['love', 'phone', 'design', 'i', 'receiv', 'compliment', 'multipl', 'peopl', 'orang', 'bar', 'across', 'bottom', 'aesthet', 'like', 'set', 'phone', 'apart', 'design', 'style', 'right', 'gps', 'navig', 'not', 'work', 'not', 'know', 'chang', 'finger', 'cross', 'noth', 'happen', 'mess', 'issu', 'home', 'back', 'list', 'button', 'not', 'sensit', 'would', 'like', 'sometim', 'press', 'sensor', 'multipl', 'time', 'act', 'howev', 'screen', 'quit', 'sensit', 'clariti', 'resolut', 'fantast', 'screen', 'size', 'right', 'fit', 'palm', 'updat', 'review', 'anyth', 'chang', 'far', 'good'], ['great', 'phone', 'great', 'price', 'phone', 'week', 'i', 'feel', 'great', 'hand', 'great', 'design', 'slim', 'eye', 'test', 'galaxi', 'seri', 'favorit', 'phone', 'htcs', 'android', 'kit', 'kat', 'applic', 'store', 'data', 'speed', 'steadi', 'impress', 'bluetooth', 'speaker', 'camera', 'work', 'great', 'noth', 'android', 'user', 'use', 'attract', 'thing', 'phone', 'come', 'unlock', 'job', 'blu', 'i', 'satisfi'], ['phone', 'two', 'week', 'love', 'first', 'color', 'green', 'beauti', 'bright', 'love', 'screen', 'resolut', 'better', 'samsung', 'camera', 'ok', 'take', 'pictur', 'instagram', 'come', 'much', 'better', 'think', 'buy', 'would', 'not', 'disappoint'], ['excelent'], ['great', 'phone', 'screen', 'resolut', 'nice', 'size', 'phone', 'screen', 'real', 'estat', 'right', 'thin', 'phone', 'perfect', 'hand', 'everyth', 'work', 'perfect', 'googl', 'play', 'store', 'work', 'easi', 'setup', 'pictur', 'qualiti', 'video', 'qualiti', 'right', 'par', 'camera', 'price', 'rang', 'one', 'larg', 'dual', 'sim', 'slot', 'one', 'small', 'sim', 'card', 'slot', 'microsd', 'card', 'work', 'perfect', 'add', 'nice', 'bit', 'extra', 'extern', 'storag', 'high', 'recommend', 'get', 'extra', 'microsd', 'card', 'window', 'blu', 'phone', 'easili', 'recogn', 'comput', 'transfer', 'file', 'quick', 'basic', 'window', 'explor', 'screen', 'came', 'charger', 'usb', 'cabl', 'nice', 'clear', 'back', 'cover', 'add', 'littl', 'protect', 'phone'], [], ['excelent', 'producto'], ['love'], ['phone', 'work', 'great', 'love', 'sleek', 'light', 'easi', 'carri', 'alreadi', 'screen', 'protector', 'i', 'troubl', 'bluetooth', 'camera', 'app', 'everyth', 'work', 'bought', 'phone', 'replac', 'old', 'phone', 'broke', 'wait', 'upgrad', 'like', 'much', 'think', 'i', 'keep', 'longer'], ['best', 'gift', 'love', 'phone', 'look', 'kool', 'larg', 'screen', 'bulki', 'weak', 'bell', 'whistl', 'wonder', 'price'], ['love'], ['like', 'phone', 'use', 'sister', 'buy', 'also', 'like', 'much'], ['good', 'phone'], ['complaint', 'thqt', 'extrem', 'accur', 'order', 'use', 'capacitv', 'button'], ['phone', 'work', 'well', 'sharp', 'resolut', 'reason', 'not', 'give', 'camera', 'take', 'moment', 'gain', 'clear', 'focus', 'not', 'handl', 'adjust', 'slight', 'movement', 'still', 'great', 'phone'], ['excel', 'love'], ['love', 'phone', 'reason', 'gave', 'star', 'batteri', 'life', 'charg', 'everyday', 'compar', 'cheaper', 'blu', 'phone', 'blu', 'advanc', 'could', 'play', 'game', 'hour', 'not', 'charg', 'two', 'phone', 'work', 'great', 'even', 'camera', 'surpris'], [], ['box', 'show', 'previous', 'own', 'not', 'mind', 'amazon', 'good', 'gentl', 'use', 'product', 'fulli', 'charg', 'problem', 'download', 'great', 'storag', 'awesom', 'less', 'year', 'later', 'not', 'hold', 'charg', 'find', 'one', 'product', 'ridicul', 'return', 'polici', 'done', 'bright', 'orang', 'worthless', 'buy', 'product'], ['work', 'well', 'could', 'imagin', 'read', 'featur', 'week', 'use', 'display', 'mine', 'broke', 'liter', 'not', 'drop', 'hit', 'anyth', 'time', 'go', 'answer', 'call', 'took', 'shirt', 'pocket', 'display', 'broken', 'cellphon', 'prior', 'abl', 'even', 'pant', 'pocket', 'noth', 'happen', 'i', 'pretti', 'sure', 'not', 'anyth', 'could', 'date', 'almost', 'two', 'year', 'later', 'not', 'find', 'replac', 'screen', 'phone', 'bad', 'phone', 'zero', 'possibl', 'repair'], ['excel'], ['amaz', 'phone', 'updat', 'kitkat', 'work', 'flawless', 'processor', 'amaz', 'dollar', 'not', 'get', 'better', 'camera', 'nice', 'come', 'iphon', 'galaxi', 'notic', 'pixel', 'screen', 'resolut', 'great', 'problem', 'overh', 'batteri', 'life', 'crush', 'iphon', 'crazi', 'consid', 'screen', 'much', 'bigger', 'plus', 'super', 'light', 'weight', 'probabl', 'one', 'aesthet', 'pleas', 'smart', 'phone', 'seen'], ['excel', 'phone'], ['good', 'phone', 'work', 'expect'], ['bought', 'wife', 'nice', 'phone', 'replac', 'galaxi', 'grand', 'duo'], ['excel', 'phone'], ['thought', 'got', 'went', 'three', 'charg', 'seven', 'month', 'would', 'never', 'buy', 'blu'], ['bought', 'phone', 'june', 'yrs', 'still', 'work', 'day', 'one', 'glitch', 'sometim', 'give', 'flash', 'red', 'frame', 'second', 'not', 'bother', 'research', 'found', 'develop', 'option', 'not', 'know', 'disabl', 'option'], ['say', 'get', 'internet', 'data'], ['recomendado', 'good'], ['final', 'receiv', 'blu', 'life', 'happi'], ['great', 'phone'], ['less', 'month', 'charg', 'port', 'went', 'vibrat', 'motor', 'errat'], ['phone', 'week', 'terribl', 'time', 'internet', 'connect', 'use', 'prepaid', 'straight', 'talk', 'plan', 'reason', 'apn', 'set', 'seem', 'not', 'stick', 'someth', 'data', 'connect', 'work', 'time', 'not', 'other', 'rhyme', 'reason', 'talk', 'straight', 'talk', 'verifi', 'correct', 'apn', 'set', 'last', 'night', 'redid', 'work', 'morn', 'stop', 'unabl', 'restart', 'phone', 'find', 'trick', 'make', 'work', 'anyon', 'suggest', 'pleas', 'help'], ['bought', 'son', 'month', 'lock', 'call', 'blu', 'sever', 'time', 'everi', 'time', 'hung', 'phone', 'terribl', 'custom', 'servic', 'not', 'buy', 'wast', 'money'], ['excel'], ['updat', 'not', 'buy', 'crap', 'month', 'month', 'warranti', 'expir', 'wife', 'stop', 'charg', 'touch', 'screen', 'random', 'throw', 'fit', 'freak', 'mine', 'speakerphon', 'complet', 'touchscreen', 'issu', 'wife', 'purchas', 'pink', 'blu', 'life', 'week', 'ago', 'smash', 'samsung', 'accident', 'full', 'day', 'worth', 'look', 'differ', 'phone', 'differ', 'blu', 'brand', 'phone', 'decid', 'spend', 'extra', 'buck', 'work', 'realli', 'impress', 'processor', 'screen', 'size', 'price', 'lack', 'ram', 'end', 'phone', 'sound', 'like', 'great', 'amount', 'process', 'power', 'littl', 'worri', 'batteri', 'life', 'want', 'seem', 'reason', 'receiv', 'ecstat', 'far', 'littl', 'weird', 'wifi', 'initi', 'reason', 'os', 'kept', 'set', 'use', 'static', 'ip', 'instead', 'use', 'dhcp', 'would', 'probabl', 'major', 'deal', 'not', 'field', 'none', 'less', 'work', 'second', 'fiddl', 'network', 'set', 'honest', 'could', 'accident', 'either', 'part', 'not', 'fault', 'phone', 'issu', 'mention', 'previous', 'littl', 'worri', 'batteri', 'life', 'larg', 'screen', 'processor', 'wife', 'claim', 'charg', 'day', 'heavi', 'user', 'know', 'i', 'button', 'bottom', 'tini', 'compar', 'space', 'avail', 'i', 'not', 'sure', 'could', 'bigger', 'main', 'concern', 'i', 'phone', 'use', 'wife', 'wife', 'not', 'problem', 'much', 'simpli', 'small', 'lip', 'bottom', 'color', 'buy', 'littl', 'awkward', 'posit', 'versus', 'phone', 'take', 'get', 'use', 'capabl', 'not', 'terribl', 'use', 'pretti', 'much', 'anyon', 'us', 'none', 'less', 'hard', 'track', 'correct', 'sim', 'card', 'work', 'sinc', 'could', 'not', 'find', 'size', 'took', 'refer', 'two', 'sim', 'slot', 'one', 'slot', 'accept', 'standard', 'size', 'accept', 'not', 'accept', 'nano', 'sim', 'not', 'problem', 'us', 'i', 'never', 'even', 'seen', 'us', 'littl', 'frail', 'worri', 'break', 'compar', 'thick', 'rock', 'solid', 'thing', 'feel', 'brittl', 'could', 'bend', 'break', 'easili', 'case', 'hard', 'next', 'imposs', 'find', 'luckili', 'shop', 'work', 'temper', 'glass', 'i', 'go', 'put', 'temper', 'glass', 'tri', 'make', 'sound', 'negat', 'minor', 'issu', 'phone', 'perfect', 'even', 'price', 'would', 'still', 'say', 'fair', 'deal', 'use', 'bunk', 'android', 'phone', 'past', 'month', 'love', 'wife', 'blu', 'life', 'much', 'went', 'ahead', 'purchas', 'orang', 'one', 'not', 'wait', 'yellow', 'not', 'know', 'want', 'yellow', 'got', 'orang', 'one', 'instead', 'honest', 'price', 'hetro', 'man', 'man', 'would', 'glad', 'purchas', 'bright', 'pink', 'one', 'poni', 'fair', 'proud', 'show', 'new', 'phone', 'peer', 'pros', 'price', 'price', 'price', 'crazi', 'cheap', 'phone', 'got', 'within', 'day', 'amazon', 'prime', 'year', 'ago', 'oogl', 'processor', 'well', 'feel', 'like', 'compar', 'phone', 'easili', 'wife', 'use', 'straighttalk', 'current', 'use', 'mine', 'arriv', 'plan', 'run', 'switch', 'us', 'famili', 'plan', 'month', 'octacor', 'processor', 'crazi', 'respons', 'move', 'app', 'menus', 'effortless', 'without', 'delay', 'wife', 'play', 'game', 'could', 'not', 'previous', 'play', 'without', 'lag', 'even', 'sound', 'much', 'higher', 'qualiti', 'intern', 'speaker', 'outstand', 'qualiti', 'loud', 'not', 'distort', 'noth', 'expect', 'particular', 'picki', 'not', 'think', 'wife', 'could', 'go', 'back', 'use', 'speakerphon', 'lot', 'one', 'reason', 'not', 'hesit', 'buy', 'one', 'love', 'music', 'good', 'enough', 'casual', 'listen', 'music', 'room', 'batteri', 'life', 'par', 'older', 'larger', 'phone', 'not', 'absolut', 'best', 'not', 'bad', 'dual', 'sim', 'pretti', 'neat', 'not', 'much', 'use', 'switch', 'provid', 'soon', 'imagin', 'use', 'deal', 'see', 'comment', 'sim', 'size', 'howev', 'screen', 'realli', 'nice', 'tell', 'not', 'high', 'resolut', 'probabl', 'size', 'thing', 'appear', 'bigger', 'instead', 'sharper', 'overal', 'still', 'littl', 'fragil', 'look', 'thin', 'i', 'terrifi', 'existantgo', 'stick', 'back', 'pocket', 'sit', 'bend', 'one', 'amazon', 'come', 'cheap', 'plastic', 'case', 'help', 'though', 'case', 'basic', 'non', 'exist', 'hard', 'find', 'mayb', 'anoth', 'blu', 'phone', 'case', 'compat', 'one', 'would', 'love', 'know', 'case', 'absolut', 'total', 'i', 'found', 'specif', 'blu', 'life', 'blame', 'manufactur', 'amazon', 'could', 'not', 'find', 'sim', 'size', 'anywher', 'hope', 'sim', 'would', 'fit', 'three', 'sim', 'size', 'standard', 'micro', 'regular', 'phone', 'accept', 'standard', 'micro', 'not', 'nano', 'tell', 'standard', 'micro', 'littl', 'bit', 'cardboard', 'around', 'metal', 'chip', 'nano', 'sim', 'phone', 'not', 'accept', 'absolut', 'cardboard', 'around', 'metal', 'chip', 'button', 'bottom', 'kind', 'small', 'awkward', 'posit', 'lip', 'throw', 'switch', 'new', 'phone', 'wife', 'use', 'phone', 'day', 'day', 'everi', 'time', 'use', 'either', 'miss', 'button', 'entir', 'end', 'touch', 'screen', 'instead', 'least', 'mean', 'press', 'back', 'button', 'far', 'right', 'realli', 'wish', 'could', 'make', 'phone', 'keep', 'illumin', 'time', 'ram', 'littl', 'small', 'honest', 'thing', 'separ', 'phone', 'high', 'end', 'phone', 'galaxi', 'slight', 'smaller', 'screen', 'phone', 'ram', 'instead', 'howev', 'wife', 'use', 'phone', 'heavili', 'not', 'howev', 'would', 'give', 'phone', 'easi', 'overal', 'sure', 'price'], ['edit', 'aug', 'return', 'phone', 'would', 'not', 'stop', 'skip', 'play', 'slacker', 'pandora', 'furthermor', 'connect', 'set', 'bluetooth', 'headphon', 'phone', 'stop', 'work', 'coupl', 'minut', 'googl', 'see', 'not', 'phone', 'blu', 'life', 'phone', 'not', 'cool', 'return', 'blu', 'life', 'pure', 'not', 'much', 'better', 'stay', 'away', 'blu', 'got', 'phone', 'today', 'first', 'impress', 'pros', 'nice', 'build', 'qualitybright', 'screennic', 'includ', 'accessoriescon', 'screen', 'protector', 'alreadi', 'instal', 'lot', 'bubbl', 'rip', 'offno', 'lte', 'alreadi', 'knew', 'i', 'not', 'mark', 'sim', 'signal', 'meter', 'not', 'go', 'away', 'everytim', 'turn', 'phone', 'notifi', 'slot', 'miss', 'simthat', 'think', 'right', 'updat', 'need', 'overal', 'great', 'phone', 'would', 'recommend', 'peopl'], ['excelent'], ['bought', 'fir', 'spous', 'love'], ['i', 'thing', 'sinc', 'novemb', 'great', 'phone', 'come', 'free', 'case', 'still', 'aliv', 'even', 'though', 'i', 'drop', 'time', 'without', 'case', 'sure', 'everi', 'keyboard', 'glitch', 'hey', 'not', 'big', 'deal', 'mean', 'i', 'year', 'still', 'use', 'hell', 'not', 'listen', 'peopl', 'rate', 'bad', 'not', 'work', 'might', 'never', 'happen', 'return', 'get', 'new', 'one', 'problem', 'solv', 'might', 'last', 'forev'], ['price', 'fantast', 'first', 'smartphon', 'mom', 'not', 'want', 'spend', 'price', 'one', 'could', 'equip', 'whole', 'famili', 'beauti', 'phone', 'decent', 'batteri', 'life', 'take', 'love', 'pictur', 'camera', 'easili', 'get', 'wifi', 'signal', 'unlik', 'samsung', 'mini', 'one', 'not', 'care', 'latest', 'big', 'name', 'smartphon', 'definit', 'would', 'recommend', 'one'], ['excel', 'phone', 'price', 'almost', 'month', 'phone', 'work', 'great', 'not', 'face', 'issu', 'bluetooth', 'custom', 'complain', 'batteri', 'life', 'good', 'regular', 'usag', 'hold', 'charg', 'upto', 'week', 'standbi', 'week', 'check', 'featur', 'far', 'everyth', 'work', 'great', 'great', 'look', 'ultra', 'slim', 'pay', 'much', 'iphon', 'samsung', 'htc'], ['fast', 'deliveri', 'best', 'phone', 'ever', 'own', 'wish', 'peopl', 'use', 'blue'], ['phone', 'amaz', 'good', 'job', 'dollar', 'phone', 'well', 'worth', 'money'], ['muybueno', 'excelent'], ['wast', 'time', 'money', 'get', 'way', 'better', 'phone', 'year', 'older', 'price', 'would', 'not', 'recommend', 'smart', 'phone'], ['buy', 'think', 'problem', 'touch', 'screen', 'hard', 'stuff', 'otherwis', 'think', 'good', 'phone'], ['amazon', 'arriv', 'week', 'came', 'nice', 'packag', 'awesom', 'phone', 'compar', 'phone', 'beauti', 'inch', 'display', 'except', 'perform', 'core', 'everyth', 'android', 'work', 'perfect', 'perform', 'well', 'hd', 'movi', 'play', 'flawless', 'wireless', 'carrier', 'activ', 'perform', 'absolut', 'issu', 'sensor', 'work', 'great', 'power', 'consumpt', 'appear', 'reason', 'extens', 'hd', 'media', 'stream', 'well', 'heavi', 'app', 'use', 'app', 'relat', 'work', 'game', 'media', 'work', 'wonder', 'soft', 'protect', 'case', 'includ', 'phone', 'addit', 'standard', 'batteri', 'back', 'cover', 'not', 'see', 'need', 'purchas', 'addit', 'protect', 'case', 'addit', 'glass', 'cover', 'also', 'includ', 'box', 'realli', 'not', 'need', 'came', 'pretti', 'good', 'headphon', 'charger', 'cabl', 'includ', 'alreadi', 'order', 'card', 'go', 'phone', 'total', 'memori', 'taken', 'android', 'os', 'report', 'low', 'volum', 'speaker', 'phone', 'not', 'feel', 'case', 'phone', 'play', 'compar', 'high', 'brand', 'name', 'phone', 'note', 'phone', 'like', 'mani', 'new', 'phone', 'take', 'card', 'old', 'standard', 'sim', 'card', 'may', 'need', 'get', 'somehow', 'convert', 'store', 'not', 'see', 'edit', 'review', 'assum', 'well', 'purchas', 'high', 'got', 'microsd', 'card', 'sandisk', 'follow', 'arrow', 'sign', 'microsd', 'socket', 'within', 'back', 'open', 'phone', 'secur', 'format', 'use', 'android', 'storag', 'set', 'card', 'recogn', 'easili', 'mount', 'file', 'system', 'data', 'intern', 'microphon', 'dead', 'week', 'request', 'replac', 'headphon', 'jack', 'still', 'work'], ['not', 'sure', 'phone', 'i', 'glad', 'got', 'far', 'love', 'everyth', 'look', 'good', 'phone', 'get', 'one'], ['awesom', 'phone', 'everyway', 'perform', 'price', 'operationdu', 'sim', 'card', 'awesom', 'work', 'cali', 'ltebatteri', 'last', 'long', 'timeveri', 'clean', 'instal', 'os', 'greatscreen', 'look', 'good', 'complaint', 'screen', 'feel', 'over', 'sensit', 'sometim', 'swipe', 'regist', 'touch', 'remov', 'screen', 'protector', 'work', 'much', 'better'], ['camera', 'great', 'phone', 'replac', 'batteri', 'phone', 'start', 'fail', 'could', 'not', 'alway', 'swipe', 'answer', 'call', 'screen', 'would', 'merg', 'togeth', 'constant', 'restart', 'phone'], ['worth', 'yes', 'fact', 'simpli', 'better', 'valu', 'money', 'blue', 'life', 'xl', 'big', 'phone', 'shock', 'good', 'deal', 'somebodi', 'pinch', 'ungrat', 'soul', 'whine', 'memori', 'examin', 'competit', 'realiz', 'everyon', 'memori', 'competit', 'offer', 'less', 'demand', 'blue', 'ram', 'storag', 'lcd', 'mp', 'batteri', 'mah', 'moto', 'e', 'ram', 'storag', 'lcd', 'batteri', 'mah', 'moto', 'e', 'ram', 'storag', 'lcd', 'batteri', 'mah', 'moto', 'g', 'ram', 'storag', 'lcd', 'mp', 'batteri', 'mah', 'perform', 'perform', 'wasi', 'better', 'anticip', 'shame', 'lg', 'vista', 'bigger', 'memori', 'even', 'challeng', 'alcatel', 'idol', 'import', 'perform', 'geekbench', 'result', 'singl', 'moto', 'lg', 'vista', 'snapdragon', 'ghz', 'samsung', 'moto', 'e', 'samsung', 'blu', 'xl', 'alcatel', 'idol', 'snapdragon', 'asus', 'amaz', 'display', 'worth', 'cost', 'alon', 'not', 'expect', 'much', 'display', 'due', 'negat', 'youtub', 'review', 'surpris', 'find', 'display', 'bright', 'sharp', 'good', 'color', 'satur', 'not', 'compet', 'samsung', 'note', 'amol', 'color', 'satur', 'way', 'better', 'lg', 'vista', 'ip', 'fact', 'blu', 'outshin', 'sharp', 'bright', 'make', 'phone', 'use', 'daylight', 'phone', 'resolut', 'yet', 'blu', 'text', 'seem', 'sharper', 'crispier', 'read', 'lot', 'text', 'sharp', 'import', 'summari', 'phone', 'blu', 'made', 'right', 'call', 'go', 'rom', 'reduc', 'cost', 'prefer', 'rom', 'configur', 'would', 'also', 'price', 'push', 'blu', 'budget', 'market', 'asus', 'zenfon', 'screen', 'storag', 'great', 'camera', 'blu', 'must', 'price', 'far', 'generat', 'sale', 'suffici', 'asus', 'price', 'tag', 'justifi', 'price', 'would', 'even', 'better', 'either', 'go', 'cheap', 'blu', 'pay', 'asus', 'zenfon', 'not', 'buy', 'overpric', 'moto', 'g'], ['short', 'good', 'phone', 'money', 'write', 'detail', 'review', 'actual', 'got', 'sever', 'blu', 'phone', 'budget', 'model', 'winner', 'see', 'mani', 'star', 'review', 'practic', 'con', 'list', 'repli', 'go', 'ahead', 'list', 'altern', 'price', 'heck', 'complain', 'lollipop', 'upgrad', 'well', 'blu', 'never', 'said', 'avail', 'right', 'away', 'end', 'juli', 'rather', 'remov', 'star', 'someth', 'not', 'suppos', 'anoth', 'strategi', 'would', 'not', 'understand', 'long', 'serious', 'batteri', 'life', 'nexus', 'bare', 'surviv', 'one', 'day', 'guy', 'hold', 'excel', 'sound', 'qualiti', 'not', 'know', 'hardwar', 'put', 'good', 'one', 'speakerphon', 'mode', 'price', 'point', 'good', 'view', 'angl', 'talk', 'screen', 'mine', 'detect', 'touch', 'good', 'precis', 'someth', 'would', 'rare', 'see', 'cheap', 'phone', 'imag', 'screen', 'look', 'surfac', 'not', 'dip', 'thin', 'small', 'thing', 'like', 'come', 'screen', 'protector', 'instal', 'extra', 'soft', 'case', 'sensor', 'proxim', 'light', 'gyro', 'etc', 'not', 'dust', 'proof', 'cheap', 'slow', 'camera', 'ok', 'imag', 'not', 'bad', 'auto', 'focus', 'fail', 'darker', 'sluggish', 'cpu', 'speed', 'good', 'antutu', 'enough', 'swipe', 'screen', 'simpli', 'delay', 'mayb', 'fix', 'firmwar', 'upgrad', 'think', 'hardwar', 'limit', 'save', 'someth', 'right', 'go', 'back', 'budget', 'option', 'return', 'screen', 'respons', 'across', 'board', 'side', 'note', 'clear', 'peopl', 'got', 'screen', 'sd', 'card', 'slot', 'take', 'risk', 'exchang', 'unlucki', 'outsid', 'us', 'care', 'yes', 'problem', 'watch', 'youtub'], ['wife', 'love', 'phone'], ['blue', 'life', 'said', 'upgrad', 'android', 'not', 'blue', 'not', 'made', 'upgrad', 'avail', 'bewar', 'inaccur', 'advertis'], ['want', 'go', 'back', 'android', 'window', 'phone', 'start', 'feel', 'like', 'use', 'went', 'phone', 'spec', 'good', 'not', 'omg', 'still', 'worth', 'con', 'would', 'speaker', 'screen', 'not', 'gorilla', 'glass', 'protect'], ['great', 'phone', 'even', 'better', 'price'], ['one', 'best', 'model', 'ever', 'use', 'consid', 'price', 'came', 'use', 'accessori', 'screen', 'protector', 'case', 'would', 'recommend'], ['great', 'phone'], ['phone', 'look', 'great', 'physic', 'aspect', 'bright', 'color', 'big', 'screen', 'sad', 'problem', 'touch', 'screen', 'respons', 'slow', 'delay', 'swipe', 'tap', 'respons', 'tell', 'delay', 'also', 'bend', 'easili', 'care', 'put', 'pocket', 'complaint', 'would', 'cool', 'phone', 'prize'], ['glitch', 'far', 'good', 'price'], ['good', 'excel'], ['i', 'use', 'phone', 'sinc', 'septemb', 'work', 'perfect', 'use', 'two', 'sim', 'card', 'batteri', 'end', 'day', 'still', 'video', 'look', 'crisp', 'cast', 'pictur', 'video', 'tv', 'anyon', 'think', 'buy', 'not', 'hesit', 'buy'], ['screen', 'came', 'unglu', 'within', 'first', 'week', 'touch', 'screen', 'not', 'work', 'charg', 'ear', 'speaker', 'crack', 'inaud', 'not', 'happi', 'custom', 'would', 'not', 'recommend'], ['could', 'not', 'find', 'sim', 'card'], ['one', 'stand', 'appl', 'iphon', 'samsung', 'pictur', 'brilliant', 'qualiti', 'excel', 'afford', 'price', 'biggest', 'reason', 'not', 'give', 'star', 'drop', 'call', 'frequent', 'continu', 'use', 'anoth', 'month', 'evalu', 'custom', 'servic', 'call', 'drop', 'issu', 'wise', 'nice', 'phone'], ['got', 'mrs', 'love', 'great', 'phone', 'reason', 'price'], ['love', 'new', 'phone', 'bought', 'self', 'gift', 'christma', 'thing', 'gave', 'hard', 'time', 'fact', 'get', 'sim', 'card', 'compat', 'phone', 'sinc', 'straight', 'talk', 'overal', 'love', 'phone'], ['love', 'phone', 'everyth', 'recommend', 'anyon'], ['great', 'phone', 'price', 'issu', 'function', 'note', 'buyer', 'version', 'phone', 'differ', 'band', 'make', 'sure', 'carrier', 'support', 'use', 'us', 'version', 'work', 'great', 'also', 'word', 'phone', 'review', 'web', 'not', 'give', 'phone', 'great', 'rate', 'littl', 'unfair', 'phone', 'not', 'flagship'], ['second', 'blu', 'buy', 'far', 'i', 'not', 'dissapoint', 'opinon', 'best', 'get', 'price'], ['realli', 'hate', 'give', 'phone', 'two', 'star', 'rate', 'great', 'size', 'camera', 'stop', 'work', 'sudden', 'without', 'warn', 'two', 'week', 'got', 'not', 'even', 'sure', 'happen', 'screen', 'went', 'total', 'black', 'front', 'back', 'strang', 'signal', 'strength', 'never', 'good', 'two', 'bar', 'four', 'blu', 'phone', 'sent', 'one', 'back', 'i', 'still', 'blu', 'cell', 'phone', 'support', 'model', 'work', 'best', 'overal', 'blu', 'studio', 'unlock', 'cellphon', 'complaint', 'overal', 'size', 'bit', 'larg', 'screen', 'size', 'great', 'much', 'bezel', 'top', 'bottom', 'make', 'stick', 'rear', 'pocket', 'could', 'trim', 'excess', 'border', 'bottom', 'top', 'would', 'great', 'phone', 'size', 'best', 'pick', 'blu', 'phone', 'could', 'best', 'blu', 'vivo', 'air', 'unlock', 'cellphon', 'issu', 'batteri', 'life', 'world', 'thinnest', 'phone', 'mean', 'world', 'thinnest', 'weakest', 'batteri', 'need', 'tripl', 'thick', 'batteri', 'make', 'batteri', 'remov', 'charg', 'sever', 'time', 'day', 'depend', 'upon', 'usag', 'not', 'care', 'thin', 'give', 'thick', 'phone', 'day', 'long', 'batteri', 'final', 'model', 'blu', 'life', 'one', 'lte', 'smartphon', 'okay', 'screen', 'smaller', 'i', 'would', 'like', 'signal', 'sensit', 'leav', 'lot', 'desir', 'two', 'bar', 'time', 'insid', 'home', 'zero', 'bar', 'time', 'still', 'receiv', 'call', 'bare', 'worst', 'recept', 'blu', 'cell', 'phone', 'exact', 'condit', 'otherwis', 'good', 'back', 'phone', 'use', 'primari', 'phone', 'camera', 'sudden', 'die', 'decid', 'use', 'camera', 'yesterday', 'first', 'realiz', 'not', 'work', 'sent', 'back', 'refund', 'today', 'almost', 'glad', 'fail', 'honest', 'mani', 'cell', 'phone', 'blu', 'cell', 'phone', 'would', 'continu', 'use', 'not', 'camera', 'otherwis', 'work', 'okay', 'realli', 'like', 'i', 'would', 'buy', 'anoth', 'one', 'not', 'mani', 'blu', 'phone', 'alreadi', 'new', 'product', 'thing', 'happen', 'sometim'], ['love', 'new', 'phone', 'bought', 'self', 'gift', 'christma', 'thing', 'gave', 'hard', 'time', 'fact', 'get', 'sim', 'card', 'compat', 'phone', 'sinc', 'straight', 'talk', 'overal', 'love', 'phone'], ['love', 'phone', 'everyth', 'recommend', 'anyon'], ['love', 'best', 'cellphon'], ['got', 'phone', 'sunday', 'yes', 'deliv', 'sunday', 'excit', 'amazon', 'phone', 'meet', 'expect', 'good', 'build', 'qualiti', 'thin', 'light', 'speaker', 'bluetooth', 'wifi', 'screen', 'sensit', 'speed', 'video', 'far', 'not', 'tri', 'call', 'qualiti', 'overal', 'first', 'review', 'sinc', 'got', 'phone', 'tri', 'not', 'compar', 'known', 'brand', 'name', 'like', 'motorola', 'samsung', 'etc', 'i', 'use', 'nexus', 'bought', 'mom', 'sinc', 'see', 'prob', 'eye', 'phone', 'screen', 'big', 'enough', 'see', 'glad', 'icon', 'big', 'like', 'nexus', 'plus', 'i', 'impress', 'blü', 'low', 'cost', 'unlock', 'phone', 'not', 'greatest', 'camera', 'mean', 'trade', 'price', 'not', 'deal', 'breaker', 'not', 'find', 'light', 'leak', 'side', 'phone', 'like', 'review', 'feel', 'solid', 'power', 'button', 'sensit', 'accident', 'press', 'sinc', 'locat', 'volum', 'button', 'prob', 'low', 'suppos', 'put', 'top', 'phone', 'need', 'use', 'blue', 'instead', 'red', 'notif', 'light', 'assum', 'red', 'not', 'bright', 'blue', 'day', 'light'], ['amaz', 'phone', 'money', 'valu', 'phone', 'go', 'indic', 'blu', 'stuff', 'realli', 'hit', 'mark', 'overview', 'phone', 'averag', 'joe', 'need', 'smartphon', 'make', 'call', 'get', 'send', 'messag', 'googl', 'play', 'store', 'camera', 'decent', 'near', 'stock', 'android', 'experi', 'welcom', 'relief', 'garbag', 'samsung', 'junk', 'phone', 'said', 'detail', 'list', 'pros', 'con', 'con', 'biggest', 'far', 'ram', 'regardless', 'see', 'task', 'manag', 'paltri', 'amount', 'ram', 'mean', 'pretti', 'much', 'everi', 'time', 'switch', 'two', 'applic', 'kill', 'one', 'start', 'kill', 'one', 'restart', 'first', 'etc', 'talk', 'basic', 'stuff', 'like', 'web', 'brows', 'game', 'i', 'would', 'happili', 'paid', 'anoth', 'anoth', 'gig', 'two', 'ram', 'seemless', 'sms', 'applic', 'unabl', 'proper', 'render', 'group', 'messag', 'receiv', 'one', 'indic', 'sent', 'multipl', 'peopl', 'yes', 'use', 'sms', 'app', 'unfortun', 'seem', 'unabl', 'trigger', 'led', 'blinki', 'indic', 'thingi', 'front', 'new', 'messag', 'vibrat', 'virtual', 'nonexist', 'absolut', 'not', 'reli', 'adequ', 'even', 'shirt', 'led', 'indic', 'front', 'toward', 'top', 'faint', 'puls', 'messag', 'miss', 'call', 'etc', 'realli', 'dim', 'most', 'not', 'notic', 'unless', 'room', 'pretti', 'stuck', 'android', 'upgrad', 'might', 'might', 'not', 'happen', 'whenev', 'blu', 'feel', 'like', 'speaker', 'sort', 'okay', 'not', 'loud', 'rich', 'note', 'exampl', 'basic', 'lack', 'lte', 'though', 'realist', 'web', 'brows', 'never', 'notic', 'differ', 'plain', 'near', 'stock', 'android', 'experi', 'delight', 'even', 'old', 'better', 'mess', 'note', 'great', 'screen', 'even', 'though', 'not', 'mani', 'phone', 'samsung', 'look', 'great', 'reason', 'bright', 'call', 'qualiti', 'great', 'volum', 'pretti', 'reason', 'form', 'factor', 'great', 'even', 'consid', 'big', 'screen', 'thin', 'easi', 'hold', 'even', 'one', 'come', 'phone', 'condom', 'one', 'case', 'match', 'phone', 'color', 'screen', 'protector', 'batteri', 'life', 'outstand', 'thing', 'far', 'outperform', 'note', 'end', 'day', 'light', 'use', 'might', 'note', 'i', 'would', 'less', 'back', 'home', 'soft', 'button', 'front', 'bottom', 'work', 'realli', 'well', 'especi', 'love', 'button', 'wish', 'samsung', 'love', 'bright', 'color', 'come', 'recept', 'seem', 'good', 'better', 'note', 'overal', 'system', 'perform', 'pretti', 'decent', 'even', 'power', 'save', 'mode', 'not', 'zippi', 'phone', 'hey', 'whole', 'would', 'troubl', 'recommend', 'someon', 'not', 'requir', 'cell', 'provid', 'phone', 'maker', 'not', 'go', 'get', 'lot', 'support', 'blu', 'still', 'simplifi', 'android', 'much', 'eleg', 'incarn', 'big', 'maker', 'not', 'realli', 'lot', 'confus', 'use'], ['best', 'phone', 'ever', 'friend', 'ask', 'not', 'tell', 'perform', 'wonder', 'far', 'keep', 'charg', 'least', 'two', 'day', 'five', 'day', 'not', 'use', 'much', 'second', 'blu', 'phone', 'long', 'compani', 'keep', 'unbeat', 'price', 'market', 'stay'], ['phone', 'slow', 'problem', 'not', 'send', 'receiv', 'pic', 'msg', 'internet', 'not', 'work', 'back', 'forth', 'mobil', 'provid', 'chang', 'apn', 'mmsc', 'ect', 'frustrat', 'anyon', 'problem', 'got', 'fix', 'pleas', 'advic', 'thank'], ['good', 'product', 'excel'], ['excel', 'product'], ['phone', 'great', 'realli', 'hard', 'beat', 'price', 'gave', 'one', 'star', 'android', 'base', 'last', 'one', 'window', 'os', 'bit', 'struggl', 'get', 'work', 'certain', 'app', 'compat', 'sim', 'card', 'type', 'carrier', 'gave', 'one', 'mom', 'younger', 'brother', 'get', 'flip', 'phone', 'era', 'not', 'need', 'anyth', 'fanci', 'like', 'galaxi', 'almost', 'anyth', 'except', 'mayb', 'run', 'processor', 'intens', 'game', 'would', 'recommend', 'get', 'sd', 'memori', 'card', 'though', 'go'], ['excel', 'phone'], ['bueno'], ['i', 'pretti', 'satisfi', 'phone', 'thing', 'waay', 'better', 'last', 'phone', 'nokia', 'lumia', 'date', 'piec', 'sh', 'terribl', 'app', 'store', 'would', 'not', 'read', 'review', 'unless', 'feel', 'like', 'spend', 'cell', 'phone', 'go', 'return', 'hate', 'almost', 'memori', 'space', 'bought', 'sd', 'card', 'plan', 'download', 'app', 'whatsoev', 'recommend', 'purchas', 'one', 'phone', 'save', 'troubl', 'function', 'phone', 'run', 'slight', 'slow', 'bug', 'look', 'brand', 'name', 'get', 'opaqu', 'case', 'realli', 'vain', 'come', 'charger', 'decent', 'headphon', 'built', 'mic', 'screen', 'cover', 'extra', 'clear', 'jelli', 'case', 'sinc', 'order', 'white', 'one', 'came', 'interchang', 'black', 'batteri', 'cover', 'mom', 'order', 'black', 'not', 'get', 'second', 'cover', 'i', 'would', 'say', 'worth'], ['review', 'slight', 'limit', 'might', 'updat', 'futur', 'not', 'know', 'impress', 'phone', 'thus', 'far', 'favorit', 'featur', 'actual', 'live', 'wallpap', 'money', 'plant', 'not', 'find', 'anywher', 'internet', 'lol', 'lwp', 'also', 'doubl', 'batteri', 'monitor', 'sort', 'leav', 'turn', 'brown', 'screen', 'size', 'ad', 'favorit', 'launcher', 'screen', 'seem', 'even', 'speed', 'wifi', 'not', 'test', 'mobil', 'yet', 'concern', 'call', 'messag', 'gophon', 'first', 'test', 'somewhat', 'rural', 'area', 'recept', 'decent', 'enough', 'compar', 'verizon', 'prepaid', 'best', 'actual', 'qualm', 'sometim', 'screen', 'extrem', 'touchi', 'almost', 'like', 'drag', 'cheap', 'stylus', 'scroll', 'jump', 'click', 'random', 'item', 'deliber', 'contact', 'screen', 'seem', 'work', 'best', 'light', 'touch'], ['bought', 'work', 'fine', 'excel', 'valu', 'perform', 'well'], ['get', 'stuck', 'sometim'], ['love', 'phone', 'serious', 'want', 'ditch', 'iphon', 'littl', 'nervous', 'decid', 'spend', 'less', 'money', 'case', 'decid', 'buy', 'new', 'iphon', 'awesom', 'camera', 'not', 'great', 'complaint', 'slim', 'smooth', 'gorgeous', 'absolut', 'ador', 'sound', 'realli', 'clear', 'phone', 'call', 'make', 'audio', 'record', 'not', 'find', 'enter', 'key', 'press', 'shift', 'button', 'keyboard', 'appear', 'bottom', 'right', 'aloha', 'updat', 'phone', 'longer', 'charg', 'realli', 'realli', 'gentl', 'phone', 'found', 'mani', 'peopl', 'problem', 'not', 'charg', 'i', 'would', 'like', 'contact', 'seller', 'still', 'look', 'link', 'annoy'], ['purchas', 'two', 'one', 'gift', 'friend', 'two', 'similar', 'issu', 'touch', 'screen', 'would', 'stop', 'detect', 'touch', 'redetect', 'snapchat', 'would', 'line', 'dot', 'drawn', 'screen', 'protector', 'exacerb', 'issu', 'problem', 'much', 'manag', 'remov', 'screen', 'second', 'issu', 'phone', 'snapchat', 'video', 'would', 'encod', 'incorrect', 'look', 'green', 'distort', 'spent', 'week', 'look', 'fix', 'appar', 'common', 'issu', 'enjoy', 'phone', 'immens', 'apart', 'two', 'screen', 'clear', 'batteri', 'phenomin', 'camera', 'fine', 'current', 'use', 'blu', 'life', 'one', 'x', 'would', 'not', 'recommend', 'phone', 'life', 'one', 'x', 'sinc', 'similar', 'final', 'con', 'phone', 'not', 'withstand', 'car', 'door', 'shut'], ['excel', 'phone', 'low', 'price'], ['speak', 'custom', 'sole', 'interest', 'devic', 'keep', 'cell', 'tower', 'use', 'wifi', 'lg', 'bluetooth', 'headset', 'proscan', 'bluetooth', 'soundbar', 'i', 'would', 'rate', 'four', 'took', 'place', 'samsung', 'preced', 'dinki', 'winki', 'phone', 'could', 'not', 'run', 'frodo', 'well', 'frodo', 'lotr', 'joke', 'phone', 'marri', 'silicon', 'power', 'microsdxc', 'well', 'provid', 'ampl', 'cpu', 'gpu', 'run', 'would', 'suggest', 'box', 'skin', 'go', 'ip', 'display', 'angl', 'view', 'batteri', 'noth', 'write', 'home', 'surviv', 'typic', 'hour', 'headphon', 'came', 'mushroom', 'uncomfort', 'hard', 'fit', 'sound', 'tinni', 'compar', 'lg', 'tone', 'experienc', 'situat', 'wtf', 'touchscreen', 'i', 'not', 'modifi', 'phone', 'access', 'option', 'long', 'option', 'noth', 'keep', 'thing', 'wig', 'charg', 'tri', 'anyth', 'finger'], ['great', 'cheap', 'smart', 'phone'], ['love'], ['good', 'phone'], ['great', 'phone', 'good', 'camera', 'also', 'fair', 'not', 'know', 'complain', 'thought', 'get', 'galaxi', 'note', 'iphon', 'mistaken', 'thing', 'well', 'work', 'well', 'metropc'], ['nice', 'look', 'phone', 'size', 'mine', 'problem', 'touch', 'screen', 'not', 'move', 'screen', 'screen', 'easili', 'not', 'let', 'close', 'app', 'done', 'return', 'amazon'], ['promis', 'android', 'lollipop', 'devic', 'juli', 'short', 'time', 'devic', 'releas', 'turn', 'time', 'review', 'octob', 'lollipop', 'updat', 'sti', 'not', 'releas', 'us', 'life', 'xl', 'user', 'mani', 'user', 'promsi', 'updat', 'blu', 'continu', 'make', 'releas', 'phone', 'lollipop', 'preinstal', 'repli', 'mani', 'beg', 'user', 'would', 'like', 'lollipop', 'current', 'devic'], ['yes'], ['qualiti', 'general', 'batteri', 'not', 'use', 'long', 'bad'], ['pick', 'offer', 'i', 'coupl', 'day', 'hold', 'consid', 'deal', 'steal', 'display', 'vibrant', 'recept', 'excel', 'addit', 'perform', 'copi', 'receiv', 'adequ', 'daughter', 'internet', 'review', 'mix', 'howev', 'factor', 'cost', 'xl', 'deliv', 'best', 'valu', 'market', 'right', 'consid', 'new', 'phone', 'strong', 'advis', 'take', 'advantag', 'amazon', 'day', 'return', 'polici', 'check', 'think', 'pleasant', 'surpris', 'get', 'money', 'also', 'parent', 'buy', 'never', 'know', 'cost', 'not', 'scream', 'loud', 'bread', 'lose', 'know', 'break', 'lose'], ['perfect', 'phone', 'one', 'problem', 'charg', 'phone', 'use', 'wall', 'adapt', 'screen', 'stop', 'work', 'like', 'charg', 'not', 'sensit', 'charg', 'use', 'pc', 'usb', 'cabl', 'problem'], ['everyth', 'ok', 'love', 'phone', 'phone', 'fast', 'alway', 'respond', 'camera', 'great', 'design', 'perfect', 'nice', 'love'], [], ['absolut', 'love', 'phone', 'amazon', 'alway', 'ship', 'super', 'fast', 'love', 'love', 'love', 'fact', 'blu', 'phone', 'unlock', 'experi', 'differ', 'carrier', 'see', 'work', 'wish', 'phone', 'would', 'updat', 'quicker', 'man', 'blu', 'dash', 'updat', 'least', 'time', 'sinc', 'bought', 'mine', 'updat'], ['purchas', 'two', 'one', 'gift', 'friend', 'two', 'similar', 'issu', 'touch', 'screen', 'would', 'stop', 'detect', 'touch', 'redetect', 'snapchat', 'would', 'line', 'dot', 'drawn', 'screen', 'protector', 'exacerb', 'issu', 'problem', 'much', 'manag', 'remov', 'screen', 'second', 'issu', 'phone', 'snapchat', 'video', 'would', 'encod', 'incorrect', 'look', 'green', 'distort', 'spent', 'week', 'look', 'fix', 'appar', 'common', 'issu', 'enjoy', 'phone', 'immens', 'apart', 'two', 'screen', 'clear', 'batteri', 'phenomin', 'camera', 'fine', 'current', 'use', 'blu', 'life', 'one', 'x', 'would', 'not', 'recommend', 'phone', 'life', 'one', 'x', 'sinc', 'similar', 'final', 'con', 'phone', 'not', 'withstand', 'car', 'door', 'shut'], ['awesom'], ['screen', 'came', 'unglu', 'within', 'first', 'week', 'touch', 'screen', 'not', 'work', 'charg', 'ear', 'speaker', 'crack', 'inaud', 'not', 'happi', 'custom', 'would', 'not', 'recommend'], ['good', 'stuff', 'glad', 'i', 'not', 'merci', 'need', 'call', 'custom', 'servic', 'monday', 'find', 'lollipop', 'updat', 'also', 'like', 'blu', 'instal', 'screen', 'protector', 'patienc', 'updat', 'call', 'custom', 'servic', 'morn', 'reach', 'pleasant', 'person', 'without', 'wait', 'explain', 'issu', 'bluetooth', 'connect', 'moto', 'acknowledg', 'blu', 'awar', 'problem', 'fix', 'said', 'fix', 'come', 'via', 'ota', 'end', 'month', 'also', 'lollipop', 'updat', 'hope', 'end', 'month'], ['would', 'never', 'buy', 'blu', 'product', 'wors'], ['best', 'phone', 'ever', 'phone', 'never', 'gave', 'singl', 'problem', 'long', 'time', 'would', 'recommend', 'anyon', 'batteri', 'not', 'run', 'quick', 'camera', 'excel'], ['speak', 'custom', 'sole', 'interest', 'devic', 'keep', 'cell', 'tower', 'use', 'wifi', 'lg', 'bluetooth', 'headset', 'proscan', 'bluetooth', 'soundbar', 'i', 'would', 'rate', 'four', 'took', 'place', 'samsung', 'preced', 'dinki', 'winki', 'phone', 'could', 'not', 'run', 'frodo', 'well', 'frodo', 'lotr', 'joke', 'phone', 'marri', 'silicon', 'power', 'microsdxc', 'well', 'provid', 'ampl', 'cpu', 'gpu', 'run', 'would', 'suggest', 'box', 'skin', 'go', 'ip', 'display', 'angl', 'view', 'batteri', 'noth', 'write', 'home', 'surviv', 'typic', 'hour', 'headphon', 'came', 'mushroom', 'uncomfort', 'hard', 'fit', 'sound', 'tinni', 'compar', 'lg', 'tone', 'experienc', 'situat', 'wtf', 'touchscreen', 'i', 'not', 'modifi', 'phone', 'access', 'option', 'long', 'option', 'noth', 'keep', 'thing', 'wig', 'charg', 'tri', 'anyth', 'finger'], ['great', 'phone', 'accept', 'featur', 'price', 'decent', 'display', 'thing', 'could', 'improv', 'would', 'ram', 'better', 'camera', 'over', 'price', 'exvel', 'choic', 'also', 'easier', 'use', 'phone', 'peopl', 'larg', 'finger', 'updat', 'phone', 'lag', 'often', 'lollipop', 'os', 'updat', 'never', 'happen'], ['amazon', 'sent', 'replac', 'lot', 'better', 'origin', 'star', 'kind', 'i', 'convinc', 'batch', 'better', 'even', 'come', 'set', 'first', 'phone', 'receiv', 'not', 'ok', 'back', 'crash', 'suck', 'save', 'money'], ['phone', 'look', 'great', 'physic', 'aspect', 'bright', 'color', 'big', 'screen', 'sad', 'problem', 'touch', 'screen', 'respons', 'slow', 'delay', 'swipe', 'tap', 'respons', 'tell', 'delay', 'also', 'bend', 'easili', 'care', 'put', 'pocket', 'complaint', 'would', 'cool', 'phone', 'prize'], ['excel'], ['not', 'star', 'own', 'almost', 'year', 'doubt', 'best', 'phone', 'own', 'look', 'anoth', 'inch', 'screen', 'phone', 'right', 'not', 'think', 'anoth', 'phone', 'like', 'one'], ['cellphon', 'dead', 'tri', 'anoth', 'batteri', 'not', 'start'], ['grandpa', 'love', 'easi', 'use', 'look', 'slick', 'cool', 'grandpa', 'b'], ['ok', 'guy', 'deal', 'put', 'nexus', 'week', 'use', 'phone', 'actual', 'not', 'think', 'i', 'go', 'back', 'nexus', 'also', 'galaxi', 'phone', 'respons', 'love', 'look', 'blu', 'nexus', 'say', 'look', 'mean', 'lay', 'look', 'android', 'version', 'wish', 'could', 'lte', 'phone', 'get', 'mbps', 'good', 'tower', 'batteri', 'life', 'great', 'feel', 'great', 'defiant', 'not', 'buy', 'anoth', 'high', 'dollar', 'phone', 'not', 'much', 'lag', 'phone', 'certain', 'not', 'get', 'way', 'also', 'phone', 'perk', 'like', 'tether', 'box', 'work', 'view', 'angl', 'good', 'backlight', 'give', 'great', 'coverag', 'usual', 'run', 'way', 'night', 'day', 'mid', 'way', 'great', 'crisp', 'color', 'camera', 'not', 'bad', 'mega', 'pixel', 'look', 'better', 'suppli', 'light', 'dual', 'led', 'flash', 'take', 'day', 'time', 'pic', 'love', 'phone', 'nexus'], ['blu', 'phone', 'year', 'ago', 'not', 'model', 'anoth', 'model', 'not', 'rememb', 'name', 'model', 'anyway', 'two', 'week', 'updat', 'sudden', 'phone', 'stop', 'work', 'would', 'not', 'turn', 'i', 'proud', 'phone', 'receiv', 'fast', 'i', 'abl', 'download', 'ton', 'app', 'problem'], ['not', 'fast', 'smooth', 'hope', 'phone', 'not', 'feel', 'solid', 'blu', 'life', 'pure', 'camera', 'not', 'good', 'audio', 'not', 'good', 'enough', 'good', 'entri', 'level', 'phone', 'app', 'kept', 'quit', 'frustrat'], ['phone', 'stop', 'work', 'crap', 'began', 'problem', 'screen', 'sensit', 'restart', 'froze', 'one', 'day', 'turn', 'screen', 'restart', 'readi', 'happen', 'often', 'one', 'day', 'turn', 'screen', 'forev', 'alreadi', 'sent', 'two', 'messag', 'blu', 'still', 'not', 'receiv', 'respons'], ['nice', 'phone', 'camera', 'qualiti', 'perfect', 'tho', 'slow', 'time', 'complain', 'love'], ['thing', 'taught', 'bigger', 'screen', 'love', 'bigger', 'screen', 'phone', 'love', 'color', 'everyth', 'wait', 'case', 'like'], ['wakala', 'display', 'stop', 'work', 'two', 'week', 'want', 'money', 'back'], ['love', 'phone', 'simpl', 'well', 'made', 'surpris', 'tough', 'one', 'year', 'old', 'handl', 'pink', 'color', 'love', 'speaker', 'good', 'everyth', 'run', 'smooth', 'honest', 'think', 'blu', 'compani', 'huug', 'soon', 'let', 'us', 'hope', 'not', 'get', 'bought'], ['great', 'valu', 'nice', 'big', 'screen', 'pictur', 'video', 'look', 'great', 'plenti', 'speed', 'memori', 'except', 'phone', 'screen', 'not', 'respond', 'proper', 'touch', 'first', 'notic', 'tri', 'draw', 'pattern', 'unlock', 'kept', 'first', 'thought', 'mayb', 'notic', 'websit', 'email', 'especi', 'tri', 'scroll', 'result', 'sometim', 'scroll', 'phone', 'think', 'click', 'link', 'open', 'websit', 'sometim', 'press', 'link', 'not', 'amaz', 'valu', 'phone', 'big', 'screen', 'plenti', 'speed', 'would', 'probabl', 'kept', 'primari', 'phone', 'not', 'much', 'troubl', 'right', 'last', 'thing', 'lollipop', 'upgrad', 'not', 'avail'], ['dear', 'sir', 'bought', 'cell', 'phone', 'along', 'full', 'cover', 'case', 'protect', 'i', 'month', 'digit', 'number', 'three', 'six', 'not', 'function', 'streak', 'line', 'goe', 'across', 'corner', 'corn', 'therefor', 'unabl', 'use', 'icon', 'top', 'portion', 'phone', 'not', 'drop', 'contact', 'water', 'ship', 'sold', 'sorri', 'unhappi', 'second', 'phone', 'purchas', 'year', 'januari', 'juli'], ['love', 'best', 'cellphon'], ['nice'], ['excel'], ['good', 'phone', 'alway', 'low', 'signal', 'provid', 'simpl', 'mobil', 'apper', 'reason', 'headphon', 'not', 'seem', 'work', 'time', 'know', 'phone', 'sinc', 'bought', 'headphon', 'i', 'still', 'problem', 'would', 'better', 'review', 'blu', 'would', 'fix'], ['phone', 'awesom', 'work', 'well', 'good', 'pictur', 'qualiti'], ['phone', 'everyth', 'want', 'phone', 'full', 'length', 'palm', 'mean', 'great', 'screen', 'display', 'make', 'easi', 'watch', 'movi', 'read', 'file', 'thing', 'collag', 'student', 'would', 'want', 'also', 'thin', 'mega', 'pixel', 'camera', 'amaz', 'tap', 'object', 'track', 'pick', 'everi', 'small', 'detail', 'object', 'front', 'camera', 'not', 'amaz', 'tini', 'flaw', 'overal', 'awesom', 'speed', 'member', 'space', 'interfac', 'also', 'plus'], ['use', 'cell', 'phone', 'year', 'cell', 'phone', 'light', 'thin', 'work', 'well', 'softwar', 'not', 'updat', 'frequent', 'last', 'updat', 'build', 'applic', 'restart', 'whatsapp', 'spotifi', 'waze', 'other', 'model', 'come', 'intern', 'memori', 'not', 'enough', 'not', 'use', 'expans', 'slot', 'two', 'sim', 'cell', 'phone', 'make', 'decis', 'storag', 'capac', 'use', 'one', 'sim', 'use', 'two', 'sim', 'limit'], ['volum', 'low', 'call', 'question', 'oper', 'spent', 'good', 'money', 'phone', 'phone', 'look', 'great', 'lack', 'everyth', 'strong', 'suggest', 'blu', 'tec', 'support', 'answer', 'question', 'get', 'phone', 'save', 'pictur', 'memori', 'card', 'pictur', 'store', 'know', 'save', 'card', 'dose', 'phone', 'prompt', 'not', 'happi', 'suppos', 'one', 'top', 'model', 'blu', 'life'], ['phone', 'exceed', 'expect', 'budget', 'phone', 'realli', 'hesit', 'first', 'posit', 'review', 'negat', 'realli', 'trivial', 'issu', 'bought', 'one', 'dual', 'sim', 'almost', 'everyth', 'high', 'end', 'phone', 'everyth', 'phone', 'feel', 'premium', 'even', 'case', 'better', 'thought', 'would', 'smartphon', 'got', 'anywher', 'close', 'posit', 'ratio', 'star', 'star', 'blu', 'life', 'one', 'hold', 'look', 'good', 'qualiti', 'reason', 'price', 'smartphon', 'dual', 'sim', 'go'], ['excel', 'like'], ['could', 'not', 'give', 'devic', 'star', 'not', 'hook', 'tv', 'hdmi', 'cord', 'speaker', 'qualiti', 'low', 'wifi', 'antena', 'weak', 'not', 'like', 'state'], ['beauti', 'scream', 'perfect', 'love', 'incred', 'pic', 'great', 'dese', 'excel', 'connect', 'devic', 'app', 'googl', 'play', 'wonder', 'perfect', 'storag', 'good', 'five', 'start', 'product', 'seller'], ['spent', 'hour', 'research', 'phone', 'final', 'decid', 'get', 'blu', 'life', 'one', 'use', 'month', 'overal', 'pleas', 'phone', 'not', 'bore', 'repeat', 'good', 'thing', 'phone', 'rather', 'focus', 'littl', 'issu', 'find', 'could', 'weak', 'wifi', 'offic', 'desk', 'feet', 'wifi', 'router', 'separ', 'coupl', 'drywal', 'time', 'get', 'bar', 'phone', 'use', 'app', 'like', 'analyz', 'see', 'signal', 'strength', 'get', 'around', 'notic', 'low', 'bar', 'home', 'well', 'compar', 'result', 'iphon', 'app', 'give', 'specif', 'signal', 'strength', 'samsung', 'galaxi', 'note', 'use', 'app', 'phone', 'sit', 'right', 'next', 'differ', 'dbm', 'favor', 'samsung', 'area', 'could', 'use', 'work', 'blu', 'part', 'time', 'lose', 'total', 'wifi', 'connect', 'step', 'away', 'far', 'even', 'home', 'touchi', 'button', 'backlit', 'menu', 'home', 'back', 'key', 'sometim', 'not', 'behav', 'time', 'touch', 'not', 'thing', 'time', 'regist', 'singl', 'touch', 'multipl', 'processor', 'time', 'like', 'play', 'processor', 'memori', 'intens', 'race', 'game', 'call', 'real', 'race', 'even', 'though', 'app', 'instal', 'intern', 'storag', 'load', 'time', 'horrend', 'lag', 'clear', 'visibl', 'game', 'normal', 'great', 'graphic', 'phone', 'not', 'render', 'proper', 'job', 'main', 'issu', 'list', 'noth', 'prais', 'devic', 'camera', 'dual', 'sim', 'screen', 'size', 'great', 'featur', 'especi', 'phenomen', 'price', 'sinc', 'issu', 'not', 'affect', 'daili', 'use', 'phone', 'much', 'give', 'star'], ['phone', 'work', 'great', 'batteri', 'could', 'last', 'littl', 'longer'], ['mani', 'featur', 'ever', 'use', 'perfect', 'size', 'use', 'straight', 'talk', 'convers', 'pretti', 'seamless', 'littl', 'studi', 'need', 'abl', 'receiv', 'data', 'batteri', 'life', 'good', 'unless', 'play', 'game', 'seem', 'drop', 'rather', 'rapid', 'seem', 'work', 'phone', 'day', 'day', 'stretch', 'play', 'mani', 'game', 'got', 'phone', 'read', 'news', 'eat', 'breakfast', 'local', 'paper', 'becom', 'page', 'main', 'nation', 'news', 'sport', 'rest', 'add', 'updat', 'phone', 'die', 'contact', 'blu', 'via', 'email', 'repli', 'contact', 'blu', 'via', 'email', 'repli', 'told', 'return', 'florida', 'blu', 'sent', 'email', 'receiv', 'phone', 'autom', 'email', 'tell', 'would', 'receiv', 'refurbish', 'phone', 'track', 'number', 'word', 'tri', 'call', 'young', 'ladi', 'answer', 'phone', 'transfer', 'machin', 'say', 'blu', 'not', 'abl', 'take', 'call', 'two', 'day', 'sent', 'anoth', 'email', 'still', 'repli', 'blu', 'receiv', 'refurbish', 'phone', 'almost', 'month', 'day', 'simpl', 'switch', 'tri', 'switch', 'phone', 'straight', 'talk', 'inform', 'must', 'order', 'anoth', 'sim', 'sim', 'deactiv', 'never', 'reactiv'], ['thumb', 'realli', 'work', 'great'], ['love', 'phone', 'best', 'inch', 'display', 'cornin', 'gorilla', 'glass', 'aluminum', 'hous', 'remov', 'plastic', 'back', 'plate', 'sim', 'card', 'slot', 'work', 'simpl', 'mobil', 'micro', 'slot', 'nice', 'back', 'camera', 'good', 'front', 'camera', 'great', 'selfi', 'great', 'phone'], ['good', 'phone', 'take', 'good', 'photo', 'gave', 'two', 'star', 'rate', 'start', 'shut', 'call', 'n', 'batteri', 'life', 'start', 'deplet', 'easili', 'even', 'shut', 'charg', 'n', 'get', 'realli', 'hot', 'time'], ['first', 'phone', 'big', 'like', 'samsung', 'lesser', 'build', 'qualiti', 'extrem', 'good', 'iphon', 'user', 'pretti', 'picki', 'qualiti', 'phone', 'not', 'disappoint', 'either', 'qualiti', 'camera', 'megapixel', 'fantast', 'not', 'need', 'point', 'shoot', 'camera', 'local', 'travel', 'serious', 'photograph', 'use', 'canon', 'full', 'frame', 'profession', 'camera', 'gear', 'lens', 'canon', 'zeiss', 'camera', 'get', 'phone', 'noth', 'compar', 'profession', 'stuff', 'definit', 'best', 'among', 'phone', 'avail', 'bought', 'phone', 'travel', 'oversea', 'use', 'not', 'dissapoint', 'amazon', 'custom', 'servic', 'excel', 'issu', 'anoth', 'phone', 'purchas', 'handl', 'effici', 'fast'], ['far', 'phone', 'work', 'well', 'got', 'not', 'need', 'carri', 'two', 'phone', 'work', 'great', 'dual', 'sim', 'card', 'two', 'item', 'littl', 'disappoint', 'batteri', 'could', 'last', 'longer', 'wifi', 'not', 'good', 'phone', 'work', 'great', 'fast'], ['excelent'], ['happi', 'purchas', 'search', 'smart', 'phone', 'option', 'month', 'look', 'everyth', 'nexus', 'nokia', 'lgs', 'note', 'cool', 'big', 'expens', 'expens', 'life', 'one', 'basic', 'exact', 'like', 'samsung', 'counterpart', 'slight', 'bigger', 'not', 'annoy', 'bigger', 'opinion', 'not', 'heavi', 'cms', 'extra', 'top', 'bottom', 'pay', 'less', 'half', 'price', 'screen', 'gorgeous', 'full', 'bright', 'almost', 'unbeliev', 'use', 'earth', 'orbit', 'free', 'live', 'wallpap', 'sometim', 'liter', 'look', 'earth', 'go', 'round', 'i', 'wait', 'room', 'someth', 'big', 'screen', 'like', 'medit', 'experi', 'like', 'watch', 'camp', 'work', 'wifi', 'etc', 'etc', 'complaint', 'call', 'tech', 'support', 'fix', 'gps', 'factori', 'reset', 'phone', 'guess', 'side', 'alarm', 'softwar', 'probabl', 'get', 'free', 'one', 'android', 'market', 'thank', 'blu', 'make', 'afford', 'smart', 'phone', 'mass'], ['dual', 'sim', 'work', 'great', 'wish', 'would', 'sell', 'give', 'extra', 'batteri', 'backup', 'hard', 'find', 'sure', 'blu', 'technolog', 'sell', 'fast', 'phone', 'use', 'speakout', 'prepaid', 'roger', 'network', 'one', 'sim', 'second', 'sim', 'switch', 'arriv', 'leav', 'wish', 'also', 'wish', 'would', 'flipov', 'case', 'like', 'samsung', 'other', 'remov', 'normal', 'back', 'put', 'back', 'flipov', 'cover', 'protect', 'screen', 'pocket', 'howev', 'blu', 'not', 'provid', 'one'], ['phone', 'explot', 'expect', 'beauti', 'everi', 'way', 'buck', 'compar', 'kick', 'butt', 'almost', 'thing', 'blu', 'cellphon', 'not', 'appli', 'much', 'patch', 'system', 'not', 'stupid', 'featur', 'galaxi', 'yeah', 'think'], ['good', 'secur', 'purchas', 'thank', 'much', 'love', 'phone', 'everyth', 'work', 'perfect', 'fast', 'beauti', 'best', 'phone', 'ever'], ['work', 'most', 'two', 'week', 'die', 'would', 'not', 'turn', 'save', 'money'], ['receiv', 'phone', 'within', 'minut', 'run', 'well', 'made', 'screen', 'amaz', 'camera', 'great', 'notic', 'receiv', 'better', 'servic', 'samsung', 'place', 'use', 'drop', 'call', 'mountain', 'ky', 'longer', 'lose', 'servic', 'phone', 'look', 'better', 'bf', 'samsung', 'note', 'love', 'product', 'not', 'regret', 'purchas', 'also', 'use', 'straight', 'talk', 'bit', 'issu', 'send', 'receiv', 'pictur', 'text', 'final', 'got', 'correct', 'apn'], ['pleas', 'phone'], ['far', 'good', 'almost', 'week', 'phone', 'work', 'perfect', 'batteri', 'last', 'day'], ['phone', 'perfect', 'work', 'flawless', 'perfect', 'weight', 'size', 'perfect', 'screen', 'money', 'best', 'bet', 'buy', 'alreadi'], ['great', 'phone'], ['phone', 'great', 'not', 'much', 'differ', 'galaxi', 'mean', 'minus', 'fanci', 'stuff', 'samsung', 'ad', 'screen', 'control', 'anyway', 'realli', 'sad', 'not', 'work', 'tmobil', 'return', 'band', 'end', 'galaxi', 'well', 'amaz', 'almost', 'much', 'money', 'amaz', 'get', 'upgrad', 'key', 'lime', 'live', 'philadelphia', 'pa', 'area', 'anyon', 'consid', 'phone', 'not', 'work', 'suffici', 'tmobil', 'would', 'assum', 'would', 'situat', 'band', 'understand'], ['unhappi', 'blu', 'life', 'play', 'phone', 'mirco', 'sd', 'card', 'work', 'want', 'let', 'us', 'save', 'app', 'save', 'pictur', 'later', 'stop', 'work', 'sd', 'card', 'still', 'plenti', 'storag', 'space', 'camera', 'stop', 'work', 'notifi', 'card', 'save', 'phone', 'stop', 'restart', 'constant', 'go', 'back', 'htc', 'one', 'buy', 'phone', 'terribl'], ['order', 'phone', 'decemb', 'decid', 'wait', 'month', 'write', 'review', 'agre', 'user', 'manual', 'not', 'give', 'much', 'inform', 'phone', 'pretti', 'straight', 'forward', 'easi', 'navig', 'take', 'qualiti', 'pictur', 'qualiti', 'clariti', 'sound', 'good', 'featur', 'great', 'batteri', 'lie', 'smart', 'phone', 'last', 'base', 'usag', 'devic', 'pleas', 'purchas', 'definit', 'look', 'brand', 'first', 'futur', 'purchas'], ['great', 'phone', 'arriv', 'howev', 'within', 'two', 'week', 'start', 'charg', 'problem', 'wiggl', 'cord', 'get', 'charg', 'four', 'week', 'not', 'charg', 'tri', 'multipl', 'cord', 'wish', 'read', 'review', 'seem', 'happen', 'lot', 'custom', 'day', 'two', 'wait', 'hear', 'back', 'far', 'automail', 'annoy'], ['great'], ['horribl', 'not', 'wast', 'time', 'money', 'phone', 'kind', 'glitch', 'i', 'tri', 'contact', 'blu', 'tell', 'hard', 'reset', 'phone', 'inconveni', 'delet', 'everyth', 'phone', 'i', 'would', 'take', 'time', 'busi', 'day', 'redownload', 'everyth', 'poor', 'custom', 'servic', 'ask', 'i', 'custom', 'servic', 'year'], ['get', 'job', 'done'], ['nice', 'phone'], ['excelent'], ['phone', 'amaz', 'speed', 'pull', 'app', 'internet', 'incred', 'fast', 'look', 'feel', 'phone', 'awesom', 'price', 'definit', 'went', 'beyond', 'expect'], ['excelent', 'producto'], ['great', 'phone', 'amaz', 'everyth', 'thing', 'need', 'longer', 'batteri', 'last', 'mayb', 'day', 'warn', 'shown'], ['not', 'work', 'keep', 'reboot', 'make', 'call'], ['love'], ['sincer', 'love', 'phone', 'i', 'use', 'past', 'six', 'month', 'like', 'everyth', 'anyth', 'come', 'easi', 'use', 'friend', 'think', 'spent', 'fortun', 'buy', 'guess', 'not', 'case'], ['great', 'phone', 'price', 'work', 'perfect', 'venezuela', 'probado', 'con', 'movilnet', 'movistar'], ['awsom'], ['great', 'valu', 'money'], ['exel'], ['phone', 'not', 'connect', 'thw', 'chip', 'venezuela', 'anyon', 'help'], ['gift', 'friend', 'realli', 'happi', 'phone', 'upgrad', 'blu', 'life', 'one', 'new', 'phone', 'fill', 'expect', 'use', 'argentina', 'work', 'perfect'], ['love', 'phone', 'far', 'live', 'oversea', 'phone', 'work', 'perfect', 'put', 'micro', 'sim', 'card', 'biggest', 'issu', 'found', 'far', 'not', 'yet', 'receiv', 'free', 'updat', 'android', 'kitkat', 'state', 'blu', 'instead', 'still', 'jellybean', 'jellybean', 'not', 'bad', 'though', 'asid', 'phone', 'realli', 'great', 'phone', 'worth'], ['good'], ['phone', 'amaz', 'super', 'fast', 'love', 'ui', 'love', 'screen', 'love', 'camera', 'everyth', 'perfect', 'found', 'perman', 'phone'], ['phone', 'current', 'work', 'fine', 'featur', 'superb', 'memori', 'love'], ['fantast', 'phone', 'i', 'love'], ['great', 'phone', 'much', 'bigger', 'lighter', 'girlfriend', 'iphon', 'jealous', 'want', 'phone'], ['deliveri', 'time', 'excel', 'cheap', 'product'], ['wait', 'awhil', 'review', 'phone', 'proper', 'goe', 'let', 'add', 'farr', 'tech', 'savi', 'know', 'output', 'want', 'deliveri', 'came', 'sooner', 'expect', 'yepe', 'big', 'surpris', 'phone', 'box', 'clear', 'mark', 'blue', 'well', 'packag', 'box', 'headphon', 'phone', 'case', 'phone', 'charger', 'screen', 'protector', 'manualso', 'unto', 'phone', 'rectangular', 'shape', 'not', 'realli', 'like', 'hope', 'bigger', 'wider', 'screen', 'anyway', 'live', 'curl', 'couch', 'fascin', 'new', 'toy', 'time', 'realis', 'unabl', 'locat', 'batteri', 'not', 'slot', 'sdcard', 'kina', 'funni', 'never', 'saw', 'phone', 'manag', 'get', 'sim', 'card', 'like', 'put', 'cd', 'dvd', 'funni', 'seem', 'day', 'realli', 'start', 'accept', 'rear', 'tri', 'out', 'camera', 'front', 'back', 'good', 'enough', 'pic', 'freak', 'user', 'interfac', 'good', 'cool', 'featur', 'never', 'realli', 'found', 'phone', 'differ', 'set', 'annoy', 'kina', 'hard', 'pick', 'coverag', 'certain', 'place', 'major', 'major', 'disappoint', 'use', 'phone', 'gps', 'dunno', 'go', 'live', 'blu', 'phone', 'great', 'brand', 'phone', 'feel', 'strong', 'durabl', 'not', 'light', 'still', 'unabl', 'locat', 'phone', 'case'], ['good'], ['excel'], ['not', 'like'], ['daughter', 'realli', 'like', 'phone'], ['excel', 'best'], ['good'], ['perfect'], ['great', 'basic', 'vioc', 'text', 'basic', 'web', 'camera', 'plus', 'even', 'though', 'not', 'captur', 'move', 'object', 'well', 'lag', 'youtub', 'not', 'big', 'deal', 'one', 'question', 'batteri', 'life', 'phone', 'age', 'fast', 'need', 'go', 'anyth', 'expens', 'blu', 'life', 'pure', 'gb', 'ram', 'worth', 'everi', 'penni', 'high', 'recommend', 'ed'], ['bought', 'phone', 'nice', 'solid', 'flash', 'stop', 'work', 'overal', 'phone', 'fast', 'work', 'realli', 'nice'], ['excelent', 'producto'], ['excelent', 'telefono'], ['maravilloso'], ['excelent'], ['like', 'alreadi', 'said', 'nice', 'phone', 'better', 'lot', 'brand', 'resolut', 'awesom', 'make', 'i', 'ever', 'expect', 'one', 'best', 'brand', 'better', 'especi', 'know', 'boom', 'eklat'], ['good', 'could', 'memori', 'better', 'case', 'phone', 'smart', 'air', 'gestur', 'not', 'worka', 'good', 'speed'], ['work', 'great', 'hard', 'lag', 'lost', 'room', 'download'], ['phone', 'work', 'two', 'day', 'went', 'complet', 'black', 'awat', 'phone', 'refund'], ['excelent'], ['great'], ['good', 'phone', 'old', 'os'], ['ok'], ['excel', 'thank', 'much'], ['good'], ['ok'], ['excelent', 'producto'], ['disappoint', 'thus', 'phone', 'stop', 'work', 'start', 'shut', 'june', 'daili', 'thing', 'stop', 'work', 'restart', 'day', 'per', 'polici', 'not', 'return', 'exchang', 'phone', 'purchas', 'phone', 'march'], ['excelent'], ['good'], ['nice', 'smartphon', 'nice', 'camera', 'good', 'devic', 'use', 'us', 'mexico', 'citi', 'not', 'problem', 'bad', 'thing', 'devic', 'not', 'updat', 'android', 'softwar', 'old', 'blu', 'said', 'wrote', 'not', 'updat', 'avail', 'yet', 'come'], ['nice', 'phone', 'cost', 'not', 'beat', 'memori', 'awesom'], ['i', 'still', 'tri', 'figur', 'download', 'music', 'phone', 'anyon', 'help', 'outsid', 'phone', 'great'], ['like', 'design', 'phone', 'friend', 'love', 'much', 'bought', 'anoth', 'friend'], ['let', 'us', 'start', 'sayingdo', 'not', 'wast', 'money', 'phoneveri', 'unhappi', 'product', 'not', 'recommend', 'friend', 'enemi', 'not', 'blu', 'phone', 'thing', 'good', 'use', 'paperweight', 'never', 'write', 'reviewsbut', 'not', 'want', 'nobodi', 'buy', 'phone', 'wast', 'money'], ['deliv', 'technolog', 'fast', 'extrem', 'user', 'friend', 'easi', 'navig', 'love', 'storag', 'get', 'accustom', 'phone', 'sure', 'not', 'disappoint', 'purchas'], ['great', 'phone', 'best', 'phone', 'i', 'ever'], ['bought', 'phone', 'husband', 'use', 'oversea', 'spain', 'work', 'moviestar', 'far', 'come', 'unlock', 'love', 'phone'], ['bad', 'bought', 'read', 'specif', 'phone', 'slow', 'much', 'freez', 'bad'], ['deliveri', 'time', 'excel', 'cheap', 'product'], ['muy', 'bueno'], ['not', 'like', 'not', 'work', 'right', 'wayand', 'recommend', 'littl', 'kid', 'way', 'work'], ['phone', 'bought', 'breed', 'deliv', 'day', 'earlier', 'promis', 'ligth', 'weight', 'fit', 'hand', 'perfect', 'batteri', 'life', 'poor', 'like'], ['maravilloso'], ['superb', 'work', 'well', 'venezuela'], ['nice', 'great', 'phone'], ['android', 'version', 'date', 'app', 'would', 'work', 'phone', 'hard', 'ware', 'camera', 'great', 'lack', 'latest', 'android', 'updat', 'made', 'phone', 'unus', 'return', 'seller', 'gracious', 'gave', 'full', 'refund'], ['slower', 'thought', 'freez', 'time', 'not', 'work', 'europ', 'gsm', 'tmobil'], ['first', 'phone', 'great', 'second', 'phone', 'bought', 'refurbish', 'receiv', 'phone', 'use', 'previous', 'owner', 'contact', 'call', 'record', 'messag', 'internet', 'explor', 'window', 'still', 'open', 'account', 'still', 'log', 'serious', 'abl', 'access', 'girl', 'facebook', 'anyway', 'reset', 'phone', 'slow', 'phone', 'turn', 'phone', 'overheat', 'phone', 'not', 'featur', 'phone', 'phone', 'full', 'batteri', 'complet', 'shut', 'phone', 'not', 'turn', 'back', 'wast', 'money', 'serious', 'want', 'refund'], ['disappoint', 'read', 'review', 'incred', 'web', 'site', 'write', 'up', 'thought', 'get', 'amaz', 'phone', 'soon', 'lift', 'box', 'heart', 'sank', 'white', 'case', 'around', 'screen', 'rather', 'cheap', 'sim', 'case', 'cheap', 'insid', 'print', 'way', 'small', 'run', 'right', 'page', 'feel', 'betray', 'feel', 'receiv', 'cheapest', 'phone', 'anyon', 'couldmak', 'someth', 'realli', 'wrong', 'first', 'reaction', 'tri', 'mani', 'phone', 'i', 'sick', 'thing', 'perfect', 'devic', 'i', 'go', 'give', 'blu', 'anoth', 'chanc', 'give', 'basic', 'need', 'i', 'get', 'back', 'write', 'anoth', 'review', 'jule'], ['excelent', 'producto'], ['togeth', 'wonder', 'b', 'star'], ['bought', 'three', 'wife', 'two', 'daughter', 'seen', 'steadi', 'use', 'month', 'problem'], ['buena'], ['good'], ['phone', 'work', 'perfect', 'not', 'year', 'system', 'damag', 'phone', 'stop', 'work', 'restart', 'alon', 'not', 'recommend', 'product'], ['love', 'phone', 'not', 'believ', 'youtub', 'bid', 'review', 'blu', 'xl', 'great', 'made', 'miami'], ['profession', 'cellphon', 'sale', 'person', 'galaxi', 'devic', 'stolen', 'want', 'get', 'compar', 'devic', 'without', 'use', 'upgrad', 'save', 'someth', 'new', 'receiv', 'blu', 'life', 'view', 'bit', 'hesit', 'around', 'top', 'end', 'smartphon', 'first', 'thing', 'put', 'test', 'difficulti', 'download', 'app', 'content', 'devic', 'mid', 'larg', 'display', 'industri', 'not', 'complain', 'consid', 'price', 'snappi', 'work', 'well', 'averag', 'heavi', 'use', 'put', 'yet', 'reach', 'current', 'storag', 'capabl', 'howev', 'profession', 'know', 'reason', 'expect', 'hardwar', 'potenti', 'negat', 'devic', 'prematur', 'display', 'charg', 'indic', 'averag', 'claim', 'charg', 'around', 'howev', 'screen', 'still', 'display', 'accur', 'percentag', 'talk', 'batteri', 'general', 'go', 'hour', 'charg', 'keep', 'mind', 'never', 'turn', 'go', 'minut', 'without', 'display', 'activ', 'despit', 'mild', 'irrit', 'true', 'complaint', 'smart', 'gestur', 'useless', 'devic', 'develop', 'glitch', 'freez', 'lock', 'unlock', 'enabl', 'conclus', 'contract', 'good', 'buy', 'look', 'display', 'make', 'iphon', 'small', 'android', 'use', 'friend', 'jealous', 'reason', 'may', 'want', 'larg', 'display', 'make', 'sure', 'leav', 'smart', 'gestur', 'keep', 'expect', 'reason', 'sure', 'enjoy', 'blu', 'life', 'view'], ['amaz', 'sever', 'phone', 'problem', 'box', 'amazon', 'amaz', 'amaz', 'size', 'clariti', 'easi', 'set', 'thin', 'phone', 'super', 'plus', 'lot', 'featur'], ['great'], ['phone', 'look', 'sound', 'great', 'onlin', 'got', 'big', 'thick', 'phone', 'turn', 'look', 'nice', 'big', 'wish', 'would', 'thinner'], ['love', 'phone', 'great', 'price', 'work', 'good', 'galaxi', 'microsd', 'slot', 'use', 'cloud', 'fine'], ['slow', 'hell'], ['great', 'size', 'phone'], ['good', 'top', 'brand', 'bought', 'gift', 'dear', 'friend', 'love', 'rave', 'mani', 'featur', 'constant', 'almost', 'month', 'problem', 'definit', 'get', 'one', 'ever', 'get', 'current', 'contract'], ['phone', 'not', 'unlock'], ['great'], ['awesom', 'devic', 'realli', 'afford', 'price', 'size', 'bit', 'recommend'], ['hesit', 'first', 'knew', 'noth', 'brand', 'pleasant', 'surpris', 'far', 'thorough', 'dislik', 'iphon', 'sever', 'differ', 'android', 'brand', 'not', 'found', 'one', 'realli', 'like', 'one', 'not', 'found', 'anyth', 'yet', 'one', 'realli', 'not', 'thing', 'consid', 'con', 'size', 'much', 'bigger', 'expect', 'not', 'pay', 'attent', 'dimens', 'order', 'entir', 'fault', 'taken', 'get', 'use', 'batteri', 'die', 'hurri', 'keep', 'screen', 'bright', 'turn', 'adapt', 'bright', 'batteri', 'last', 'lot', 'longer'], ['camera', 'must', 'movement', 'good', 'pic', 'even', 'pictur', 'see', 'pixl', 'disappointeddisappth', 'ted', 'picturesoften', 'run', 'slow', 'multipl', 'app', 'open', 'crashbesid', 'point', 'not', 'bad', 'get', 'pay'], ['great', 'phone'], ['amaz', 'phone', 'work', 'perfect', 'enough', 'inner', 'storag', 'fast', 'load', 'time', 'remov', 'batteri', 'issu', 'bit', 'big', 'would', 'love', 'spec', 'time', 'not', 'find', 'one', 'worth', 'besid', 'amaz', 'phone'], ['great', 'phone', 'great', 'price'], ['great', 'replac', 'iphon'], ['expect', 'work', 'perfect'], ['total', 'satisfi', 'item', 'phone', 'great', 'camera', 'great', 'great', 'price'], ['wait', 'good', 'phone', 'dad', 'featur', 'need', 'smart', 'phone', 'gb', 'built', 'expand', 'slot', 'gb', 'make', 'phone', 'better', 'one', 'ampl', 'storag', 'space', 'nice', 'camera', 'not', 'great', 'camera', 'like', 'galexi', 'iphon', 'not', 'even', 'compar', 'smart', 'phone', 'pictur', 'click', 'qualiti', 'not', 'bad', 'littl', 'slow', 'focus', 'etc', 'well', 'much', 'expect', 'phone', 'think', 'given', 'everyth', 'batteri', 'life', 'best', 'part', 'like', 'product', 'everyth', 'come', 'box', 'cover', 'screen', 'protector', 'etc', 'noth', 'buy', 'separ', 'color', 'thing', 'drawback', 'camera', 'not', 'sure', 'much', 'would', 'need', 'howev', 'not', 'test', 'signal', 'yet', 'check', 'provid', 'feedback', 'certain', 'start', 'love'], ['use', 'one', 'blu', 'phone', 'past', 'blu', 'studio', 'hd', 'lte', 'phone', 'friend', 'awesom', 'month', 'though', 'speaker', 'stop', 'work', 'blu', 'custom', 'servic', 'ask', 'send', 'phone', 'howev', 'middl', 'semest', 'not', 'want', 'part', 'phone', 'month', 'one', 'year', 'warranti', 'expir', 'phone', 'would', 'not', 'charg', 'replac', 'much', 'search', 'realiz', 'blu', 'studio', 'hd', 'lte', 'longer', 'sold', 'amazon', 'know', 'hd', 'still', 'sold', 'settl', 'blu', 'life', 'xl', 'got', 'phone', 'mail', 'day', 'ago', 'set', 'everyth', 'plug', 'headphon', 'realiz', 'sound', 'tri', 'coupl', 'differ', 'headphon', 'still', 'luck', 'send', 'back', 'howev', 'incas', 'complaint', 'one', 'specif', 'devic', 'receiv', 'updat', 'review', 'receiv', 'problem', 'notic', 'devic', 'gold', 'tone', 'side', 'not', 'realli', 'tell', 'gold', 'silver', 'bad', 'thing', 'look', 'like', 'gold', 'fade', 'not', 'someth', 'want', 'brand', 'new', 'phone'], ['super', 'sweet', 'larg', 'screen', 'fraction', 'cost', 'competitor', 'drawback', 'outterbox', 'lifeproff', 'case'], ['thank', 'reason', 'price', 'product', 'accur', 'descript', 'prompt', 'ship', 'good', 'valu', 'dollar'], ['great', 'phone', 'price', 'never', 'pay', 'three', 'time', 'much', 'samsung'], ['ok', 'bud', 'not', 'lte'], ['hesit', 'purchas', 'unlock', 'phone', 'glad', 'phone', 'great', 'size', 'work', 'great', 'easi', 'oper', 'super', 'fast', 'hear', 'problem', 'pair', 'bluetooth', 'charg', 'last', 'day'], ['amaz', 'phone', 'cost', 'great'], ['excel'], ['high', 'recommend', 'work', 'great'], ['arriv', 'time', 'work', 'excel'], ['return', 'phone', 'keep', 'freez'], ['realli', 'good', 'phone', 'perfrct', 'size', 'fast', 'speaker', 'realli', 'loud', 'make', 'screen', 'super', 'sensit', 'good', 'way', 'camera', 'realli', 'good', 'focus', 'would', 'recommend', 'buy'], ['cell', 'freez', 'much', 'one', 'week', 'time', 'pass', 'well', 'frizz'], ['got', 'mi', 'phone', 'week', 'ago', 'done', 'freez', 'tape', 'video', 'not', 'clear', 'sound', 'wen', 'send', 'voic', 'note', 'empti', 'time'], ['bought', 'phone', 'may', 'year', 'troubl', 'begin', 'text', 'input', 'extrem', 'slow', 'wait', 'restart', 'phone', 'get', 'respond', 'honest', 'say', 'i', 'not', 'fast', 'text', 'person', 'huge', 'red', 'flag', 'thank', 'i', 'prime', 'member', 'got', 'replac', 'howev', 'own', 'phone', 'complet', 'month', 'far', 'worst', 'phone', 'ever', 'list', 'phone', 'ring', 'screen', 'not', 'turn', 'not', 'respond', 'finger', 'swipe', 'ringer', 'turn', 'lowest', 'set', 'phone', 'not', 'unmut', 'call', 'three', 'way', 'option', 'command', 'not', 'allow', 'return', 'previous', 'call', 'finish', 'merg', 'call', 'phone', 'tend', 'freez', 'much', 'i', 'constant', 'reboot', 'speaker', 'phone', 'option', 'joke', 'extrem', 'low', 'volum', 'camera', 'take', 'love', 'pictur', 'zoom', 'horrend', 'pixel', 'realli', 'hope', 'save', 'someon', 'tri', 'get', 'good', 'deal', 'thought', 'get', 'i', 'stuck', 'phone', 'realli', 'work', 'want', 'not', 'recommend', 'phone', 'anyon'], ['use', 'phone', 'coupl', 'week', 'rais', 'rate', 'three', 'four', 'star', 'basic', 'found', 'bunch', 'workaround', 'overal', 'good', 'even', 'good', 'phone', 'price', 'depend', 'want', 'make', 'sure', 'order', 'not', 'memori', 'configur', 'ten', 'buck', 'twice', 'memori', 'workaround', 'poor', 'document', 'handl', 'smart', 'phone', 'life', 'not', 'care', 'not', 'ask', 'closest', 'teenag', 'relat', 'poor', 'audio', 'speaker', 'mono', 'not', 'hear', 'matter', 'high', 'crank', 'volum', 'earbud', 'suck', 'workaround', 'get', 'cheap', 'total', 'differ', 'pair', 'bud', 'actual', 'fit', 'ok', 'insid', 'ear', 'camera', 'pretti', 'good', 'casual', 'photo', 'outdoor', 'sunlight', 'peel', 'plastic', 'layer', 'undocu', 'len', 'cover', 'set', 'shutter', 'delay', 'sec', 'avoid', 'camera', 'shake', 'camera', 'suck', 'low', 'light', 'optic', 'zoom', 'take', 'museum', 'photo', 'would', 'serious', 'not', 'recommend', 'otherwis', 'may', 'happi', 'jpg', 'photo', 'straight', 'camera', 'compat', 'photoshop', 'le', 'get', 'segment', 'length', 'error', 'export', 'first', 'blu', 'photo', 'editor', 'annoy', 'one', 'photo', 'time', 'come', 'preload', 'two', 'dozen', 'worthless', 'know', 'lot', 'negat', 'posit', 'price', 'well', 'price', 'not', 'like', 'phone', 'screw', 'anyth', 'not', 'like', 'negat', 'buy', 'much'], ['amaz', 'phone', 'work', 'perfect', 'enough', 'inner', 'storag', 'fast', 'load', 'time', 'remov', 'batteri', 'issu', 'bit', 'big', 'would', 'love', 'spec', 'time', 'not', 'find', 'one', 'worth', 'besid', 'amaz', 'phone'], ['hour', 'far', 'great', 'phone', 'previous', 'blu', 'studio', 'far', 'upgrad', 'except', 'screen', 'size', 'blu', 'life', 'xl', 'lte', 'tmobil', 'network', 'take', 'small', 'sim', 'card', 'speaker', 'whole', 'lot', 'better', 'blu', 'studio', 'far', 'love', 'would', 'given', 'support', 'product', 'like', 'case', 'screen', 'protector', 'blu', 'websit'], ['work', 'like', 'dream'], ['bought', 'phone', 'mom', 'most', 'use', 'access', 'facebook', 'phone', 'not', 'work', 'well', 'facebook', 'constant', 'crash', 'app', 'phone', 'longer', 'abl', 'download', 'anymor', 'app', 'reliz', 'bought', 'regular', 'version', 'memori', 'high', 'recommend', 'go', 'one', 'memori', 'aunt', 'saw', 'mom', 'phone', 'despit', 'flaw', 'insist', 'get', 'one', 'day', 'ask', 'return', 'play', 'game', 'phone', 'abl', 'download', 'exact', 'one', 'game'], ['high', 'recommend', 'work', 'great'], ['phone', 'great', 'proposit', 'not', 'expect', 'work', 'like', 'phone', 'cost', 'hundr', 'not', 'disappoint', 'compar', 'phone', 'price', 'rang', 'consid', 'phone', 'one', 'elit', 'cost', 'ram', 'phone', 'i', 'go', 'minimum', 'serious', 'run', 'android', 'bloatwar', 'compar', 'major', 'brand', 'phone', 'carrier', 'may', 'common', 'featur', 'unlock', 'phone', 'welcom', 'chang', 'snapdragon', 'quad', 'core', 'processor', 'run', 'multipl', 'ap', 'quick', 'sim', 'card', 'featur', 'nice', 'though', 'not', 'use', 'case', 'design', 'make', 'screen', 'phone', 'easier', 'display', 'adequ', 'not', 'market', 'accessori', 'like', 'barebon', 'could', 'use', 'addit', 'featur', 'not', 'issu', 'cours', 'use', 'third', 'parti', 'escap', 'previous', 'ap', 'button', 'screen', 'instead', 'button', 'phone', 'screen', 'take', 'valuabl', 'screen', 'space'], ['great', 'phone', 'sit', 'expens', 'high', 'end', 'issu', 'honest', 'not', 'chrome', 'freez', 'time', 'time', 'tri', 'watch', 'embed', 'video', 'web', 'music', 'player', 'not', 'recogn', 'file', 'sd', 'consid', 'spent', 'phone', 'i', 'happi', 'went', 'version', 'still', 'not', 'complain'], ['love', 'new', 'phone'], ['edit', 'softwar', 'glitch', 'updat', 'fix', 'work', 'bottom', 'left', 'corner', 'screen', 'not', 'work'], ['freez', 'often', 'great', 'phone'], ['pictur', 'qualiti', 'great', 'not', 'sure', 'long', 'batteri', 'life', 'go', 'last', 'seem', 'bit', 'short', 'phone', 'use', 'great', 'phone'], ['got', 'phone', 'not', 'want', 'held', 'payment', 'phone', 'month', 'beyond', 'not', 'mention', 'fear', 'alway', 'break', 'expens', 'phone', 'like', 'galaxi', 'not', 'much', 'phone', 'not', 'truli', 'five', 'star', 'phone', 'compar', 'other', 'price', 'absolut', 'deserv', 'worri', 'hd', 'resolut', 'surpris', 'bright', 'screen', 'rich', 'color', 'clariti', 'cours', 'not', 'phone', 'honest', 'not', 'affect', 'slightest', 'touch', 'respons', 'media', 'look', 'good', 'import', 'enjoy', 'take', 'pictur', 'right', 'left', 'phone', 'minimum', 'video', 'record', 'alon', 'not', 'make', 'good', 'video', 'record', 'met', 'expect', 'qualiti', 'averag', 'scene', 'found', 'pleasant', 'speed', 'video', 'phone', 'struggl', 'maintain', 'one', 'keep', 'rock', 'solid', 'dare', 'say', 'feel', 'time', 'smooth', 'stutter', 'find', 'cheaper', 'phone', 'pictur', 'not', 'great', 'neither', 'bad', 'easili', 'call', 'decent', 'fulli', 'usabl', 'not', 'match', 'like', 'lg', 'samsung', 'well', 'enough', 'differ', 'main', 'zoom', 'look', 'pictur', 'phone', 'small', 'screen', 'hard', 'press', 'notic', 'weak', 'camera', 'low', 'light', 'almost', 'phone', 'suffer', 'bad', 'question', 'auto', 'focus', 'sometim', 'place', 'take', 'pictur', 'requir', 'go', 'surpris', 'secret', 'cpu', 'snapdragon', 'power', 'sipper', 'not', 'think', 'good', 'charg', 'fulli', 'unplug', 'not', 'charg', 'till', 'third', 'day', 'mind', 'light', 'use', 'reach', 'hr', 'screen', 'time', 'good', 'book', 'clear', 'screen', 'biggest', 'hog', 'power', 'lower', 'bright', 'get', 'nice', 'boost', 'batteri', 'life', 'keep', 'mind', 'sim', 'slot', 'not', 'use', 'sim', 'activ', 'qualiti', 'pleasant', 'surpris', 'back', 'panel', 'feel', 'solid', 'place', 'creak', 'unlik', 'button', 'feel', 'firm', 'not', 'flimsi', 'around', 'good', 'workmanship', 'not', 'notic', 'defect', 'devic', 'rubberi', 'back', 'plate', 'remov', 'not', 'feel', 'cheap', 'instal', 'despit', 'price', 'tag', 'feel', 'cpu', 'power', 'phone', 'not', 'known', 'heavi', 'duti', 'graphic', 'game', 'specialti', 'drive', 'phone', 'low', 'power', 'use', 'keep', 'smooth', 'oper', 'beauti', 'swap', 'chrome', 'messag', 'gps', 'stream', 'music', 'without', 'lag', 'quit', 'impress', 'not', 'tri', 'game', 'sinc', 'screen', 'think', 'manag', 'well', 'pleas', 'phone', 'larg', 'bright', 'screen', 'crisp', 'resolut', 'camera', 'perform', 'quit', 'well', 'batteri', 'life', 'easili', 'averag', 'worst', 'great', 'best', 'qualiti', 'materi', 'not', 'make', 'feel', 'like', 'hold', 'cheap', 'phone', 'dual', 'sim', 'slot', 'bonus', 'found', 'hard', 'get', 'phone', 'rang', 'support', 'band', 'lte', 'gps', 'proven', 'accur', 'well', 'not', 'fault', 'shortcom', 'phone', 'due', 'price', 'rip', 'moto', 'g', 'shred', 'term', 'valu', 'pay', 'easili', 'beat', 'sinc', 'start', 'model', 'ram', 'storag', 'softwar', 'not', 'pure', 'stock', 'close', 'enough', 'weak', 'think', 'unlik', 'marshmallow', 'updat', 'case', 'protect', 'option', 'close', 'zero'], ['bought', 'girl', 'birthday', 'use', 'game', 'text', 'research', 'occasion', 'phone', 'call', 'seem', 'great', 'batteri', 'life', 'load', 'featur', 'sturdi', 'build', 'accessori', 'avail', 'market', 'would', 'definit', 'buy', 'blu', 'good', 'product'], ['great', 'replac', 'iphon'], ['bought', 'give', 'birthday', 'gift', 'hit', 'person', 'receiv', 'love', 'use', 'everyday', 'phone', 'work', 'well', 'perfecto', 'size', 'even', 'small', 'hand', 'mention', 'model', 'amazon', 'well', 'price', 'compar', 'one', 'major', 'electron', 'retail', 'come', 'accessori', 'need'], ['phone', 'bit', 'thicker', 'blu', 'life', 'one', 'xl', 'not', 'much', 'also', 'doubl', 'weight', 'howev', 'screen', 'brighter', 'color', 'much', 'vivid', 'keep', 'mind', 'love', 'video', 'qualiti', 'blu', 'life', 'one', 'xl', 'blu', 'life', 'xl', 'though', 'favorit', 'get', 'better', 'cell', 'recept', 'much', 'faster', 'phone', 'built', 'well', 'work', 'awesom', 'love', 'phone', 'addit', 'receiv', 'phone', 'quick', 'packag', 'well', 'seller', 'phone', 'great', 'joget', 'new', 'phone', 'fast', 'safe', 'sound'], ['i', 'still', 'evalu', 'phone', 'technic', 'issu', 'volum', 'turn', 'move', 'app', 'phone', 'sd', 'card', 'move', 'sd', 'card', 'get', 'error', 'say', 'app', 'unabl', 'move', 'next', 'day', 'go', 'back', 'set', 'tri', 'move', 'app', 'move', 'sd', 'card', 'app', 'alreadi', 'move', 'switch', 'back', 'phone', 'phone', 'technic', 'bug', 'list', 'phone', 'long', 'return', 'would', 'good', 'phone', 'blu', 'would', 'fix', 'bug', 'phone'], ['camera', 'must', 'movement', 'good', 'pic', 'even', 'pictur', 'see', 'pixl', 'disappointeddisappth', 'ted', 'picturesoften', 'run', 'slow', 'multipl', 'app', 'open', 'crashbesid', 'point', 'not', 'bad', 'get', 'pay'], ['phone', 'not', 'catch', 'signal', 'need', 'refund', 'pleas', 'contact', 'need', 'help'], ['purchas', 'husband', 'firephon', 'talk', 'final', 'get', 'rid', 'well', 'contract', 'better', 'servic', 'anyway', 'sinc', 'could', 'longer', 'buy', 'firephon', 'decid', 'one', 'look', 'like', 'great', 'deal', 'money', 'wow', 'ever', 'save', 'lot', 'money', 'phone', 'everyth', 'intuit', 'even', 'coupl', 'old', 'fogi', 'like', 'us', 'figur', 'take', 'great', 'pictur', 'good', 'size', 'screen', 'volum', 'could', 'louder', 'not', 'bad'], ['everyth', 'said', 'would', 'month', 'still', 'function', 'way', 'first', 'got'], ['great', 'phone', 'price', 'never', 'pay', 'three', 'time', 'much', 'samsung'], ['fast', 'mani', 'phone', 'price', 'great', 'camera'], ['great', 'phone', 'especi', 'money'], ['not', 'buy', 'phone', 'freez', 'bright', 'beauti', 'not', 'even', 'use', 'freeken', 'phone', 'crash', 'like', 'crazi', 'drop', 'call', 'not', 'even', 'wake', 'would', 'blus', 'sluggish', 'phone', 'like', 'total', 'mess', 'mean', 'noth', 'like', 'phone', 'made', 'ten', 'year', 'ago'], ['pleas', 'upgrad', 'previous', 'blu'], ['great', 'phone', 'howev', 'alreadi', 'switch', 'phone', 'not', 'servic', 'insert', 'sim', 'card', 'need', 'get', 'new', 'sim', 'card'], ['sorri', 'phone', 'not', 'hope', 'would', 'reason', 'alert', 'sound', 'time', 'way', 'adjust', 'gone', 'far', 'factori', 'reset', 'phone', 'remain', 'problemat', 'sound', 'alarm', 'appar', 'reason', 'not', 'charg', 'probabl', 'heat', 'way', 'hot', 'mention', 'fault', 'becom', 'troublesom', 'thank'], ['thank'], ['bought', 'phone', 'mom', 'most', 'use', 'access', 'facebook', 'phone', 'not', 'work', 'well', 'facebook', 'constant', 'crash', 'app', 'phone', 'longer', 'abl', 'download', 'anymor', 'app', 'reliz', 'bought', 'regular', 'version', 'memori', 'high', 'recommend', 'go', 'one', 'memori', 'aunt', 'saw', 'mom', 'phone', 'despit', 'flaw', 'insist', 'get', 'one', 'day', 'ask', 'return', 'play', 'game', 'phone', 'abl', 'download', 'exact', 'one', 'game'], ['love'], ['cool'], ['done', 'lot', 'research', 'order', 'phone', 'phone', 'great', 'review', 'love', 'phone', 'month', 'happi', 'problem', 'found', 'sometim', 'freez', 'text', 'slow', 'wait', 'see', 'text', 'send', 'last', 'batteri', 'hold', 'charg', 'day', 'plug', 'everi', 'night', 'die', 'next', 'day', 'three', 'thing', 'someth', 'live', 'great', 'phone'], ['work', 'pretti', 'well', 'ghana'], ['bought', 'adult', 'daughter', 'love', 'say', 'fastest', 'phone', 'own', 'take', 'great', 'photo'], ['point', 'noth', 'complain', 'grant', 'i', 'month', 'love', 'everyth', 'fast', 'plenti', 'memori', 'realli', 'well', 'price'], ['far', 'good', 'without', 'preload', 'app', 'not', 'need', 'keep', 'decent', 'keep', 'updat'], ['far', 'good', 'blu', 'seem', 'found', 'nich', 'make', 'durabl', 'phone', 'bell', 'whistl', 'compar', 'phone', 'market', 'highest', 'mark', 'go', 'overal', 'afford', 'purchas', 'differ', 'blu', 'model', 'recent', 'avail', 'consider', 'less', 'could', 'gotten', 'one', 'advertis', 'brand', 'avail', 'market', 'samsung', 'lg', 'motorola', 'etc', 'phone', 'short', 'time', 'i', 'curious', 'see', 'well', 'phone', 'time', 'initi', 'review', 'i', 'happi'], ['total', 'exceed', 'could', 'love', 'phone', 'i', 'would', 'total', 'head', 'would', 'read', 'review', 'consid', 'mediocr', 'smartphon', 'fast', 'favourit', 'app', 'room', 'speed', 'spare', 'galaxi', 'best', 'damn', 'phone', 'ever', 'die', 'replac', 'think', 'bit', 'better', 'like', 'big', 'screen', 'clear', 'insid', 'outsid', 'camera', 'good', 'sharp', 'not', 'profession', 'grade', 'duel', 'sim', 'card', 'slot', 'need', 'would', 'say', 'drawback', 'lack', 'aftermarket', 'cell', 'cover', 'come', 'one', 'i', 'would', 'realli', 'like', 'tardi', 'cover'], ['excelent'], ['love', 'phone', 'receiv', 'may', 'not', 'charg', 'unless', 'charg', 'cord', 'rig', 'kind', 'way', 'know', 'charg', 'port', 'bc', 'tri', 'differ', 'charg', 'cord', 'differ', 'charger', 'wall', 'plug', 'sinc', 'friday', 'shut', 'sever', 'time', 'throughout', 'day', 'aggrav', 'bought', 'phone', 'month', 'bought', 'blu', 'life', 'one', 'first', 'time', 'screen', 'shatter', 'complet', 'i', 'bought', 'phone', 'past', 'month'], ['recomendado'], ['phone', 'month', 'love', 'take', 'better', 'video', 'photo', 'husband', 'samsung', 'phone', 'sister', 'law', 'iphon', 'complaint', 'ever'], ['excel'], ['great', 'phone', 'price', 'i', 'month', 'everyth', 'glorious', 'perfect', 'price'], ['good', 'celphon'], ['not', 'know', 'i', 'read', 'review', 'onlin', 'phone', 'horribl', 'batteri', 'life', 'not', 'good', 'lte', 'coverag', 'mayb', 'ymmv', 'sacramento', 'ca', 'get', 'excel', 'coverag', 'download', 'speed', 'camera', 'almost', 'match', 'note', 'qualiti', 'phone', 'great', 'job', 'handl', 'game', 'multitask', 'i', 'own', 'note', 'note', 'galaxi', 'motorola', 'htc', 'one', 'max', 'lg', 'g', 'flex', 'lg', 'g', 'flex', 'etc', 'get', 'idea', 'love', 'phone', 'phone', 'best', 'valu', 'dollar', 'dollar', 'solid', 'phone', 'gorgeous', 'screen', 'better', 'nexus', 'i', 'truli', 'impress', 'shock', 'blu', 'could', 'make', 'phone', 'like', 'easili', 'worth', 'steal'], ['love', 'phone', 'work', 'coupl', 'month', 'stop', 'get', 'consist', 'recept', 'like', 'anywher', 'found', 'hard', 'send', 'text', 'complet', 'call', 'sent', 'back', 'twice', 'fix', 'first', 'time', 'work', 'month', 'thing', 'send', 'pure', 'xr', 'replac', 'i', 'actual', 'thank', 'littl', 'bit', 'smaller', 'size', 'hard', 'handl', 'small', 'hand', 'servic', 'folk', 'great', 'phone', 'perform', 'realli', 'well', 'work', 'great', 'video', 'great', 'perform', 'app', 'especi', 'waze', 'i', 'littl', 'bum', 'new', 'phone', 'not', 'quit', 'good', 'camera', 'one', 'wow', 'new', 'one', 'overal', 'love', 'phone', 'servic', 'great', 'thing', 'went', 'wrong', 'improv', 'compani', 'grow'], ['not', 'take', 'long', 'get', 'clariti', 'screen', 'photo', 'video', 'qualiti', 'os', 'crash', 'constant', 'restart', 'phone', 'time', 'day', 'keep', 'ask', 'pick', 'keyboard', 'input', 'not', 'freez', 'display', 'stop', 'work', 'month', 'purchas', 'told', 'day', 'receiv', 'fix', 'replac', 'talk', 'three', 'differ', 'peopl', 'someon', 'smart', 'enough', 'understand', 'issu', 'phone', 'screen', 'not', 'charg', 'not', 'tell', 'take', 'day', 'warranti', 'depart', 'receiv', 'warehous', 'told', 'send', 'took', 'day', 'time', 'receiv', 'via', 'fed', 'ex', 'deliv', 'warranti', 'depart', 'phone', 'month', 'locat', 'month', 'get', 'fix', 'i', 'never', 'buy', 'blu', 'i', 'would', 'give', 'minus', 'star', 'could'], ['excelent'], ['junk', 'not', 'wast', 'phone', 'work', 'month', 'two', 'two', 'return', 'fail', 'mid', 'rang', 'phone', 'spec', 'nice', 'hardwar', 'garbag', 'pleas', 'not', 'fool'], ['recent', 'receiv', 'phone', 'phone', 'came', 'time', 'everyth', 'say', 'abl', 'yo', 'use', 'alot', 'featur', 'app', 'similar', 'iphon', 'sis', 'one', 'compar', 'phone', 'perform', 'alot', 'van', 'honest', 'say', 'hold', 'yhe', 'iphon', 'plus', 'love', 'price', 'well', 'worth', 'everi', 'one', 'ask', 'type', 'phone', 'find', 'definit', 'recommend', 'fast', 'download', 'gitch', 'also', 'excel', 'screen', 'look', 'expens', 'sleak', 'smooth', 'feel', 'take', 'great', 'front', 'face', 'selfi', 'dem', 'light', 'area', 'complaint', 'blu', 'great', 'job', 'phone', 'receiv', 'phone', 'time', 'thank'], ['great', 'phone', 'money', 'huge', 'screen', 'camera', 'crazi', 'photo', 'chart', 'clear', 'n', 'crisp', 'love', 'love', 'love', 'phone', 'well', 'made', 'great', 'look'], ['great'], ['awesom', 'phone', 'alot', 'peopl', 'iphon', 'samsung', 'want', 'phone', 'could', 'bigger', 'like', 'littl', 'comput', 'tv', 'profession', 'camera', 'famili', 'love'], ['honest', 'awesom', 'phone', 'top', 'would', 'make', 'partial', 'lte', 'not', 'get', 'facebook', 'youtub', 'i', 'wish', 'search', 'someth', 'jump', 'wifi', 'call', 'text', 'phone', 'not', 'go', 'phone', 'look', 'stuff', 'use', 'mobil', 'datajust', 'dissapoint'], ['love', 'blu', 'phone', 'convert', 'iphon', 'not', 'disappoint', 'button', 'placement', 'could', 'littl', 'conveni', 'overal', 'excel', 'phone'], ['i', 'love', 'phone', 'batteri', 'good', 'use', 'phone', 'day', 'long', 'not', 'need', 'charg', 'photo', 'perfect', 'total', 'recommend'], ['far', 'happi', 'i', 'near', 'year', 'old', 'not', 'phone', 'expert', 'compar', 'pic', 'camera', 'take', 'samsung', 'galaxi', 'not', 'realli', 'tell', 'differ', 'select', 'pic', 'zoom', 'see', 'small', 'detail', 'app', 'run', 'multipl', 'time', 'lag', 'hot', 'batteri', 'howev', 'tri', 'dilig', 'turn', 'app', 'run', 'background', 'quick', 'charger', 'awesom', 'like', 'other', 'said', 'would', 'realli', 'like', 'find', 'armor', 'case', 'certain', 'not', 'stop', 'buy', 'i', 'recommend', 'anyon', 'want', 'good', 'perform', 'reason', 'price', 'awar', 'form', 'factor', 'sim', 'card', 'requir', 'micro', 'damn', 'nice', 'phone', 'money'], ['heat'], ['phone', 'random', 'shut', 'anyon', 'els', 'issu', 'overh', 'crap', 'app', 'idea'], ['phone', 'replac', 'galaxi', 'note', 'fli', 'color', 'feel', 'much', 'better', 'mani', 'way', 'fingerprint', 'scanner', 'work', 'great', 'screen', 'fantast', 'run', 'everyth', 'smooth', 'effici', 'feel', 'batteri', 'could', 'better', 'think', 'general', 'consensus', 'want', 'batteri', 'plug', 'phone', 'year', 'sorri', 'not', 'go', 'happen', 'good', 'year', 'want', 'phone', 'i', 'go', 'better', 'note', 'come', 'everyth', 'need', 'includ', 'smart', 'case', 'screen', 'protector', 'item', 'includ', 'awesom', 'box'], ['best', 'phone', 'i', 'not', 'care', 'peopl', 'say', 'appl', 'phone', 'bore', 'suck', 'phone', 'cheap', 'cost', 'work', 'better', 'rest', 'pay', 'high', 'recommend', 'phone'], ['nice'], ['great', 'began', 'shutdown', 'without', 'warn'], ['great', 'phone', 'softwar', 'glicki'], ['phone', 'absolut', 'amaz', 'concern', 'batteri', 'life', 'saw', 'review', 'awe', 'i', 'heavi', 'user', 'last', 'approxim', 'day', 'half', 'phone', 'respons', 'bad', 'thing', 'button', 'not', 'selfi', 'camera', 'not', 'best', 'thing', 'not', 'huge', 'deal', 'price', 'unlock', 'phone', 'unbeat', 'absolut', 'love', 'fingerprint', 'scanner', 'work', 'great'], ['excel', 'product', 'price', 'far', 'exceed', 'expect', 'previous', 'phone', 'galaxi', 'note', 'version', 'th', 'blu', 'pure', 'xl', 'much', 'better', 'everi', 'way', 'except', 'fact', 'not', 'stylus'], ['got', 'wrong', 'phone', 'insid', 'box', 'anoth', 'blu', 'model'], ['worst', 'attent', 'servic', 'everi', 'way', 'phone', 'overheat', 'batteri', 'poor', 'qualiti', 'warranti', 'shami', 'not', 'advis', 'buy', 'phone', 'lost', 'money'], ['look', 'great', 'spec', 'price', 'blu', 'way', 'go', 'i', 'never', 'go', 'use', 'anyth', 'blu', 'ever'], ['not', 'work', 'mobil', 'thought', 'unlock'], ['bought', 'use', 'came', 'absolut', 'flawless', 'miss', 'back', 'cover', 'nfc', 'sticker', 'come', 'flip', 'cover', 'not', 'put', 'wallet', 'case', 'bought', 'flip', 'cover', 'anyon', 'link', 'back', 'cover', 'either', 'replac', 'one', 'would', 'fit', 'insid', 'wallet', 'case', 'pleas', 'let', 'seem', 'pretti', 'good', 'call', 'volum', 'could', 'better', 'i', 'also', 'still', 'play', 'colour', 'phone', 'fake', 'call', 'button', 'press', 'second', 'way', 'escap', 'creep', 'also', 'miss', 'app', 'drawer', 'i', 'ipod', 'touch', 'i', 'use', 'hide', 'app', 'differ', 'screen', 'folder', 'mark', 'could', 'updat', 'phone', 'use'], ['amaz', 'phone', 'love', 'fast', 'would', 'buy', 'time'], ['product', 'describ'], ['not', 'buy', 'phone', 'extrem', 'crappi', 'batteri', 'not', 'replac', 'break', 'short', 'month', 'use', 'not', 'wast', 'well', 'dollar', 'brick'], ['love', 'phone', 'work', 'coupl', 'month', 'stop', 'get', 'consist', 'recept', 'like', 'anywher', 'found', 'hard', 'send', 'text', 'complet', 'call', 'sent', 'back', 'twice', 'fix', 'first', 'time', 'work', 'month', 'thing', 'send', 'pure', 'xr', 'replac', 'i', 'actual', 'thank', 'littl', 'bit', 'smaller', 'size', 'hard', 'handl', 'small', 'hand', 'servic', 'folk', 'great', 'phone', 'perform', 'realli', 'well', 'work', 'great', 'video', 'great', 'perform', 'app', 'especi', 'waze', 'i', 'littl', 'bum', 'new', 'phone', 'not', 'quit', 'good', 'camera', 'one', 'wow', 'new', 'one', 'overal', 'love', 'phone', 'servic', 'great', 'thing', 'went', 'wrong', 'improv', 'compani', 'grow'], ['first', 'thing', 'first', 'go', 'buy', 'phone', 'most', 'need', 'sooner', 'later', 'bought', 'phone', 'look', 'good', 'technic', 'specif', 'good', 'user', 'review', 'amazon', 'littl', 'know', 'store', 'phone', 'work', 'well', 'initi', 'day', 'tri', 'connect', 'pc', 'download', 'photo', 'phone', 'simpli', 'not', 'recogn', 'window', 'pc', 'kept', 'issu', 'instal', 'error', 'tri', 'various', 'troubleshoot', 'techniqu', 'not', 'work', 'moreov', 'camera', 'tout', 'good', 'spec', 'not', 'captur', 'good', 'imag', 'hdr', 'mode', 'imag', 'blurri', 'fuzzi', 'standard', 'mode', 'issu', 'though', 'result', 'hdr', 'featur', 'phone', 'camera', 'pretti', 'much', 'useless', 'phone', 'also', 'problem', 'switch', 'gps', 'mode', 'abrupt', 'restart', 'minut', 'not', 'enough', 'earphon', 'although', 'look', 'good', 'qualiti', 'coupl', 'month', 'one', 'earpiec', 'dead', 'string', 'issu', 'simpli', 'point', 'fact', 'devic', 'poor', 'built', 'qa', 'come', 'epic', 'part', 'custom', 'servic', 'blu', 'not', 'serious', 'compani', 'not', 'take', 'respons', 'defect', 'phone', 'call', 'custom', 'servic', 'claim', 'warranti', 'devic', 'custom', 'servic', 'person', 'although', 'seem', 'polit', 'took', 'detail', 'complaint', 'call', 'sent', 'form', 'email', 'fill', 'detail', 'questionnair', 'send', 'form', 'send', 'rma', 'number', 'email', 'not', 'send', 'ship', 'label', 'sent', 'phone', 'pay', 'ship', 'took', 'week', 'process', 'send', 'back', 'anoth', 'phone', 'numer', 'follow', 'up', 'phone', 'not', 'faster', 'turnaround', 'time', 'not', 'entertain', 'request', 'also', 'not', 'give', 'temporari', 'replac', 'devic', 'time', 'well', 'expect', 'would', 'atleast', 'solv', 'problem', 'big', 'mistak', 'replac', 'devic', 'also', 'similar', 'problem', 'issu', 'replac', 'devic', 'came', 'scratch', 'back', 'cover', 'talk', 'custom', 'servic', 'make', 'clear', 'tri', 'implic', 'issu', 'relat', 'hardwar', 'tri', 'void', 'warranti', 'even', 'scratch', 'enough', 'claim', 'hardwar', 'damag', 'void', 'warranti', 'even', 'tell', 'reciev', 'devic', 'blu', 'cust', 'servic', 'repli', 'contact', 'ship', 'carrier', 'work', 'remedi', 'incred', 'deceit', 'servic', 'told', 'drag', 'consum', 'court', 'current', 'file', 'complaint', 'would', 'say', 'avoid', 'purchas', 'blu', 'product', 'built', 'poor', 'qualiti', 'wors', 'custom', 'servic', 'boot'], ['phone', 'best', 'use', 'site', 'make', 'sure', 'phone', 'work'], ['great', 'phone', 'especi', 'factor', 'cost', 'vs', 'phone', 'market', 'blu', 'pure', 'xl', 'samsung', 'note', 'iphon', 'phone', 'easili', 'perform', 'note', 'iphon', 'reason', 'not', 'give', 'star', 'due', 'size', 'littl', 'larg', 'heavi', 'realli', 'like', 'big', 'phone', 'mean', 'deal', 'buster', 'would', 'not', 'want', 'phone', 'bigger', 'also', 'not', 'love', 'speaker', 'back', 'phone', 'not', 'major', 'issu', 'blu', 'keep', 'produc', 'phone', 'qualiti', 'price', 'area', 'vs', 'phone', 'custom', 'use', 'phone', 'tmobil', 'network', 'not', 'issu'], ['satisfi', 'product', 'great', 'phone', 'fast', 'lot', 'storag', 'capabl', 'pictur', 'qualiti', 'amaz', 'reason', 'give', 'star', 'short', 'time', 'product', 'not', 'chanc', 'explor', 'far', 'happi'], ['great', 'phone', 'love'], ['good'], ['i', 'phone', 'week', 'i', 'admit', 'niceti', 'see', 'review', 'true', 'nice', 'feel', 'nice', 'screen', 'etc', 'i', 'surpris', 'nobodi', 'far', 'knock', 'batteri', 'terribl', 'i', 'done', 'far', 'configur', 'gmail', 'download', 'ring', 'central', 'look', 'app', 'not', 'even', 'insert', 'sim', 'yet', 'batteri', 'keep', 'run', 'day', 'without', 'even', 'touch', 'phone', 'batteri', 'drain', 'like', 'not', 'good', 'sign', 'bought', 'studio', 'xl', 'seem', 'better', 'i', 'watch', 'friday', 'i', 'back', 'updat', 'hope', 'i', 'abl', 'upgrad', 'star', 'atleast'], ['prosa', 'lot', 'sensor', 'outstand', 'screen', 'excel', 'camera', 'resist', 'fall', 'amaz', 'speaker', 'realli', 'good', 'sound', 'much', 'space', 'life', 'short', 'hour', 'normal', 'social', 'media', 'use', 'problem', 'heat', 'even', 'stand', 'not', 'android', 'updat', 'yet'], ['work', 'great', 'peopl', 'work', 'stop', 'ask', 'kind', 'phone', 'everyth', 'flagship', 'phone', 'would'], ['say', 'unlock', 'turn', 'say', 'mobil', 'took', 'att', 'work', 'sim', 'card', 'get', 'batteri', 'overh', 'messag', 'ask', 'remov', 'batteri', 'not', 'sad', 'return', 'phone', 'amazin', 'sent', 'second', 'far', 'issu', 'batteri', 'updat', 'first', 'one', 'lock', 'call', 'blu', 'batteri', 'messag', 'show', 'phone', 'told', 'turn', 'charg', 'phone', 'not', 'start', 'spent', 'day', 'transfer', 'disappoint', 'love', 'size', 'wtc', 'phone', 'must', 'send', 'back'], ['hardwar', 'great', 'price', 'major', 'crash', 'phone', 'rare', 'crash', 'program', 'mayb', 'one', 'month', 'also', 'unusu', 'find', 'phone', 'micro', 'sd', 'slot', 'not', 'one', 'two', 'micro', 'sim', 'slot'], ['bought', 'phone', 'year', 'ago', 'felt', 'like', 'give', 'updat', 'phone', 'awesom', 'especi', 'camera', 'qualiti', 'get', 'stop', 'almost', 'everywher', 'person', 'ask', 'phone', 'take', 'pic', 'phone', 'huge', 'storag', 'speed', 'great', 'finger', 'print', 'scanner', 'work', 'well', 'btw', 'peopl', 'amaz', 'see', 'phone', 'specif', 'not', 'know', 'blu', 'great', 'capabl', 'major', 'disadvantag', 'phone', 'get', 'hot', 'especi', 'charg', 'prolong', 'use', 'also', 'notic', 'phone', 'charg', 'faster', 'authent', 'charger', 'generic', 'anoth', 'brand', 'not', 'believ', 'disappoint', 'phone', 'especi', 'buy', 'camera', 'qualiti', 'storag', 'space', 'speed'], ['experi', 'phone', 'amaz', 'devic', 'beauti', 'screen', 'qualiti', 'nice', 'camera', 'autolight', 'decid', 'work', 'super', 'fast', 'lot', 'great', 'featur', 'storag', 'space', 'two', 'star', 'rate', 'ask', 'apart', 'camera', 'issu', 'four', 'month', 'own', 'beauti', 'devic', 'start', 'get', 'notif', 'charg', 'batteri', 'overh', 'eventu', 'end', 'batteri', 'failur', 'extent', 'continu', 'turn', 'way', 'keep', 'plug', 'charger', 'end', 'even', 'phone', 'would', 'sometim', 'shut', 'research', 'come', 'see', 'pretti', 'common', 'issu', 'yet', 'resolv', 'bad', 'enough', 'star', 'rate', 'opinion', 'reason', 'took', 'start', 'custom', 'servic', 'report', 'issu', 'blu', 'rep', 'go', 'motion', 'replac', 'cool', 'i', 'fine', 'problem', 'get', 'end', 'get', 'email', 'tell', 'need', 'send', 'phone', 'back', 'expens', 'must', 'wait', 'day', 'replac', 'i', 'not', 'sure', 'feel', 'primari', 'demograph', 'adult', 'might', 'job', 'babysitt', 'landlord', 'client', 'anyon', 'els', 'call', 'not', 'afford', 'go', 'day', 'phoneless', 'issu', 'manufactur', 'fault', 'let', 'alon', 'ship', 'expens', 'star', 'blu', 'amaz', 'devic', 'horribl', 'custom', 'servic'], ['bought', 'phone', 'month', 'ago', 'stop', 'work', 'sent', 'replac', 'stop', 'work', 'well', 'demand', 'full', 'refund', 'told', 'refund', 'window', 'close', 'need', 'refund', 'phone', 'good', 'never', 'buy', 'blu', 'phone'], ['great', 'cellphon', 'camera', 'amaz'], ['excel', 'phone', 'wonder', 'camera', 'fast', 'sensit', 'lovabl', 'batteri', 'short', 'capac'], ['like', 'samsung', 'without', 'sticker', 'shock'], ['perfect', 'price', 'point', 'weari', 'lack', 'updat'], ['great', 'phone', 'band', 'not', 'work', 'well', 'neighbourhood', 'not', 'know', 'problem', 'compani', 'countri', 'problem', 'phone', 'connect', 'band', 'place', 'town', 'not', 'live', 'curious', 'sister', 'phone', 'connect', 'run', 'well', 'blu', 'pure', 'xl', 'abl'], ['bought', 'phone', 'right', 'box', 'not', 'download', 'app', 'googl', 'play', 'store', 'chat', 'near', 'hour', 'googl', 'specialist', 'tri', 'get', 'work', 'everyth', 'els', 'seem', 'least', 'work', 'not', 'enough', 'time', 'critiqu', 'anyth', 'complet', 'unabl', 'download', 'app', 'would', 'like', 'know', 'go', 'def', 'not', 'good', 'first', 'impress', 'point', 'phone', 'major', 'defect', 'right', 'box', 'not', 'pleasant'], ['return', 'due', 'softwar', 'issu', 'blu', 'android', 'os', 'would', 'not', 'let', 'instal', 'crucial', 'app', 'bank', 'app', 'return', 'full', 'refund'], ['husband', 'littl', 'bit', 'dissapoint', 'batteri', 'soon', 'gone', 'not', 'proper', 'charg', 'batteri'], ['heat'], ['work', 'great', 'senser', 'certain', 'part', 'screen', 'not', 'like', 'new', 'phone', 'great', 'camra', 'tex', 'notif', 'sound', 'not', 'work'], ['first', 'android', 'phone', 'far', 'good'], ['love', 'third', 'phone', 'blu', 'i', 'purchas', 'upgrad', 'vivo', 'air', 'definit', 'fit', 'flagship', 'batteri', 'heavi', 'use', 'last'], ['blu', 'compani', 'want', 'root', 'offer', 'product', 'paper', 'look', 'appeal', 'pure', 'xl', 'great', 'spec', 'theori', 'could', 'fantast', 'phone', 'howev', 'alway', 'two', 'issu', 'ruin', 'blu', 'product', 'never', 'updat', 'android', 'op', 'system', 'alway', 'least', 'one', 'version', 'poor', 'glitchi', 'ui', 'bluth', 'pure', 'xl', 'receiv', 'work', 'great', 'two', 'day', 'softwar', 'issu', 'hit', 'download', 'app', 'boom', 'phone', 'spontaneusli', 'reboot', 'went', 'reboot', 'cycl', 'would', 'not', 'stop', 'reboot', 'custom', 'servic', 'solut', 'hard', 'reset', 'wipe', 'data', 'start', 'time', 'until', 'blu', 'get', 'act', 'togeth', 'offer', 'latest', 'android', 'version', 'stabl', 'softwar', 'stick', 'nexus'], ['love', 'blu', 'pure', 'xl', 'iphon', 'thing', 'past', 'not', 'mis'], ['phone', 'noth', 'short', 'frustrat', 'obvious', 'low', 'qualiti', 'product', 'outsid', 'photo', 'also', 'not', 'user', 'friend', 'opinion', 'abl', 'put', 'sim', 'card', 'enjoy', 'mani', 'featur', 'benefit', 'previous', 'android', 'phone', 'even', 'simpl', 'one', 'like', 'call', 'forward', 'go', 'user', 'unfriendli', 'phone', 'could', 'blame', 'user', 'realli', 'not', 'feel', 'read', 'book', 'learn', 'use', 'phone', 'basic', 'function', 'email', 'text', 'use', 'call', 'option', 'set', 'menu', 'basic', 'noth', 'use', 'worst', 'part', 'phone', 'tell', 'data', 'connect', 'avail', 'time', 'work', 'phone', 'perfect', 'connect', 'network'], ['incred', 'phone', 'batteri', 'life', 'speed', 'perfect', 'fingerprint', 'scanner', 'flawless'], ['love'], ['far', 'phone', 'amaz', 'work', 'great', 'use', 'wifi', 'great', 'featur'], ['own', 'sever', 'phone', 'includ', 'differ', 'blu', 'phone', 'blu', 'xr', 'far', 'fastest', 'touch', 'sensit', 'clearest', 'screen', 'even', 'sunlight', 'far'], ['great', 'phone', 'money', 'better', 'thought', 'actual'], ['fourth', 'blu', 'phone', 'seem', 'get', 'better', 'tell', 'phone'], ['bought', 'almost', 'month', 'review', 'first', 'nice', 'design', 'metal', 'finish', 'second', 'display', 'fantast', 'thing', 'littlworng', 'servic', 'sign', 'like', 'say', 'not', 'seem', 'speed', 'like', 'older', 'phone', 'blu', 'vivo', 'time', 'chang', 'lte', 'plain', 'definit', 'recommend', 'anyon', 'look', 'dollar', 'price', 'rang', 'phone', 'could', 'tri', 'blu', 'phone', 'energi', 'xl', 'new', 'anyon', 'question', 'pleas', 'ask', 'i', 'respond', 'soon'], ['not', 'work', 'verizon'], ['phone', 'fault', 'could', 'love'], ['excel'], ['exact', 'look', 'travelphon', 'noth', 'less', 'batteri', 'last', 'forev', 'standbi'], ['great', 'love', 'deliv', 'time'], ['need', 'simpl', 'function'], ['work', 'perfect', 'simpl', 'mobil', 'houston', 'tx', 'usait', 'british', 'english', 'brand', 'new', 'dual', 'sim', 'cell', 'one', 'not', 'beat', 'bad', 'not', 'abl', 'catch', 'tv', 'channel', 'us', 'far'], ['q', 'maravilla'], ['good', 'servic', 'recommend', 'product'], ['excel'], ['phone', 'fine', 'use', 'phone', 'bluetooth', 'note', 'menu', 'think', 'plan', 'text', 'maximum', 'messag', 'memori', 'full', 'get', 'text', 'messag', 'get', 'drop', 'case', 'useless', 'us', 'sinc', 'need', 'phone', 'text', 'capabl', 'beyond', 'messag'], ['phone', 'not', 'come', 'use', 'manual', 'one', 'exist', 'pretti', 'tech', 'savvi', 'person', 'phone', 'not', 'intuit', 'i', 'search', 'everywher', 'onlin', 'video', 'manual', 'etc', 'littl', 'thing', 'like', 'learn', 'use', 'alarm', 'clock', 'phone', 'access', 'contact', 'navig', 'main', 'menu', 'know', 'sound', 'like', 'difficult', 'basic', 'like', 'trial', 'error', 'process', 'everi', 'singl', 'function', 'phone', 'sinc', 'instruct', 'also', 'bought', 'use', 'consum', 'cellular', 'plan', 'work', 'fine', 'honest', 'phone', 'not', 'alway', 'provid', 'clear', 'recept', 'not', 'press', 'voic', 'mail', 'mean', 'call', 'consum', 'cellular', 'figur', 'number', 'phone', 'voic', 'mail'], ['nice', 'phone', 'tv', 'actual', 'work'], ['frist', 'one'], ['want', 'simpl', 'cheap', 'hihg', 'qualiti', 'phone', 'good', 'option'], ['excelent'], ['bueno'], ['perfect'], ['excelent'], ['good', 'cheap', 'easi', 'text', 'basic', 'unlock', 'phone'], ['bought', 'daughter', 'like', 'simpl', 'easi', 'use', 'far', 'reliabl'], ['excel'], ['excel'], ['thank', 'good', 'day'], ['small', 'phone', 'like', 'easili', 'stick', 'cigarett', 'pack', 'price', 'size', 'not', 'beat', 'not', 'get', 'confus', 'smart', 'phone', 'not', 'multimedia', 'play', 'radio', 'fuzzi', 'tv'], ['signal', 'access', 'cheap', 'price'], ['exel', 'good'], ['phone', 'great', 'keep', 'track', 'kid', 'greec', 'spain', 'peac', 'mind', 'brought', 'us', 'sim', 'card'], ['bought', 'cell', 'emeg', 'venezuela', 'normal', 'rob', 'faund', 'yourselv', 'cell', 'one', 'day', 'not', 'bad', 'idea', 'spare', 'cellphon', 'case', 'well', 'not', 'happen', 'yes', 'happen', 'relat', 'gave', 'cell', 'present', 'error', 'open', 'remov', 'batteri', 'back', 'piec', 'junk'], ['great', 'valu', 'money', 'i', 'pink', 'one', 'year', 'replac', 'job', 'phone', 'text'], ['great', 'phone', 'cheap', 'unlock', 'phone', 'allow', 'use', 'compani', 'sim', 'card', 'domest', 'us', 'intern', 'look', 'inexpens', 'phone', 'son', 'use', 'prove', 'us', 'enough', 'handl', 'phone', 'one', 'abl', 'ad', 'plan', 'without', 'contract', 'decid', 'upgrad', 'excit', 'option', 'without', 'good', 'size', 'size', 'blackberri', 'light', 'easi', 'carri', 'around', 'not', 'much', 'function', 'built', 'one', 'old', 'school', 'style', 'race', 'game', 'cours', 'love', 'play', 'game', 'time', 'one', 'phone', 'not', 'allow', 'much', 'text', 'storag', 'messag', 'add', 'addit', 'card', 'increas', 'son', 'love', 'phone', 'much', 'cool', 'look', 'option', 'avail', 'via', 'cell', 'compani', 'option', 'love', 'inexpens', 'enough', 'easili', 'replac', 'lose', 'damag', 'great', 'starter', 'phone'], ['confiabl'], ['good', 'cellphon'], ['not', 'happi'], ['excel'], ['phone', 'order', 'super', 'glitchi', 'flashlight', 'app', 'instal', 'phone', 'phone', 'not', 'communic', 'camera', 'notif', 'light', 'not', 'blink', 'sometim', 'turn', 'freez', 'min', 'start', 'screen', 'said', 'phone', 'mom', 'order', 'work', 'fine'], ['ok', 'far'], ['phone', 'order', 'super', 'glitchi', 'flashlight', 'app', 'instal', 'phone', 'phone', 'not', 'communic', 'camera', 'notif', 'light', 'not', 'blink', 'sometim', 'turn', 'freez', 'min', 'start', 'screen', 'said', 'phone', 'mom', 'order', 'work', 'fine'], ['realli', 'want', 'love', 'phone', 'love', 'support', 'non', 'appl', 'stuff', 'littl', 'compani', 'vers', 'big', 'guy', 'honest', 'come', 'samsung', 'galaxi', 'line', 'expect', 'meet', 'speck', 'realli', 'want', 'better', 'camera', 'blu', 'selfi', 'global', 'gsm', 'unlock', 'blue', 'look', 'echo', 'one', 'two', 'even', 'three', 'star', 'review', 'glitchi', 'non', 'respons', 'slow', 'respons', 'compani', 'froze', 'reboot', 'random', 'glad', 'got', 'return', 'window', 'amazon', 'kept', 'realli', 'sad', 'not', 'list', 'review', 'like', 'usual', 'not', 'keep', 'phone', 'wrote', 'detail', 'gone'], ['phone', 'came', 'feel', 'heavi', 'work', 'continu', 'work', 'good'], ['great'], ['good', 'good', 'team', 'recommend'], ['excelent', 'producto'], ['excel', 'smartphon', 'seller'], ['excel', 'team', 'good', 'featur', 'applic'], ['someon'], ['excel', 'product'], ['ok', 'phone', 'wife', 'hard', 'time', 'use', 'devic', 'kept', 'drop', 'call'], ['bien'], ['excelent'], ['excel', 'phone', 'great', 'seller', 'thank'], ['excelent'], ['dead', 'arriv'], ['good', 'afternoon', 'bought', 'two', 'cell', 'phone', 'one', 'blu', 'star', 'serious', 'flaw', 'not', 'turn', 'got', 'devic', 'check', 'tri', 'turn', 'not', 'work', 'i', 'would', 'like', 'make', 'use', 'warranti', 'compani', 'offer', 'order', 'determin', 'best', 'solut', 'issu', 'beforehand', 'i', 'would', 'like', 'pay', 'attent', 'case', 'get', 'back', 'soon'], ['muy', 'buen', 'telefono'], ['packag', 'came', 'time', 'phone', 'work', 'well'], ['good'], ['get', 'thru', 'mail', 'n', 'good', 'like'], ['muy', 'bueno'], ['buen', 'telelefono'], ['one', 'phone', 'keep', 'shut', 'take', 'batteri', 'turn', 'back', 'anyway', 'get', 'replac'], ['nice'], ['perfect', 'nice'], ['nice'], ['like', 'lot', 'use', 'month', 'start', 'feel', 'slow', 'android', 'os', 'guess', 'normal', 'use', 'not', 'give', 'five', 'star', 'issu', 'screen', 'sudden', 'dark', 'shadow', 'appear', 'last', 'month', 'disappear', 'sudden', 'came', 'back', 'day', 'ago', 'i', 'would', 'live', 'us', 'i', 'would', 'request', 'warranti', 'replac', 'work', 'fine', 'venezuelan', 'line', 'servic'], ['good', 'valu', 'plenti', 'ram', 'camera', 'sharp', 'wide', 'angl', 'view', 'decent', 'macro', 'abil'], ['one', 'word', 'excel', 'good', 'servic'], ['absolut', 'love', 'phone', 'hesit', 'purchas', 'galaxi', 'purchas', 'phone', 'instead', 'i', 'happi', 'afford', 'high', 'speed', 'take', 'great', 'pictur', 'got', 'favorit', 'color', 'thing', 'internet', 'browser', 'tend', 'get', 'stuck', 'time', 'not', 'refresh', 'right', 'awesom', 'phone', 'honest', 'phone', 'everyth', 'expens', 'phone', 'not', 'disappoint', 'buy', 'took', 'chanc', 'phone', 'i', 'happi', 'screen', 'automat', 'get', 'brighter', 'time', 'well', 'great', 'month', 'problem', 'better', 'expect'], ['phone', 'broke', 'within', 'month', 'own', 'screen', 'would', 'not', 'work', 'blu', 'refus', 'replac', 'repair', 'refer', 'outsid', 'tech', 'store', 'fix', 'outsid', 'tech', 'store', 'cost', 'phone', 'throw', 'wast', 'money'], ['phone', 'not', 'turn', 'stuck', 'blu', 'product'], ['excel'], ['good', 'phone', 'good', 'price'], ['great', 'phone', 'easi', 'set', 'straight', 'talk', 'fast', 'take', 'great', 'pictur', 'also', 'cost', 'price', 'deduct', 'att', 'iphon', 'not', 'disappoint'], ['love'], ['excelent', 'cell', 'came', 'data', 'i', 'puerto', 'rico', 'fulli', 'unlock', 'insert', 'sim', 'card', 'phone', 'readi', 'use'], ['love', 'phone', 'problem', 'heat', 'play', 'game'], ['i', 'month', 'great', 'fast', 'good', 'game', 'natur', 'light', 'photo', 'vibrant', 'indoor', 'flash', 'photo', 'graini'], ['batteri', 'life', 'horribl', 'drain', 'realli', 'fast', 'also', 'loud', 'not', 'adjust', 'turn', 'sound', 'start', 'shut', 'adjust', 'ringer', 'not', 'effect', 'sound', 'would', 'not', 'buy', 'phone'], ['good', 'cell', 'phone', 'nice', 'thank'], ['happi', 'phone', 'i', 'coupl', 'month', 'far', 'not', 'issu', 'work', 'well', 'fast', 'reliabl', 'hold', 'charg', 'well', 'loud', 'mani', 'neat', 'function', 'easi', 'set', 'straight', 'talk', 'servic', 'would', 'purchas'], ['excel'], ['muy', 'bueno'], ['phone', 'met', 'expect', 'also', 'deliv', 'time'], ['phone', 'defect'], ['love', 'new', 'phone'], ['i', 'phone', 'week', 'realli', 'like', 'phone', 'perfect', 'need', 'good', 'thing', 'read', 'mani', 'review', 'research', 'decid', 'would', 'get', 'interim', 'new', 'blu', 'phone', 'releas', 'march', 'decid', 'go', 'differ', 'direct', 'howev', 'one', 'good', 'enough', 'not', 'mani', 'preinstal', 'app', 'usual', 'googl', 'app'], ['good', 'qualiti', 'fast', 'ship', 'would', 'recommend', 'anyon'], ['far', 'i', 'impress', 'phone', 'also', 'impress', 'amazon', 'good', 'servic', 'phone', 'deliv', 'wait', 'week', 'provid', 'get', 'correct', 'sim', 'card', 'get', 'switch', 'blu', 'studio', 'sinc', 'i', 'use', 'like', 'much', 'pass', 'test', 'time', 'updat', 'review', 'month', 'see', 'thing', 'go'], ['blu', 'phone', 'would', 'expect', 'phone', 'four', 'month', 'phone', 'good', 'imag', 'qualiti', 'accommod', 'loud', 'speaker', 'nice', 'video', 'play', 'back', 'listen', 'music', 'take', 'hd', 'qualiti', 'photo', 'similar', 'popular', 'brand', 'phone', 'good', 'effici', 'phone', 'afford', 'price', 'love', 'far'], ['phone', 'guarante', 'work', 'band', 'awar', 'not', 'work', 'band', 'reciv', 'band'], ['batteri', 'life', 'suck', 'phone', 'dead', 'within', 'hour', 'hard', 'use', 'wish', 'would', 'gotten', 'daughter', 'anoth', 'blue', 'phone', 'vivo', 'air', 'love', 'studio', 'horribl'], ['love', 'phone', 'not', 'problem', 'sinc', 'i', 'order', 'thin', 'amd', 'sleek', 'around', 'good', 'phone', 'blu', 'life', 'one', 'glad', 'daughter', 'bust', 'teen', 'one', 'replac', 'one', 'happier', 'phone', 'would', 'recommend', 'anyon', 'like', 'great', 'qualiti', 'phone', 'without', 'crazi', 'qualiti', 'price'], ['good'], ['buy', 'two', 'phone', 'day', 'one', 'horn', 'damag', 'handset', 'could', 'make', 'refund', 'amazon', 'thank', 'month', 'damag', 'horn', 'think', 'phone', 'serious', 'problem', 'atrial', 'horn'], ['like'], ['order', 'phone', 'end', 'next', 'phone', 'chup'], ['best', 'phone', 'easi', 'use', 'camera', 'took', 'amaz', 'photo', 'app', 'compat', 'terrif', 'never', 'problem'], ['excelent', 'gracia'], ['fine'], ['perfect'], [], ['phone', 'work', 'fair', 'first', 'slow', 'would', 'not', 'work', 'netflix', 'start', 'lock', 'lock', 'time', 'old', 'moto', 'razor', 'cheap', 'dollar', 'phone', 'one', 'send', 'back', 'get', 'dollar', 'not', 'even', 'year', 'old'], ['good', 'good', 'excel'], ['excel'], ['phone', 'constant', 'disconnect', 'wifi', 'show', 'activ', 'connect', 'data', 'transmit', 'wifi', 'disabl', 'reenabl', 'resum', 'connect', 'big', 'deal', 'fix', 'workaround', 'return', 'phone', 'otherwis', 'expect', 'batteri', 'life', 'fair', 'updat', 'os', 'good', 'respons', 'time', 'decent', 'pic', 'etc'], ['best', 'phone', 'easi', 'use', 'camera', 'took', 'amaz', 'photo', 'app', 'compat', 'terrif', 'never', 'problem'], ['muy', 'bien'], ['wish', 'phone', 'work', 'us', 'cellular'], ['work', 'way', 'better', 'last', 'phone', 'lg', 'htc', 'way', 'cheaper', 'price'], ['great', 'relat', 'cost', 'vs', 'benefit'], ['fine'], ['one', 'problem', 'netflix', 'wifi', 'stream', 'keep', 'get', 'error', 'code', 'minut', 'matter', 'reset', 'phone', 'uninstal', 'netflix', 'app', 'use', 'data', 'plan', 'stream', 'netflix', 'fine', 'matter', 'long', 'watch', 'besid', 'phone', 'great', 'price', 'speaker', 'nice', 'loud'], ['love', 'phone', 'third', 'one', 'own', 'work', 'advic', 'get', 'case', 'soon', 'possibl', 'screen', 'glass', 'break', 'easili'], ['phone', 'great', 'lot', 'difficulti', 'figur', 'sinc', 'provid', 'book', 'tini', 'not', 'lot', 'inform'], ['good', 'phone', 'fast', 'color', 'price', 'perfect'], ['nice', 'phone'], ['like', 'phone', 'thing', 'phone', 'batteri', 'life', 'not', 'last', 'constant', 'keep', 'plug'], ['excel'], ['got', 'phone', 'daughter', 'love', 'nice', 'qualiti', 'camera', 'color', 'sound', 'great', 'option', 'great', 'price'], ['recommend', 'good', 'afternoon', 'respons', 'kind'], ['not', 'work', 'charg', 'went', 'turn', 'noth', 'i', 'return'], ['awesom', 'product', 'easi', 'set', 'straight', 'talk', 'instruct', 'nice', 'larg', 'screen', 'larger', 'text', 'option'], ['phone', 'defiant', 'meet', 'exceed', 'expect', 'standard', 'list', 'descript', 'love', 'color', 'vibrant', 'qualiti', 'everyth', 'outstand', 'use', 'straighttalk', 'dual', 'sim', 'option', 'unlock', 'carrier', 'top'], ['excelent'], ['excel'], ['need', 'refund', 'money', 'paid', 'almost', 'amount', 'clear', 'good', 'camera', 'take', 'absolut', 'pictur', 'make', 'angri'], ['beauti', 'phone', 'wait', 'sim', 'card', 'transfer', 'network', 'old', 'phone', 'blu', 'even', 'order', 'wallet', 'case', 'like', 'much', 'good', 'buy'], ['love', 'phone', 'reason', 'price', 'everyth', 'ned', 'issu', 'would', 'recommend', 'high'], ['excel', 'phone', 'quick', 'good', 'size', 'screen', 'resolut', 'good', 'goe', 'toe', 'toe', 'lg', 'cost', 'time', 'less', 'good', 'choic', 'wife', 'love', 'lg', 'die', 'knowth', 'phone', 'want', 'eye', 'close'], ['excel'], ['nice', 'phone', 'thing', 'person', 'dis', 'not', 'like', 'thw', 'internet', 'speed', 'could', 'obtain', 'regular', 'speed'], ['good'], ['phone', 'sim', 'card', 'not', 'purchas', 'one'], ['arriv', 'earli', 'i', 'not', 'put', 'sinc', 'came', 'everyth', 'pictur', 'review', 'said', 'batteri', 'suck', 'i', 'social', 'media', 'maniac', 'held', 'entir', 'day', 'without', 'need', 'charg', 'blu', 'phone', 'get', 'bad', 'rep', 'honest', 'one', 'best', 'phone', 'i', 'ten', 'phone', 'histori', 'camera', 'qualiti', 'beauti', 'screen', 'resolut', 'beauti', 'i', 'realli', 'happi', 'impuls', 'buy', 'littl', 'heavi', 'i', 'never', 'forget', 'put', 'back', 'pocket', 'love', 'love', 'love'], ['good', 'phone', 'good', 'price'], ['fine'], ['good'], ['phone', 'perfect', 'ship', 'process', 'awesom', 'love', 'order', 'amzon'], ['like', 'thank'], ['good', 'telephon'], ['gift', 'friend', 'love', 'blu', 'phone'], ['good', 'phone', 'last', 'year', 'complaint'], ['overal', 'great', 'phone', 'nice', 'size', 'work', 'well', 'thing', 'charg', 'phone', 'say', 'charg', 'soon', 'take', 'charger', 'batteri', 'percentag', 'start', 'drain', 'think', 'defect', 'batteri', 'last', 'day', 'talk', 'phone', 'sometim', 'sound', 'like', 'volum', 'low', 'also', 'littl', 'troubl', 'activ', 'phone', 'call', 'one', 'eight', 'hundr', 'number'], ['phone', 'amaz', 'price', 'get', 'ram', 'storag', 'fast', 'smooth', 'keep', 'pretti', 'well', 'game', 'truli', 'beauti', 'hd', 'screen', 'run', 'near', 'stock', 'android', 'kit', 'kat', 'facebook', 'blu', 'whatev', 'app', 'stock', 'get', 'app', 'play', 'window', 'media', 'player', 'file', 'not', 'lte', 'run', 'network', 'long', 'put', 'sim', 'slot', 'use', 'gophon', 'two', 'full', 'size', 'sim', 'slot', 'right', 'apn', 'set', 'start', 'i', 'use', 'samsung', 'rugbi', 'pro', 'everyday', 'phone', 'blu', 'seem', 'run', 'browser', 'app', 'faster', 'micro', 'usb', 'port', 'top', 'littl', 'weird', 'actual', 'allow', 'put', 'phone', 'car', 'cup', 'holder', 'charg', 'without', 'turn', 'upsid', 'not', 'big', 'issu', 'kind', 'lock', 'button', 'right', 'side', 'volum', 'rocker', 'left', 'speaker', 'get', 'pretti', 'loud', 'play', 'media', 'earpiec', 'loud', 'enough', 'phone', 'call', 'bluetooth', 'connect', 'pretti', 'good', 'blu', 'even', 'send', 'screen', 'protector', 'soft', 'case', 'earbud', 'usb', 'charg', 'cabl', 'ac', 'wall', 'realli', 'enjoy', 'phone', 'notic', 'quick', 'batteri', 'drop', 'phone', 'sit', 'around', 'idl', 'batteri', 'hold', 'pretti', 'well', 'check', 'email', 'web', 'brows', 'cost', 'signific', 'batteri', 'life', 'watch', 'video', 'drain', 'faster', 'start', 'day', 'pm', 'listen', 'spotifi', 'half', 'hour', 'morn', 'listen', 'music', 'player', 'mintu', 'bluetooth', 'headphon', 'screen', 'listen', 'music', 'cours', 'not', 'make', 'long', 'phone', 'call', 'littl', 'know', 'i', 'not', 'first', 'person', 'complain', 'batteri', 'shame', 'everyth', 'els', 'phone', 'great', 'everyth', 'would', 'expect', 'budget', 'phone', 'well', 'make', 'sure', 'charger', 'handi', 'phone', 'better', 'batteri', 'would', 'hard', 'go', 'tri', 'newer', 'model', 'studio', 'c', 'android', 'lollipop', 'see', 'better', 'updat', 'tri', 'studio', 'c', 'lollipop', 'better', 'batteri', 'life', 'not', 'perform', 'near', 'well', 'c', 'hd', 'new', 'model', 'also', 'slight', 'smaller', 'screen', 'return', 'phone', 'wish', 'would', 'kept', 'c', 'hd', 'i', 'serious', 'consid', 'order', 'ask', 'lot', 'phone', 'perform', 'well', 'good', 'batteri', 'life', 'updat', 'order', 'phone', 'happi', 'i', 'use', 'coupl', 'week', 'batteri', 'issu', 'not', 'critic', 'thought', 'fulli', 'charg', 'morn', 'last', 'day', 'moder', 'use', 'i', 'gotten', 'two', 'day', 'coupl', 'time', 'would', 'recommend', 'anyon', 'look', 'solid', 'budget', 'phone', 'great', 'screen'], ['good', 'phone', 'good', 'price', 'come', 'time'], ['far', 'good', 'phone', 'daughter', 'broke', 'phone', 'want', 'buy', 'expens', 'phone', 'yet', 'brought', 'one', 'love', 'say', 'camera', 'not', 'good', 'buy', 'overal', 'good', 'teenag'], ['son', 'love', 'thank'], ['gift', 'friend', 'love', 'blu', 'phone'], ['not', 'ask', 'price'], ['take', 'long', 'time', 'get', 'start', 'compar', 'phone', 'start', 'great', 'troubl', 'get', 'email', 'download', 'app'], ['far', 'i', 'impress', 'phone', 'also', 'impress', 'amazon', 'good', 'servic', 'phone', 'deliv', 'wait', 'week', 'provid', 'get', 'correct', 'sim', 'card', 'get', 'switch', 'blu', 'studio', 'sinc', 'i', 'use', 'like', 'much', 'pass', 'test', 'time', 'updat', 'review', 'month', 'see', 'thing', 'go'], ['like', 'much', 'left', 'cab', 'mexico', 'order', 'great', 'unlock', 'gms', 'phone', 'plenti', 'featur', 'high', 'recommend'], ['expect', 'met', 'charger'], ['good', 'cell', 'phone', 'nice', 'thank'], ['husband', 'got', 'phone', 'far', 'good', 'not', 'problem', 'issu', 'peopl', 'brought', 'not', 'even', 'happen', 'us', 'use', 'straight', 'talk', 'easiest', 'way', 'found', 'switch', 'bring', 'phone', 'activ', 'kit', 'took', 'less', 'minut', 'issu', 'definit', 'recommend', 'phone'], ['i', 'come', 'find', 'phone', 'better', 'galaxi', 'love', 'sim', 'card', 'mani', 'amen', 'not', 'tell', 'lol', 'love', 'phone'], ['daughter', 'love'], ['phone', 'absolut', 'amaz', 'especi', 'price', 'fast', 'big', 'screen', 'bug', 'stylish', 'love'], ['might', 'nice', 'phone', 'phone', 'hell', 'purchas', 'phone', 'intent', 'use', 'wireless', 'network', 'phone', 'never', 'work', 'advert', 'send', 'either', 'text', 'messag', 'sms', 'pictur', 'messag', 'mms', 'messag', 'least', 'call', 'differ', 'custom', 'servic', 'repres', 'one', 'technic', 'specialist', 'wireless', 'tri', 'not', 'seem', 'get', 'right', 'combin', 'set', 'make', 'everyth', 'work', 'network', 'howev', 'give', 'credit', 'use', 'messag', 'know', 'green', 'smiley', 'face', 'app', 'send', 'text', 'messag', 'mms', 'messag', 'mms', 'messag', 'appear', 'wife', 'samsung', 'android', 'phone', 'video', 'file', 'not', 'pictur', 'use', 'messeng', 'googl', 'app', 'send', 'text', 'messag', 'not', 'send', 'mms', 'pictur', 'not', 'even', 'tri', 'video', 'chat', 'use', 'hangout', 'yet', 'grandkid', 'anoth', 'big', 'want', 'list', 'function', 'point', 'seem', 'option', 'tri', 'anoth', 'cell', 'phone', 'provid', 'sim', 'card', 'see', 'work', 'better', 'stop', 'fight', 'beast', 'return', 'thing', 'not', 'difficult', 'make', 'cell', 'phone', 'work', 'abl', 'instal', 'sim', 'card', 'phone', 'work', 'case', 'two', 'week', 'numer', 'phone', 'call', 'email', 'blu', 'not', 'respond', 'day', 'way', 'peopl', 'whose', 'first', 'languag', 'certain', 'not', 'english', 'cours', 'complic', 'difficulti', 'make', 'phone', 'function', 'sincer', 'hope', 'one', 'els', 'type', 'problem', 'sinc', 'blu', 'phone', 'realli', 'nice', 'decis', 'face', 'two', 'fold', 'tri', 'anoth', 'cell', 'provid', 'sim', 'forget', 'paid', 'return', 'devic', 'amazon', 'decis', 'decis', 'anyon', 'suggest', 'would', 'certain', 'appreci', 'garvenlak', 'havasu', 'citi', 'az'], ['awesom', 'awesom', 'awesom', 'phone', 'far', 'exceed', 'expect', 'batteri', 'life', 'not', 'greatest', 'phone', 'day', 'take', 'great', 'pictur', 'video', 'sound', 'qualiti', 'good', 'talk', 'phone', 'use', 'issu', 'work', 'great', 'price', 'phone', 'not', 'beat', 'paid', 'phone', 'feel', 'like', 'i', 'carri', 'around', 'phone', 'instal', 'micro', 'sd', 'card', 'plenti', 'extra', 'storag', 'although', 'put', 'card', 'think', 'not', 'go', 'wrong', 'price', 'star'], ['batteri', 'not', 'good', 'use', 'hour', 'low', 'plug', 'time', 'home'], ['awesom', 'phone', 'faster', 'galaxi'], ['fantast', 'awesom', 'wish', 'hard', 'case', 'clip', 'model'], ['badd', 'not', 'stop', 'vibrat', 'matter'], ['excelent'], ['got', 'sale', 'amazon', 'usd', 'work', 'perfect', 'issu', 'sometim', 'hard', 'connect', 'charg', 'cabl', 'not', 'insert', 'correct', 'not', 'charg', 'phone'], ['purchas', 'phone', 'mother', 'birthday', 'may', 'surpris', 'phone', 'good', 'within', 'month', 'not', 'sure', 'problem', 'phone', 'shut', 'time', 'power', 'take', 'hour', 'function', 'show', 'blu', 'load', 'screen', 'time', 'noth', 'show', 'screen', 'batteri', 'goe', 'fast', 'attempt', 'charg', 'shut', 'phone', 'pleas', 'let', 'know', 'known', 'way', 'fix', 'issu', 'not', 'resourc', 'replac', 'phone', 'feel', 'bad', 'mom', 'away', 'phone', 'crappi', 'one'], ['realli', 'upset', 'batteri', 'phone', 'terribl', 'also', 'charg', 'port', 'tad', 'bit', 'bigger', 'norm', 'sinc', 'got', 'origin', 'charger', 'ate', 'dog', 'make', 'anoth', 'charger', 'work', 'would', 'love', 'receiv', 'new', 'batteri', 'replac', 'phone', 'turn', 'one', 'howev', 'look', 'feel', 'phone', 'great', 'appreci', 'vibrant', 'pictur', 'camera', 'take', 'need', 'replac', 'think', 'order', 'anoth', 'one', 'husband', 'mayb', 'coupl', 'kid', 'issu', 'correct'], ['phone', 'work', 'beauti', 'well', 'batteri', 'life', 'suck'], ['batteri', 'cell', 'damag', 'not', 'charg', 'not', 'return', 'venezuela', 'realli', 'not', 'recommend', 'peopl', 'live', 'countri', 'outsid', 'unit', 'state', 'buy', 'cell'], ['batteri', 'life', 'horribl', 'drain', 'realli', 'fast', 'also', 'loud', 'not', 'adjust', 'turn', 'sound', 'start', 'shut', 'adjust', 'ringer', 'not', 'effect', 'sound', 'would', 'not', 'buy', 'phone'], ['bought', 'wife', 'valentin', 'day', 'week', 'later', 'drop', 'toilet', 'quick', 'got', 'batteri', 'let', 'set', 'dri', 'day', 'put', 'batteri', 'back', 'fire', 'issu', 'still', 'work', 'like', 'new'], ['good', 'phone', 'good', 'recept', 'home', 'fring', 'area', 'screen', 'love', 'right', 'size', 'good', 'buy'], ['somewhat', 'familiar', 'android', 'devic', 'hope', 'would', 'work', 'need', 'not', 'heavi', 'user', 'want', 'abl', 'access', 'internet', 'need', 'charg', 'batteri', 'phone', 'turn', 'set', 'languag', 'english', 'told', 'connect', 'wifi', 'sinc', 'not', 'sim', 'card', 'instal', 'push', 'everyth', 'could', 'access', 'home', 'network', 'avail', 'power', 'phone', 'work', 'anoth', 'time', 'next', 'time', 'power', 'phone', 'got', 'screen', 'tell', 'instal', 'sim', 'card', 'emerg', 'call', 'could', 'made', 'tri', 'get', 'screen', 'set', 'phone', 'avail', 'noth', 'would', 'get', 'past', 'yellow', 'screen', 'ask', 'sim', 'card', 'i', 'return', 'phone', 'window', 'os', 'easier', 'android', 'os', 'even', 'tho', 'not', 'mani', 'app', 'etc', 'not', 'know', 'phone', 'defect', 'move'], ['purchas', 'phone', 'look', 'smartphon', 'compat', 'straight', 'talk', 'servic', 'skeptic', 'negat', 'review', 'concern', 'phone', 'compat', 'straight', 'talk', 'difficulti', 'set', 'purchas', 'new', 'sim', 'card', 'thru', 'straight', 'talk', 'bring', 'phone', 'program', 'transfer', 'old', 'servic', 'sim', 'card', 'easili', 'everyth', 'function', 'within', 'hour', 'coupl', 'day', 'could', 'not', 'send', 'receiv', 'pictur', 'mms', 'text', 'new', 'system', 'updat', 'work', 'i', 'super', 'happi', 'follow', 'instruct', 'phone', 'work', 'straight', 'talk', 'i', 'own', 'month', 'love', 'size', 'function', 'camera', 'qualiti', 'color', 'gorgeous', 'best', 'phone', 'i', 'ever', 'own', 'less', 'happi', 'purchas'], ['lovesaid'], ['phone', 'batteri', 'issu', 'month', 'phone', 'not', 'charg', 'phone', 'not', 'turn', 'phone', 'sent', 'manufactur', 'novemb', 'not', 'fix', 'yet', 'today', 'jan', 'not', 'satisfi', 'poor', 'qualiti', 'phone', 'poor', 'custom', 'servic', 'manufactur', 'not', 'suggest', 'buy', 'blu', 'product'], ['good'], ['good', 'telephon'], ['happi', 'excel', 'store', 'deliveri', 'product'], ['love', 'new', 'phone'], ['love', 'phone', 'samsung', 'galaxi', 'broke', 'without', 'warn', 'sound', 'decid', 'tri', 'phone', 'read', 'review', 'like', 'samsung', 'without', 'high', 'price', 'batteri', 'life', 'great', 'everyth', 'phone', 'would', 'buy', 'anoth', 'one', 'heartbeat', 'save', 'load', 'money', 'phone'], ['far', 'i', 'impress', 'phone', 'also', 'impress', 'amazon', 'good', 'servic', 'phone', 'deliv', 'wait', 'week', 'provid', 'get', 'correct', 'sim', 'card', 'get', 'switch', 'blu', 'studio', 'sinc', 'i', 'use', 'like', 'much', 'pass', 'test', 'time', 'updat', 'review', 'month', 'see', 'thing', 'go'], ['excel'], ['excelent', 'producto'], ['excel', 'good'], ['problem', 'get', 'realli', 'hot', 'fast', 'use', 'app', 'longer', 'wonder', 'work', 'good', 'love', 'pink', 'bright'], ['fantast'], ['first', 'smartphon', 'realli', 'enjoy'], ['suck'], ['short', 'time', 'use', 'say', 'happi', 'phone', 'fast', 'good', 'memori', 'screen', 'look', 'great', 'good', 'imag', 'short', 'good', 'devic', 'although', 'quick', 'adroid', 'i', 'get', 'use', 'realli', 'recommend', 'work', 'well', 'venezuela', 'movilnet', 'movistar', 'also', 'use', 'digitel', 'hope', 'report', 'abl', 'help'], ['excelent'], ['better', 'fire', 'phone'], ['love', 'wish', 'came', 'emoji', 'not', 'download', 'keyboard', 'great', 'product', 'would', 'better', 'batteri', 'could', 'last', 'longer'], ['excelent', 'cell', 'came', 'data', 'i', 'puerto', 'rico', 'fulli', 'unlock', 'insert', 'sim', 'card', 'phone', 'readi', 'use'], ['phone', 'work', 'good', 'hook', 'straight', 'talk', 'sim', 'card', 'came', 'bring', 'phone', 'kit', 'straight', 'talk'], ['hard', 'phone', 'vehicl', 'frequent', 'day', 'deliv', 'mail', 'phone', 'drop', 'time', 'hold', 'fine', 'happi', 'capabl', 'app', 'call', 'music', 'except', 'wish', 'keyboard', 'layout', 'not', 'tight', 'spread', 'letter', 'close', 'togeth', 'constant', 'hit', 'multipl', 'key', 'hit', 'v', 'b', 'tri', 'space', 'pay', 'close', 'attent', 'type', 'love', 'phone', 'go', 'buy', 'two', 'gift'], ['adequ', 'not', 'support', 'well'], ['work', 'way', 'better', 'last', 'phone', 'lg', 'htc', 'way', 'cheaper', 'price'], ['son', 'love'], ['good', 'product', 'would', 'give', 'star', 'ram', 'memori', 'gig', 'make', 'real', 'slow'], ['phone', 'great', 'pictur', 'qualiti', 'good', 'work', 'perfect'], ['solid', 'good', 'look', 'phone', 'servic', 'work', 'upgrad', 'stock', 'phone', 'receiv', 'mail', 'straight', 'talk', 'move', 'chip', 'work', 'instant', 'phone', 'feel', 'better', 'iphon', 'blu', 'phone', 'well'], ['day', 'keep', 'work', 'like', 'great', 'phone', 'price', 'kept', 'buy', 'name', 'phone', 'last', 'one', 'last', 'year', 'i', 'hope', 'one', 'least', 'last', 'long', 'see', 'lot', 'ppl', 'complain', 'batteri', 'find', 'pretti', 'decent', 'app', 'work', 'fast', 'turn', 'phone', 'bright', 'not', 'seem', 'figur', 'turn', 'vibrat', 'type', 'big', 'deal', 'ppl', 'straight', 'talk', 'apn', 'set', 'not', 'work', 'least', 'apn', 'set', 'get', 'work', 'great', 'messag', 'need', 'set'], ['practic', 'applic', 'easi', 'use', 'feel', 'good', 'hand', 'easi', 'move', 'app', 'phone', 'price'], ['good', 'gyro', 'cardboard', 'etc', 'camera', 'work', 'unit', 'backlight', 'kind', 'light', 'way', 'visibl', 'ruin', 'display', 'one', 'area', 'lower', 'left', 'screen', 'portrait', 'mode', 'inch', 'call', 'blu', 'want', 'take', 'pictur', 'act', 'like', 'fault', 'issu', 'volum', 'control', 'pretti', 'much', 'loud', 'louder', 'not', 'set', 'low', 'volum', 'ui', 'show', 'smallest', 'set', 'discret', 'posit', 'loud', 'instead', 'like', 'design', 'not', 'know', 'logarithm', 'not', 'lot', 'room', 'program', 'hold', 'camera', 'qualiti', 'excel', 'front', 'back', 'screen', 'still', 'clear', 'scratch', 'use', 'six', 'month', 'qualiti', 'glass', 'i', 'not', 'even', 'use', 'screen', 'protector', 'beauti', 'size', 'good', 'back', 'cover', 'good', 'orang', 'color', 'well', 'uniqu', 'not', 'easi', 'lose', 'work', 'extern', 'memori', 'slot', 'use', 'requir', 'bit', 'hassl', 'move', 'much', 'use', 'sim', 'batteri', 'life', 'good', 'compar', 'earlier', 'lost', 'highway', 'realli', 'good', 'valu', 'think', 'i', 'would', 'like', 'blu', 'bit', 'proactiv', 'qualiti', 'control', 'issu', 'mention', 'audio', 'i', 'yet', 'find', 'phone', 'not', 'cost', 'fortun', 'one', 'money', 'i', 'give', 'round', 'realli', 'okay', 'plus'], ['good', 'phone', 'last', 'year', 'complaint'], ['phone', 'great', 'price', 'actual', 'spec', 'claim', 'problem', 'see', 'phone', 'angl', 'not', 'worst', 'not', 'best', 'bother', 'tad', 'bit', 'i', 'sure', 'not', 'phone', 'also', 'confirm', 'work', 'said', 'great', 'buy'], ['love'], ['look', 'upgrad', 'phone', 'iphon', 'want', 'go', 'back', 'android', 'phone', 'use', 'prepaid', 'contract', 'servic', 'straight', 'talk', 'want', 'phone', 'go', 'heavi', 'pocket', 'search', 'amazon', 'phone', 'blu', 'studio', 'phone', 'came', 'never', 'heard', 'blu', 'studio', 'curious', 'read', 'sever', 'review', 'custom', 'pleas', 'major', 'review', 'read', 'favor', 'decid', 'buy', 'blue', 'studio', 'hd', 'pink', 'two', 'week', 'love', 'set', 'phone', 'easi', 'pop', 'slim', 'card', 'iphon', 'run', 'love', 'larg', 'screen', 'great', 'volum', 'excel', 'pictur', 'take', 'speed', 'complaint', 'year', 'old', 'daughter', 'also', 'market', 'new', 'phone', 'recommend', 'blu', 'studio', 'hd', 'love', 'said', 'could', 'not', 'happier', 'love', 'afford', 'cost', 'glad', 'not', 'spend', 'lot', 'money', 'one', 'top', 'cellphon', 'market', 'definit', 'buy', 'anoth', 'blu', 'studio', 'futur', 'i', 'readi', 'four', 'anoth', 'upgrad', 'would', 'like', 'tri', 'blu', 'window', 'phone', 'look', 'like', 'good', 'phone'], ['good', 'thank'], ['phone', 'nice', 'featur', 'not', 'storag', 'space', 'claim', 'gb', 'total', 'phone', 'storag', 'space', 'show', 'phone', 'eaten', 'primarili', 'item', 'state', 'phone', 'may', 'issu', 'delet', 'item', 'unabl', 'move', 'sd', 'card', 'unfortun', 'uninstal', 'updat', 'free', 'space', 'keep', 'phone', 'work'], ['love', 'phone', 'far', 'problem'], ['read', 'lot', 'review', 'phone', 'purchas', 'lot', 'good', 'review', 'bad', 'review', 'good', 'review', 'bad', 'bought', 'mind', 'blow', 'phone', 'chain', 'way', 'better', 'galaxi', 'phone', 'good', 'pictur', 'qualiti', 'sound', 'qualiti', 'camera', 'qualiti', 'featur', 'qualiti', 'want', 'buy', 'phone', 'not', 'think', 'long', 'buy', 'glad', 'not', 'even', 'cost', 'much', 'better', 'phone', 'say', 'lot', 'name', 'brand', 'phone', 'batteri', 'life', 'excel'], ['work', 'well'], ['realli', 'like', 'phone', 'second', 'unfortun', 'drop', 'first', 'one', 'not', 'surviv', 'fall'], ['good', 'phone', 'good', 'price'], ['not', 'say', 'alot', 'phone', 'bought', 'think', 'phone', 'broken', 'end', 'not', 'say', 'short', 'time', 'send', 'back', 'seem', 'like', 'good', 'phone', 'price', 'fact', 'contract', 'unlock', 'phone', 'use', 'mani', 'network', 'dual', 'sim', 'phone', 'like', 'not', 'know', 'mean', 'mean', 'either', 'one', 'sim', 'person', 'one', 'busi', 'one', 'us', 'one', 'intern', 'whatev', 'choos', 'way', 'better', 'carri', 'around', 'two', 'differ', 'phone', 'mind', 'not', 'use', 'featur', 'wish', 'swype', 'not', 'also', 'color', 'choic', 'amaz', 'true', 'color', 'come', 'match', 'semi', 'transpar', 'silicon', 'case', 'match', 'color', 'aswel', 'headphon', 'charger', 'screen', 'protector', 'made', 'cheaper', 'plastic', 'light', 'weight', 'hand', 'also', 'problem', 'came', 'return', 'refund', 'right', 'away', 'sent', 'phone', 'back', 'issu'], ['use', 'phone', 'week', 'great', 'joke', 'phone', 'work', 'perfect', 'fast', 'complaint', 'except', 'not', 'buy', 'lot', 'cover', 'cover', 'includ', 'work', 'fine', 'not', 'mani', 'choic', 'plan', 'buy', 'anoth', 'phone', 'son'], ['excel', 'phone'], ['phone', 'gift', 'sister', 'love', 'never', 'run', 'slow', 'updat', 'simpl', 'great', 'screen', 'deliv', 'expect', 'smartphon', 'recommend', 'start', 'ad', 'app', 'clog', 'phone', 'processor', 'brand', 'make', 'differ'], ['good', 'price', 'qualiti'], ['love', 'phone', 'life', 'noth', 'bad', 'say', 'product'], ['great', 'phone', 'bought', 'anoth', 'wife'], ['perfect', 'need'], ['far', 'good', 'thing', 'batteri', 'life', 'not', 'strong', 'keep', 'charg'], ['good', 'afternoon', 'receiv', 'packag', 'smooth', 'everyth', 'came', 'good', 'fast', 'excel', 'phone', 'work', 'wonder', 'pant', 'camera', 'fabul', 'everyth', 'fine', 'mani', 'mani', 'thank', 'amazon'], ['love'], ['great', 'camera', 'resolut', 'work'], ['receiv', 'not', 'even', 'taken', 'plastic', 'first', 'thought', 'dimens', 'state', 'amazon', 'page', 'list', 'long', 'perhap', 'accident', 'left', 'middl', 'number', 'actual', 'around', 'know', 'would', 'made', 'big', 'differ', 'chose', 'think', 'smaller', 'other', 'see', 'least', 'one', 'review', 'post', 'correct', 'dimens', 'metric', 'understand', 'still', 'tend', 'think', 'inch', 'not', 'made', 'unpack', 'see', 'like', 'go', 'back', 'blu', 'select', 'see', 'anoth', 'phone', 'larger', 'size', 'would', 'prefer', 'carri', 'far', 'still', 'first', 'day', 'complaint', 'hoop', 'jump', 'set', 'put', 'payg', 'sim', 'uk', 'one', 'took', 'minut', 'two', 'pop', 'messag', 'look', 'good', 'work', 'well', 'meant', 'buddi', 'call', 'test', 'said', 'sound', 'good', 'not', 'realli', 'put', 'web', 'pace', 'yet', 'better', 'get', 'old', 'phone', 'htc', 'desir', 'let', 'know', 'learn', 'two', 'week', 'later', 'still', 'problem', 'mani', 'mention', 'may', 'not', 'best', 'batteri', 'life', 'plug', 'laptop', 'i', 'i', 'yet', 'run', 'point', 'phone', 'not', 'true', 'offer', 'work', 'light', 'year', 'faster', 'old', 'price', 'especi', 'consid', 'name', 'brand', 'one', 'go', 'not', 'imagin', 'expect', 'i', 'chang', 'rate', 'star'], ['daughter', 'love', 'nice', 'size', 'deliv', 'quicker', 'expect', 'definit', 'get', 'anoth', 'one', 'compani', 'ever', 'need', 'anoth', 'phone'], ['love', 'wish', 'came', 'emoji', 'not', 'download', 'keyboard', 'great', 'product', 'would', 'better', 'batteri', 'could', 'last', 'longer'], ['not', 'work', 'well'], ['perfect', 'phone', 'teenag', 'enter', 'high', 'fast', 'easi', 'work', 'come', 'everyth', 'need'], ['great', 'camera', 'resolut', 'work'], ['good', 'thank'], ['great', 'phone', 'not', 'support', 'said', 'g', 'box', 'lie'], ['love', 'phone', 'life', 'noth', 'bad', 'say', 'product'], ['phone', 'perfect', 'ship', 'process', 'awesom', 'love', 'order', 'amzon'], ['mom', 'love', 'brand', 'new', 'work', 'great', 'could', 'not', 'ask', 'better'], ['good'], ['thank', 'goob', 'item'], ['love'], ['excelent'], ['phone', 'suck', 'wnt', 'let', 'use', 'wifi', 'wnt', 'let', 'send', 'pic', 'messag', 'done', 'everyth', 'told', 'still', 'not', 'work', 'would', 'like', 'anoth', 'phone', 'someth'], ['five', 'star'], ['love', 'phone', 'would', 'give', 'star', 'batteri', 'run', 'littl', 'soon', 'yes', 'would', 'buy'], ['love', 'new', 'phone'], ['excelent', 'producto'], ['problem', 'get', 'realli', 'hot', 'fast', 'use', 'app', 'longer', 'wonder', 'work', 'good', 'love', 'pink', 'bright'], ['excel'], ['phone', 'beyond', 'amaz', 'found', 'note', 'thing', 'phone', 'phone', 'watch', 'avu', 'tube', 'video', 'not', 'samsung', 'phone', 'phone', 'give', 'dad', 'instruct', 'phone', 'utub', 'someth', 'super', 'help', 'phone', 'memori', 'long', 'gb', 'higher', 'sd', 'card', 'app', 'ect', 'plenti', 'room', 'thousand', 'song', 'librari'], ['love', 'far', 'iphon', 'like', 'better', 'far', 'price', 'awesom'], ['excelent', 'teléfono'], ['easi', 'activ', 'easi', 'use', 'durabl', 'good', 'feel', 'got', 'someon', 'els', 'love', 'far', 'problem'], ['phone', 'amaz', 'run', 'smooth', 'take', 'stun', 'pictur', 'camera', 'batteri', 'life', 'not', 'great', 'also', 'use', 'headphon', 'come', 'even', 'lowest', 'set', 'destroy', 'eardrum', 'basic', 'design', 'phone', 'nice', 'love', 'screen', 'clariti', 'consid', 'buy', 'phone', 'invest', 'case', 'well', 'screen', 'not', 'fragil', 'sinc', 'big', 'better', 'safe', 'sorri', 'would', 'definit', 'recommend', 'phone', 'person', 'age'], ['great'], ['pretti', 'good', 'phone', 'price'], ['definit', 'good', 'screen', 'size', 'like', 'live', 'wallpap', 'includ', 'phone', 'would', 'recommend'], ['love'], ['great', 'phone', 'customiz'], ['horribl', 'batteri', 'alway', 'lag', 'not', 'connect', 'wifi', 'connect', 'not', 'buy', 'wifi', 'capabl', 'not', 'use'], ['look', 'upgrad', 'phone', 'iphon', 'want', 'go', 'back', 'android', 'phone', 'use', 'prepaid', 'contract', 'servic', 'straight', 'talk', 'want', 'phone', 'go', 'heavi', 'pocket', 'search', 'amazon', 'phone', 'blu', 'studio', 'phone', 'came', 'never', 'heard', 'blu', 'studio', 'curious', 'read', 'sever', 'review', 'custom', 'pleas', 'major', 'review', 'read', 'favor', 'decid', 'buy', 'blue', 'studio', 'hd', 'pink', 'two', 'week', 'love', 'set', 'phone', 'easi', 'pop', 'slim', 'card', 'iphon', 'run', 'love', 'larg', 'screen', 'great', 'volum', 'excel', 'pictur', 'take', 'speed', 'complaint', 'year', 'old', 'daughter', 'also', 'market', 'new', 'phone', 'recommend', 'blu', 'studio', 'hd', 'love', 'said', 'could', 'not', 'happier', 'love', 'afford', 'cost', 'glad', 'not', 'spend', 'lot', 'money', 'one', 'top', 'cellphon', 'market', 'definit', 'buy', 'anoth', 'blu', 'studio', 'futur', 'i', 'readi', 'four', 'anoth', 'upgrad', 'would', 'like', 'tri', 'blu', 'window', 'phone', 'look', 'like', 'good', 'phone'], ['camera', 'qualiti', 'amaz', 'love'], ['like', 'phone', 'thing', 'phone', 'batteri', 'life', 'not', 'last', 'constant', 'keep', 'plug'], ['phone', 'gift', 'sister', 'love', 'never', 'run', 'slow', 'updat', 'simpl', 'great', 'screen', 'deliv', 'expect', 'smartphon', 'recommend', 'start', 'ad', 'app', 'clog', 'phone', 'processor', 'brand', 'make', 'differ'], ['sim', 'card', 'holder', 'broke', 'within', 'one', 'month', 'return', 'anoth', 'phone', 'great', 'return', 'process'], ['love', 'hott', 'pink', 'phone'], ['complet', 'surpris', 'phone', 'noth', 'envi', 'thing', 'pedi', 'august', 'sent', 'work', 'perfect', 'venezuela', 'movistar', 'movilnet'], ['realli', 'amaz', 'phone', 'price', 'realli', 'not', 'go', 'wrong', 'phone'], ['good'], ['daughter', 'love'], ['best', 'phone'], ['difficult', 'believ', 'review', 'owner', 'actual', 'use', 'product', 'would', 'rather', 'help', 'mean', 'vet', 'review', 'actual', 'custom', 'mine', 'went', 'back', 'blu', 'studio', 'would', 'not', 'stay', 'connect', 'old', 'ericson', 'difficulti', 'would', 'not', 'stay', 'connect', 'various', 'new', 'bluetooth', 'devic', 'mobil', 'phone', 'troubl', 'addit', 'would', 'not', 'stay', 'connect', 'wifi', 'despit', 'feet', 'router', 'touch', 'screen', 'uneven', 'sensit', 'finger', 'pressur', 'sometim', 'scroll', 'time', 'one', 'open', 'file', 'app', 'not', 'expect', 'blu', 'technic', 'support', 'say', 'let', 'adjust', 'expect', 'open', 'line', 'translat', 'not', 'expect', 'anyth', 'camera', 'wish', 'use', 'instead', 'camera', 'rather', 'hard', 'believ', 'sensor', 'actual', 'nois', 'photograph', 'excess', 'upon', 'load', 'imag', 'photo', 'manipul', 'program', 'picasa', 'one', 'quick', 'see', 'nois', 'compar', 'old', 'canon', 'camera', 'blu', 'product', 'produc', 'imag', 'qualiti', 'canon', 'will', 'purchas', 'devic', 'know', 'decid', 'return', 'day', 'amazon', 'return', 'polici', 'blu', 'take', 'week', 'get', 'new', 'phone', 'week', 'get', 'defect', 'devic', 'blu', 'fl', 'work', 'day', 'get', 'replac', 'devic', 'replac', 'may', 'not', 'new', 'may'], ['not', 'buy', 'phone', 'honest', 'not', 'worth', 'headach', 'realli', 'get', 'pay', 'ton', 'thing', 'not', 'want', 'rear', 'face', 'camera', 'definit', 'not', 'lag', 'like', 'crazi', 'even', 'clean', 'regular', 'clean', 'master', 'similar', 'app', 'frustrat', 'part', 'audio', 'experi', 'not', 'play', 'music', 'loud', 'reason', 'music', 'skip', 'skip', 'like', 'scratch', 'cds', 'skip', 'noth', 'internet', 'connect', 'whether', 'use', 'stock', 'music', 'app', 'anoth', 'one', 'play', 'store', 'month', 'music', 'random', 'skip', 'song', 'never', 'life', 'problem', 'phone', 'extrem', 'frustrat', 'pleas', 'not', 'pass', 'review', 'hard', 'write', 'not', 'wast', 'money'], ['good', 'phone', 'great', 'price'], ['bought', 'phone', 'wife', 'replac', 'nexus', 'phone', 'amaz', 'smooth', 'phone', 'flaw', 'ask', 'buy', 'would', 'not', 'regret', 'get', 'one', 'soon', 'sleek'], ['happi', 'receiv', 'phone', 'happi', 'not', 'last', 'receiv', 'new', 'replac', 'phone', 'first', 'order', 'open', 'box', 'go', 'give', 'phone', 'good', 'thing', 'bare', 'bone', 'android', 'phone', 'junk', 'applic', 'not', 'top', 'line', 'phone', 'not', 'buy', 'plan', 'edit', 'video', 'ok', 'web', 'surf', 'phone', 'call', 'great', 'screen', 'other', 'mention', 'day', 'take', 'perfect', 'pic', 'night', 'not', 'ok', 'keep', 'phone', 'not', 'buy', 'anoth', 'low', 'budget', 'phone', 'futur'], ['easi', 'activ', 'get', 'good', 'signal'], ['bought', 'phone', 'like', 'first', 'coupl', 'month', 'bought', 'second', 'one', 'famili', 'member', 'dismay', 'inform', 'phone', 'start', 'issu', 'charg', 'port', 'charg', 'wire', 'need', 'kept', 'specif', 'angl', 'phone', 'charg', 'even', 'hit', 'miss', 'never', 'get', 'phone', 'spend', 'littl', 'googl', 'phone'], ['read', 'rave', 'review', 'look', 'altern', 'lock', 'next', 'program', 'hate', 'contract', 'crsp', 'lock', 'ppl', 'thought', 'i', 'would', 'tri', 'blu', 'phone', 'work', 'not', 'great', 'not', 'super', 'mediocr', 'almost', 'month', 'alreadi', 'problem', 'drop', 'call', 'complaint', 'static', 'ppl', 'not', 'hear', 'not', 'receiv', 'call', 'i', 'never', 'problem', 'previous', 'att', 'year', 'phone', 'brows', 'ok', 'thought', 'start', 'lag', 'recent', 'not', 'realli', 'happi', 'product', 'i', 'would', 'suggest', 'find', 'anoth', 'option', 'thank'], ['alway', 'show', 'low', 'batteri', 'take', 'forev', 'charg'], ['love', 'great', 'phone'], ['horribl', 'phone', 'screen', 'not', 'respons', 'take', 'second', 'get', 'menu', 'screen', 'slow', 'worst', 'thing', 'keep', 'get', 'notif', 'not', 'go', 'away', 'screen', 'say', 'apn', 'specifi', 'devic', 'even', 'set', 'alreadi', 'servic', 'provid', 'return'], ['love', 'phone', 'venezuela', 'work', 'great', 'movilnet', 'includ', 'silicon', 'case', 'screen', 'protector', 'good', 'recomend'], ['phone', 'crappi', 'use', 'two', 'month', 'keep', 'turn', 'wast', 'money', 'disappoint'], ['would', 'turn', 'third', 'phone', 'past', 'month', 'first', 'phone', 'alcatel', 'one', 'touch', 'fierc', 'upgrad', 'blu', 'life', 'pure', 'i', 'admit', 'great', 'phone', 'phone', 'fell', 'ocean', 'got', 'phone', 'best', 'phone', 'ever', 'camera', 'work', 'well', 'lightingscreen', 'clearphon', 'speed', 'fast', 'cellular', 'datai', 'bought', 'sd', 'card', 'work', 'fine', 'phone', 'despit', 'other', 'say', 'android', 'sd', 'card', 'problemseveryth', 'els', 'greatconssim', 'sd', 'card', 'put', 'one', 'batteri', 'taken', 'outonc', 'batteri', 'taken', 'put', 'back', 'log', 'app', 'facebook', 'twitter', 'etc', 'get', 'hot', 'realli', 'fastso', 'phone', 'greatest', 'valu', 'way', 'better', 'valu', 'compar', 'moto', 'g'], ['phone', 'work', 'well', 'come', 'screen', 'protector', 'charger', 'soft', 'clear', 'case', 'unfortun', 'not', 'get', 'lte', 'understand', 'true', 'unlock', 'phone', 'happi', 'batteri', 'often', 'last', 'day', 'though', 'depend', 'usag', 'bigger', 'work', 'better', 'old'], ['not', 'care', 'hard', 'setup', 'least', 'area'], ['good', 'product'], ['work', 'suppos', 'except', 'network', 'drop', 'sometim', 'appar', 'price', 'right', 'well', 'qualiti'], ['updat', 'less', 'five', 'month', 'not', 'work'], ['not', 'good', 'time', 'phone', 'hang'], ['excel', 'phone', 'great', 'display', 'good', 'camera'], ['excel', 'phone', 'happi', 'transact', 'thank'], ['mani', 'quirk', 'most', 'screen', 'sensit', 'scroll', 'would', 'open', 'app', 'place'], ['phone', 'bad', 'bad', 'came', 'failur', 'incident', 'serv', 'turn', 'not', 'turn', 'heat', 'mailismo', 'not', 'recommend', 'anyon'], ['still', 'love'], ['work', 'great'], ['amaz', 'phone', 'amaz', 'price', 'month', 'pleas'], ['best', 'phone', 'i', 'ever', 'iphon', 'galaxi', 'good', 'cheaper', 'camara', 'better'], ['pos', 'not', 'wast', 'time', 'money'], ['love', 'love', 'love', 'phone', 'i', 'drop', 'call', 'recept', 'great', 'price', 'awesom', 'one', 'friend', 'said', 'compar', 'galaxi', 'i', 'get', 'use', 'power', 'button', 'side', 'not', 'major', 'issu', 'function', 'phone'], ['son', 'love', 'not', 'price'], ['bought', 'great', 'almost', 'good', 'samsung', 'without', 'high', 'price', 'happi', 'far', 'except', 'batteri', 'life'], ['excel', 'phone'], ['phone', 'work', 'great', 'month', 'bad', 'signal', 'issu', 'test', 'sim', 'card', 'differ', 'carrier', 'still', 'would', 'not', 'hold', 'connect', 'network', 'drop', 'lot', 'call', 'decid', 'phone', 'junk', 'never', 'buy', 'blu', 'product'], ['work', 'great', 'excel', 'phone', 'awesom', 'case'], ['far', 'great', 'phone', 'use', 'recept', 'strong', 'read', 'lte', 'weaker', 'signal', 'read', 'lte', 'show', 'gps', 'work', 'flawless', 'not', 'issu', 'use', 'week', 'purchas', 'two', 'reboot', 'use', 'built', 'flash', 'light', 'app'], ['great', 'phone', 'nice', 'dese', 'good', 'perform', 'featur', 'signal', 'wait', 'use', 'know', 'phone', 'behav'], ['everyth', 'cell', 'phone', 'good', 'except', 'batteri'], ['easi', 'activ', 'get', 'good', 'signal'], ['sometim', 'seem', 'like', 'cell', 'phone', 'iphon', 'samsung', 'galaxi', 'sure', 'good', 'phone', 'reason', 'price', 'well', 'blu', 'one', 'i', 'one', 'month', 'begin', 'littl', 'bigger', 'thought', 'would', 'screen', 'super', 'crisp', 'sharp', 'video', 'look', 'great', 'next', 'plenti', 'memori', 'load', 'ton', 'app', 'problem', 'perform', 'good', 'switch', 'app', 'quick', 'app', 'run', 'great', 'connect', 'breez', 'music', 'stream', 'lg', 'bluetooth', 'headphon', 'flawless', 'googl', 'map', 'gps', 'got', 'destin', 'fine', 'fm', 'radio', 'cool', 'one', 'negat', 'camera', 'not', 'great', 'light', 'condit', 'daylight', 'great', 'night', 'not', 'much', 'realli', 'like', 'use', 'volum', 'control', 'shutter', 'button', 'phone', 'let', 'not', 'one', 'abl', 'find', 'app', 'summari', 'solid', 'capabl', 'phone', 'great', 'price'], ['bought', 'phone', 'first', 'love', 'hour', 'ago', 'freez', 'video', 'delay', 'freez', 'slow', 'figur', 'refurbish', 'return', 'got', 'devic', 'old', 'screen', 'protector', 'come', 'one', 'put', 'not', 'alreadi', 'i', 'return', 'devic', 'go', 'buy', 'someth', 'els'], ['great', 'product'], ['price', 'phone', 'hard', 'beat'], ['excel', 'great', 'ship'], ['excel', 'product', 'love'], ['not', 'usual', 'write', 'review', 'i', 'fed', 'phone', 'stupid', 'bought', 'phone', 'novemb', 'phone', 'great', 'first', 'coupl', 'month', 'besid', 'littl', 'nit', 'pick', 'call', 'volum', 'quiet', 'person', 'time', 'went', 'phone', 'start', 'crap', 'first', 'would', 'get', 'direct', 'notif', 'mobil', 'data', 'wifi', 'either', 'would', 'get', 'late', 'would', 'not', 'get', 'not', 'sure', 'issu', 'os', 'phone', 'blame', 'os', 'well', 'whenev', 'would', 'start', 'listen', 'music', 'would', 'hear', 'pop', 'crack', 'audio', 'would', 'stop', 'coupl', 'second', 'come', 'back', 'repeat', 'process', 'phone', 'not', 'even', 'hold', 'charg', 'tri', 'charg', 'day', 'yesterday', 'not', 'want', 'work', 'went', 'sleep', 'charg', 'though', 'work', 'consid', 'fell', 'asleep', 'woke', 'morn', 'dead', 'plug', 'night', 'not', 'sure', 'batteri', 'phone', 'not', 'want', 'crappi', 'phone', 'bunch', 'os', 'issu', 'stay', 'away', 'phone', 'look', 'someplac', 'els', 'i', 'like', 'never', 'buy', 'blu', 'product', 'ever', 'sinc', 'hear', 'custom', 'servic', 'terribl', 'see', 'fast', 'phone', 'crap', 'show'], ['work', 'realli', 'well', 'day', 'wife', 'drop', 'toilet', 'rice', 'hair', 'dri', 'sun', 'bake', 'work'], ['awesom', 'phone', 'would', 'certain', 'buy', 'would', 'futur', 'android', 'updat', 'not', 'besid', 'amaz', 'phone'], ['i', 'phone', 'month', 'i', 'would', 'say', 'realli', 'noth', 'write', 'home', 'cpu', 'usag', 'littl', 'high', 'start', 'freez', 'quit', 'bit', 'use', 'instagram', 'snapchat', 'applic', 'close', 'plug', 'headphon', 'volum', 'automat', 'throttl', 'even', 'say', 'work', 'around', 'issu', 'purchas', 'separ', 'bluetooth', 'headphon', 'adapt', 'get', 'decent', 'volum', 'guess', 'price', 'phone', 'pinch'], ['batteri', 'life', 'poor', 'not', 'last', 'full', 'day', 'day', 'screen', 'imposs', 'read', 'daylight', 'unless', 'crank', 'display', 'bright', 'right', 'case', 'batteri', 'die', 'even', 'earlier', 'last', 'straw', 'within', 'two', 'month', 'microphon', 'die', 'dealer', 'say', 'board', 'entir', 'board', 'replac', 'took', 'phone', 'usa', 'bought', 'unlock', 'blu', 'dealer', 'say', 'not', 'honor', 'warranti', 'phone', 'not', 'purchas', 'countri', 'jamaica', 'advic', 'spend', 'money', 'buy', 'reput', 'phone', 'samsung', 'iphon', 'save', 'hassl', 'well', 'intend', 'lesson', 'learn'], ['excel', 'option', 'great', 'relationship', 'price', 'qualiti', 'bought', 'one', 'daughter', 'good', 'decis', 'happi', 'realli', 'recommend', 'product'], ['good'], ['work', 'six', 'month', 'not', 'turn', 'not', 'work', 'applic', 'camerai', 'need', 'new', 'phone'], ['bought', 'phone', 'juli', 'take', 'barbado', 'came', 'within', 'day', 'not', 'come', 'crash', 'sent', 'back', 'got', 'anoth', 'replac', 'left', 'barbado', 'th', 'juli', 'phone', 'crash', 'not', 'come', 'kept', 'go', 'blu', 'sign', 'light', 'went', 'got', 'flash', 'came', 'back', 'next', 'month', 'crash', 'not', 'even', 'flash', 'start', 'flash', 'come', 'error', 'without', 'phone', 'use', 'best', 'friend', 'lent', 'one', 'total', 'suck', 'piss'], ['lte', 'competit', 'spec', 'bar', 'display', 'may', 'not', 'big', 'fan', 'latenc', 'lock', 'gps', 'probabl', 'lot', 'devic', 'perform', 'head', 'shoulder', 'realli', 'expens', 'htc', 'handset', 'fraction', 'cost', 'fact', 'start', 'use', 'primari', 'phone', 'not', 'regret', 'far', 'also', 'support', 'extens', 'number', 'band', 'make', 'sure', 'travel', 'ever', 'countri', 'go', 'kudo', 'blu', 'creat', 'not', 'experi', 'deal', 'custom', 'care', 'tech', 'support', 'far', 'not', 'comment'], ['phone', 'suck'], ['window', 'phone', 'user', 'standbi', 'better', 'os', 'anyth', 'els', 'app', 'send', 'lumia', 'nokia', 'fix', 'someth', 'cover', 'warranti', 'two', 'week', 'gone', 'bought', 'blu', 'phone', 'not', 'want', 'spend', 'lot', 'money', 'phone', 'go', 'use', 'two', 'week', 'separ', 'purpos', 'android', 'test', 'devic', 'mobil', 'app', 'alreadi', 'somewhat', 'familiar', 'android', 'phone', 'serv', 'purpos', 'well', 'two', 'week', 'use', 'main', 'devic', 'also', 'adequ', 'test', 'person', 'tend', 'use', 'top', 'line', 'phone', 'new', 'phone', 'everi', 'year', 'must', 'say', 'surpris', 'overal', 'qualiti', 'feel', 'phone', 'quit', 'sleek', 'thin', 'light', 'still', 'nice', 'inch', 'start', 'posit', 'screen', 'nice', 'clear', 'vivid', 'phone', 'seen', 'feel', 'good', 'hand', 'especi', 'clear', 'gummi', 'case', 'come', 'slew', 'accessori', 'get', 'includ', 'gummi', 'case', 'screen', 'protector', 'headphon', 'etc', 'not', 'like', 'free', 'accessori', 'touch', 'part', 'pretti', 'smooth', 'one', 'huge', 'problem', 'i', 'get', 'negat', 'section', 'phone', 'work', 'well', 'overal', 'use', 'android', 'not', 'bad', 'either', 'nice', 'access', 'mani', 'app', 'i', 'not', 'use', 'probabl', 'not', 'enough', 'drop', 'wp', 'android', 'fun', 'nonetheless', 'greatest', 'posit', 'cours', 'price', 'new', 'unlock', 'phone', 'spec', 'phone', 'pretti', 'awesom', 'deal', 'almost', 'half', 'would', 'pay', 'exact', 'phone', 'differ', 'negat', 'not', 'bad', 'make', 'sound', 'tendenc', 'pick', 'thing', 'apart', 'make', 'sound', 'wors', 'realli', 'think', 'said', 'i', 'start', 'huge', 'touch', 'problem', 'lose', 'one', 'star', 'touch', 'accuraci', 'slight', 'least', 'mine', 'wherev', 'touch', 'actual', 'regist', 'mm', 'odd', 'play', 'game', 'requir', 'touch', 'small', 'area', 'could', 'much', 'affect', 'howev', 'say', 'not', 'even', 'notic', 'everi', 'day', 'use', 'becam', 'notic', 'tri', 'touch', 'small', 'menu', 'item', 'game', 'could', 'dealbreak', 'rest', 'small', 'imperfect', 'biggest', 'would', 'screen', 'littl', 'circl', 'one', 'edg', 'look', 'like', 'someon', 'put', 'screen', 'left', 'air', 'bubbl', 'ugli', 'annoy', 'total', 'unnotic', 'actual', 'use', 'phone', 'batteri', 'life', 'mediocr', 'last', 'day', 'not', 'much', 'use', 'lumia', 'last', 'day', 'matter', 'multipl', 'day', 'even', 'i', 'also', 'not', 'impress', 'camera', 'generic', 'rear', 'good', 'enough', 'not', 'year', 'consid', 'dollar', 'phone', 'could', 'consid', 'pretti', 'good', 'lumia', 'nokia', 'awesom', 'put', 'negat', 'android', 'phone', 'enjoy', 'pitfal', 'come', 'os', 'android', 'fan', 'obvious', 'fine', 'stabil', 'android', 'came', 'long', 'long', 'way', 'still', 'quirk', 'peopl', 'find', 'overal', 'want', 'cheap', 'nice', 'littl', 'smart', 'phone', 'use', 'network', 'definit', 'recommend', 'tri', 'phone', 'want', 'cheap', 'somewhat', 'recent', 'phone', 'test', 'android', 'app', 'also', 'recommend', 'phone', 'want', 'phone', 'plan', 'take', 'top', 'notch', 'pictur', 'video', 'look', 'elsewher', 'want', 'perfect', 'sound', 'tight', 'phone', 'not', 'annoy', 'idiosyncrasi', 'i', 'would', 'recommend', 'look', 'window', 'phone', 'price', 'rang', 'specif', 'nokia'], ['son', 'love', 'phone', 'lte', 'speed', 'better', 'ever'], ['phone', 'use', 'month', 'blu', 'line', 'would', 'prefer', 'blu', 'fit', 'jean', 'pocket', 'pro', 'con', 'compar', 'two', 'not', 'list', 'certain', 'subject', 'mean', 'equal', 'realli', 'not', 'matter', 'screen', 'give', 'extra', 'gain', 'moto', 'g', 'screen', 'lower', 'button', 'home', 'back', 'properti', 'screen', 'thus', 'take', 'space', 'blu', 'touch', 'button', 'screen', 'free', 'anoth', 'actual', 'gain', 'screen', 'size', 'feel', 'quit', 'haptic', 'feedback', 'feel', 'thinner', 'look', 'sleeker', 'cheaper', 'accessori', 'includ', 'headphon', 'back', 'case', 'screen', 'protector', 'jellybean', 'way', 'move', 'app', 'sd', 'card', 'without', 'root', 'issu', 'regard', 'screen', 'resolut', 'ppi', 'slight', 'less', 'view', 'angl', 'screen', 'color', 'temp', 'bit', 'cooler', 'bluish', 'run', 'time', 'slight', 'less', 'whole', 'day', 'hour', 'light', 'use', 'drain', 'batteri', 'batteri', 'usag', 'not', 'bad', 'thought', 'end', 'around', 'light', 'usag', 'day', 'par', 'moto', 'g', 'new', 'downsid', 'found', 'video', 'record', 'poor', 'low', 'light', 'indoor', 'moto', 'g', 'abl', 'gain', 'get', 'proper', 'bright', 'studio', 'lte', 'video', 'dark', 'not', 'think', 'due', 'jellybean', 'kitkat', 'probabl', 'hardwar', 'issu', 'still', 'minor', 'issu'], ['excel', 'phone', 'work', 'oper', 'venezuela'], ['love', 'phone', 'gave', 'star', 'kind', 'glitchi', 'perfect'], ['file', 'damag', 'phone', 'port', 'go', 'sim', 'card', 'could', 'unhappi', 'servic', 'provid', 'amazon', 'warehous', 'purchas', 'product'], ['love', 'far', 'great', 'phone', 'batteri', 'work', 'almost', 'complet', 'day', 'plus', 'app', 'good', 'system', 'easi', 'use'], ['great', 'phone', 'price', 'day'], ['ah', 'decent', 'phone', 'work', 'good', 'fast', 'camara', 'cool', 'likeit', 'go', 'buy', 'anoth', 'one'], ['arriv', 'time', 'good', 'not', 'upgrad', 'os', 'show', 'updat', 'avail', 'phone', 'connect', 'os', 'updat', 'stay', 'disappoint', 'current', 'android', 'os', 'version', 'updat'], ['great'], ['phone', 'pretti', 'much', 'exact', 'describ', 'batteri', 'life', 'amaz'], ['excel'], ['love', 'one', 'problem', 'not', 'store', 'lot', 'space', 'phone', 'even', 'memori', 'card'], ['excelent'], ['like', 'phone', 'far', 'nice', 'sound'], ['nice', 'phone', 'two', 'model', 'great', 'color', 'case', 'bright', 'may', 'peopl', 'compliment', 'color', 'phone', 'camera', 'great', 'photo', 'come', 'well', 'phone', 'fast', 'processor', 'gb', 'ram', 'screen', 'nice', 'altho', 'not', 'hd', 'look', 'realli', 'close', 'notic', 'screen', 'not', 'hd', 'good', 'call', 'qualiti', 'speaker', 'nice', 'aswel', 'earbud', 'come', 'phone', 'also', 'nice', 'plus', 'phone', 'built', 'equal', 'sound', 'headphon', 'work', 'well', 'batteri', 'life', 'good', 'well', 'abl', 'go', 'almost', 'two', 'whole', 'day', 'need', 'charg', 'moder', 'use', 'two', 'issu', 'phone', 'one', 'menu', 'home', 'back', 'button', 'bottom', 'not', 'stay', 'lit', 'time', 'use', 'phone', 'power', 'save', 'presum', 'bit', 'issu', 'tri', 'use', 'not', 'see', 'one', 'second', 'issu', 'gb', 'intern', 'memori', 'user', 'need', 'lot', 'app', 'present', 'problem', 'app', 'instal', 'phone', 'plus', 'thing', 'come', 'instal', 'phone', 'problem', 'fix', 'micro', 'sd', 'card', 'easi', 'instal', 'phone', 'whole', 'back', 'part', 'case', 'come', 'give', 'easi', 'access', 'batteri', 'two', 'slot', 'sim', 'card', 'slot', 'micro', 'sd', 'card', 'phone', 'one', 'best', 'minor', 'issu', 'not', 'signific', 'enough', 'deter', 'buy', 'phone', 'also', 'best', 'power', 'money'], ['great', 'price', 'good', 'smart', 'phone'], ['besid', 'storag', 'issu', 'tend', 'not', 'care', 'download', 'app', 'great', 'phone', 'need', 'today', 'fast', 'pace', 'world'], ['got', 'back', 'friend', 'love', 'great', 'deal', 'made', 'usa'], ['order', 'phone', 'sister', 'love', 'love', 'app', 'came', 'phone', 'drop', 'call', 'good', 'signal', 'excel', 'volum', 'servic', 'use', 'straight', 'talk', 'pop', 'sim', 'card', 'phone', 'start', 'talk', 'friend', 'order', 'nice', 'size', 'come', 'batteri', 'case', 'charger', 'earphon', 'great', 'price', 'diva'], ['excel', 'product', 'bit', 'limit', 'ram', 'resolv', 'micro', 'sd', 'good', 'relat', 'exceed', 'expect', 'seller', 'serious', 'respons', 'peopl'], ['skeptic', 'phone', 'go', 'great', 'phone', 'consid', 'price', 'get', 'pay', 'ideolog', 'realli', 'great', 'phone', 'huge', 'thin', 'sleek', 'design', 'absolut', 'problem', 'phone', 'get', 'us', 'warranti', 'case', 'would', 'purchas', 'market', 'latest', 'greatest', 'budget', 'phone', 'tri', 'pleasant', 'supris'], ['yeah'], ['love', 'phone'], ['excel', 'cell'], ['phone', 'play', 'real', 'low', 'earphon', 'plug', 'aux', 'realli', 'not', 'pleas', 'volum', 'problem', 'power', 'screen', 'flash', 'reason'], ['good', 'phone', 'work', 'great', 'att', 'net'], ['good', 'buy'], ['key', 'board', 'small'], ['yes'], ['got', 'item', 'speaker', 'not', 'work', 'place', 'charg', 'came', 'chines', 'write', 'start', 'make', 'loud', 'nois'], ['worst', 'phone', 'ever', 'not', 'wast', 'money', 'could', 'not', 'make', 'even', 'phone', 'disappoint'], ['i', 'say', 'get', 'pay', 'phone', 'give', 'friend', 'problem', 'moment', 'got', 'sent', 'back', 'replac', 'replac', 'began', 'freez', 'screen', 'would', 'not', 'respond', 'save', 'hassl', 'spend', 'littl', 'phone', 'last', 'trust'], ['good', 'live'], ['great'], ['exelent', 'telefono'], ['good', 'cell', 'phone'], ['send', 'oversear', 'hes', 'great'], ['good', 'product'], ['excelent'], ['want', 'like', 'phone', 'look', 'upgrad', 'nexus', 'larger', 'screen', 'read', 'blu', 'studio', 'compani', 'thought', 'i', 'would', 'give', 'not', 'high', 'expect', 'alreadi', 'knew', 'not', 'go', 'fast', 'clear', 'nexus', 'not', 'realli', 'use', 'phone', 'game', 'hd', 'video', 'view', 'howev', 'want', 'bigger', 'screen', 'could', 'get', 'rid', 'tablet', 'use', 'singl', 'devic', 'everyth', 'includ', 'surf', 'web', 'read', 'book', 'work', 'better', 'expect', 'screen', 'great', 'initi', 'setup', 'effortless', 'though', 'need', 'buy', 'adapt', 'micro', 'sim', 'mini', 'sim', 'happi', 'phone', 'dial', 'work', 'confer', 'feedback', 'call', 'qualiti', 'aw', 'drop', 'one', 'could', 'hear', 'phone', 'provid', 'feedback', 'return', 'phone', 'got', 'bad', 'one', 'somehow', 'phone', 'got', 'seal', 'box', 'broken', 'not', 'sure', 'happen', 'given', 'ship', 'amazon'], ['could', 'not', 'made', 'better', 'choic', 'abl', 'anyth', 'want', 'time', 'fact', 'fulli', 'satisfi', 'product', 'recommend', 'friend', 'wait', 'next', 'big', 'thing', 'come', 'trust', 'one', 'first', 'peopl', 'get'], ['terribl', 'qualiti', 'phone', 'last', 'month', 'less', 'work', 'fine', 'touch', 'screen', 'would', 'not', 'respond', 'reason', 'never', 'fell', 'never', 'got', 'wet', 'never', 'even', 'got', 'scratch', 'stop', 'work', 'took', 'batteri', 'put', 'back', 'noth', 'wait', 'wait', 'tri', 'press', 'screen', 'littl', 'harder', 'see', 'would', 'work', 'screen', 'crack', 'cell', 'phone', 'live', 'could', 'not', 'believ', 'poor', 'qualiti', 'never', 'buy', 'blue', 'product'], ['pure', 'awesom', 'total', 'worth', 'money', 'realli', 'enjoy', 'upgrad', 'use', 'straighttalk', 'bewar', 'headach', 'awesom', 'phone'], ['wife', 'yet', 'experi', 'issu', 'phone', 'not', 'toler', 'consid', 'low', 'cost', 'fact', 'issu', 'identifi', 'independ', 'android', 'os', 'exampl', 'import', 'merg', 'contact', 'took', 'littl', 'bit', 'creativ', 'probabl', 'android', 'phone', 'blu', 'softwar', 'concern', 'thus', 'far', 'wife', 'experienc', 'troubl', 'connect', 'stay', 'connect', 'wireless', 'not', 'seen', 'enough', 'evid', 'assess', 'whether', 'hardwar', 'softwar', 'issu', 'might', 'relat', 'blu', 'not', 'bad', 'drop', 'phone', 'yet', 'not', 'realli', 'speak', 'durabl', 'protect', 'case', 'come', 'not', 'much', 'save', 'nasti', 'fall', 'wife', 'seem', 'feel', 'inhibit', 'use', 'phone', 'much', 'phone', 'opinion', 'great', 'valu', 'thin', 'power', 'low', 'cost', 'wife', 'found', 'ask', 'like', 'new', 'galaxi', 'frugal', 'peopl', 'refus', 'spend', 'coupl', 'hundr', 'dollar', 'someth', 'like', 'phone', 'far', 'happi', 'phone', 'play', 'lot', 'silli', 'game', 'use', 'facebook', 'pinterest', 'etc', 'issu'], ['great'], ['excel', 'slim', 'piec'], ['find', 'blu', 'product', 'good', 'user', 'friend', 'one', 'happi', 'camper'], ['good'], ['littl', 'feedback', 'phone', 'ship', 'member', 'famili', 'phone', 'good', 'love', 'bad', 'complain', 'thank'], ['good', 'phone', 'second', 'one', 'owen'], ['lost', 'control', 'half', 'number', 'pad', 'week', 'love', 'big', 'screen', 'not', 'trash', 'phone', 'mayb', 'bad', 'luck'], ['afford', 'price', 'nice', 'phone'], ['best', 'blu', 'phone', 'market'], ['love', 'phone'], ['order', 'blue', 'lte', 'day', 'ago', 'amazon', 'sever', 'blue', 'phone', 'never', 'problem', 'one', 'upgrad', 'hd', 'well', 'satisfi', 'would', 'like', 'state', 'everyth', 'expect', 'arriv', 'time', 'well', 'packag', 'phone', 'awesom', 'oper', 'even', 'better', 'expect', 'unexpect', 'delay', 'take', 'micro', 'sim', 'card', 'abl', 'cut', 'one', 'hd', 'oper', 'hd', 'take', 'mini', 'sim', 'card', 'quick', 'lte', 'fantast', 'write', 'updat', 'review', 'week', 'realli', 'not', 'expect', 'problem', 'ok', 'updat', 'way', 'sooner', 'expect', 'wrote', 'review', 'check', 'everyth', 'except', 'microphon', 'turn', 'microphon', 'bad', 'first', 'problem', 'encount', 'blu', 'phone', 'would', 'like', 'state', 'not', 'blame', 'seller', 'phone', 'new', 'packag', 'well', 'factori', 'issu', 'contact', 'blu', 'custom', 'servic', 'help', 'sent', 'email', 'instruct', 'hard', 'reset', 'told', 'not', 'work', 'faulti', 'microphon', 'issu', 'could', 'due', 'misunderstand', 'thought', 'could', 'return', 'replac', 'problem', 'turn', 'get', 'refund', 'order', 'anoth', 'littl', 'bit', 'hassl', 'time', 'consum', 'anyway', 'send', 'back', 'tomorrow', 'custom', 'servic', 'rep', 'amazon', 'help', 'also', 'still', 'rate', 'phone', 'star', 'mike', 'not', 'bad', 'well', 'exceed', 'expect', 'seventh', 'blu', 'phone', 'first', 'problem', 'use', 'buy', 'higher', 'end', 'phone', 'alway', 'issu', 'somewher', 'pictur', 'qualiti', 'stun', 'processor', 'lte', 'blaze', 'fast', 'still', 'wait', 'blu', 'upgrad', 'sound', 'qualiti', 'phone', 'bit', 'price', 'not', 'complain', 'keep', 'blu', 'think', 'competit', 'start', 'feel', 'heat', 'new', 'updat', 'receiv', 'replac', 'phone', 'morn', 'thorough', 'test', 'everyth', 'still', 'exceed', 'expect', 'read', 'review', 'say', 'not', 'oper', 'smooth', 'not', 'experienc', 'one', 'smooth', 'everyth', 'carrier', 'lte', 'fast', 'coverag', 'good', 'area', 'thing', 'would', 'advis', 'someon', 'blu', 'lte', 'requir', 'micro', 'sim', 'card', 'never', 'saw', 'part', 'advertis', 'anywher', 'cut', 'mini', 'sim', 'card', 'hd', 'work', 'fine', 'far', 'youtub', 'netflix', 'movi', 'amazon', 'prime', 'instant', 'look', 'high', 'qualiti', 'hd', 'game', 'app', 'googl', 'play', 'store', 'taken', 'second', 'download', 'updat', 'done', 'second', 'absolut', 'great', 'phone', 'price'], ['love', 'phone', 'everyth', 'work', 'well', 'except', 'launcher', 'quick', 'fix', 'audio', 'play', 'music', 'tend', 'stop', 'play', 'restart', 'song', 'everyth', 'els', 'pretti', 'much', 'perfect', 'especi', 'screen', 'vibrant', 'beauti', 'updat', 'drop', 'phone', 'screen', 'crack', 'would', 'not', 'big', 'deal', 'except', 'screen', 'quit', 'work', 'went', 'get', 'replac', 'screen', 'hard', 'find', 'best'], ['absolut', 'love', 'phone', 'truli', 'one', 'blu', 'best', 'phone', 'transit', 'blu', 'studio', 'ii', 'blu', 'lte', 'delight'], ['ad', 'say', 'micro', 'sd', 'use', 'box', 'reciev', 'say', 'gb', 'huge', 'issu', 'not', 'match', 'advertis'], ['i', 'iphon', 'i', 'galaxi', 'i', 'htc', 'smart', 'phone', 'honest', 'say', 'money', 'good', 'not', 'better', 'phone', 'i', 'ever', 'fast', 'processor', 'lag', 'play', 'work', 'beautifi', 'walmart', 'famili', 'mobil', 'network', 'perfect', 'someon', 'larg', 'back', 'camera', 'life', 'ok', 'phone', 'screen', 'big', 'not', 'go', 'hour', 'charger', 'still', 'left', 'get', 'least', 'hour', 'continu', 'game', 'play', 'charg', 'littl', 'scetchi', 'instal', 'gps', 'status', 'app', 'help', 'pick', 'locat', 'quicker', 'work', 'perfect', 'not', 'support', 'micro', 'sd', 'unless', 'format', 'coupl', 'vid', 'youtub', 'show', 'serious', 'lack', 'accessori', 'not', 'product', 'issu', 'annoy', 'phone', 'easili', 'worth', 'twice', 'price', 'point'], ['great', 'phone', 'cheap'], ['awesom', 'phone', 'get', 'job', 'done', 'nice'], ['phone', 'good', 'realli', 'big'], ['not', 'reciev', 'data', 'phone', 'return', 'carrier', 'tri', 'everyth', 'even', 'bought', 'new', 'sim', 'card', 'still', 'data'], ['item', 'not', 'work', 'proper', 'sinc', 'purchas', 'not', 'connect', 'mobil', 'data', 'tmobil'], ['phone', 'hugewel', 'worth', 'pricestrong', 'recommend', 'case'], ['day', 'receiv', 'phone', 'say', 'unfortun', 'set', 'close', 'everi', 'time', 'tri', 'enter', 'apn', 'set', 'could', 'given', 'star', 'would'], ['awesom', 'phone', 'glad', 'purchas'], ['birthday', 'gift', 'yr', 'old', 'daughter', 'far', 'love', 'thks'], ['second', 'blu', 'phone', 'high', 'disappoint', 'first', 'blu', 'blu', 'life', 'stop', 'charg', 'first', 'month', 'i', 'blu', 'lte', 'two', 'week', 'app', 'keep', 'forc', 'close', 'terribl', 'slow', 'lag'], ['slow', 'first', 'updat', 'got', 'realli', 'fast', 'awesom'], ['purchas', 'anoth', 'site', 'first', 'realli', 'like', 'phone', 'camera', 'great', 'give', 'clear', 'pic', 'start', 'get', 'camera', 'error', 'would', 'reboot', 'phone', 'make', 'call', 'could', 'not', 'hear', 'phne', 'ring', 'reboot', 'call', 'speaker', 'would', 'stop', 'work', 'would', 'switch', 'speaker', 'phone', 'reboot', 'call', 'custom', 'servic', 'spoke', 'ladi', 'took', 'info', 'said', 'email', 'instruct', 'tok', 'tri', 'see', 'fix', 'camera', 'error', 'still', 'waitin', 'email', 'week', 'n', 'count', 'not', 'wast', 'time', 'call', 'follw', 'numer', 'email', 'repli', 'short', 'not', 'buy', 'phone', 'ohh', 'speaker', 'phone', 'low', 'call', 'qualiti', 'aw', 'thought', 'compani', 'would', 'take', 'big', 'compani', 'still', 'lot', 'work', 'never', 'buy', 'anoth', 'blu', 'product'], ['previous', 'own', 'blu', 'studio', 'thought', 'upgrad', 'larger', 'studio', 'would', 'great', 'look', 'forward', 'better', 'qualiti', 'camera', 'addit', 'larger', 'phone', 'overal', 'prime', 'got', 'phone', 'next', 'day', 'thrill', 'look', 'feel', 'phone', 'far', 'exceed', 'expect', 'happi', 'first', 'quick', 'fade', 'first', 'day', 'realiz', 'speaker', 'qualiti', 'realli', 'poor', 'particular', 'phone', 'son', 'went', 'internet', 'look', 'review', 'tri', 'find', 'flaw', 'particular', 'model', 'mayb', 'got', 'lemon', 'none', 'review', 'mention', 'anyth', 'regard', 'volum', 'low', 'phone', 'tri', 'differ', 'thing', 'noth', 'work', 'slight', 'hear', 'loss', 'slight', 'ridicul', 'tri', 'deal', 'like', 'phone', 'much', 'howev', 'day', 'speaker', 'went', 'complet', 'phone', 'would', 'ring', 'sound', 'thank', 'abl', 'return', 'get', 'complet', 'refund', 'littl', 'sad', 'wish', 'not', 'sold', 'parti', 'seller', 'though', 'case', 'would', 'probabl', 'risk', 'tri', 'anoth', 'one', 'amazon', 'love', 'featur', 'phone', 'respons', 'screen', 'not', 'fast', 'though'], ['got', 'new', 'alreadi', 'screen', 'protector', 'go'], ['phone', 'grab', 'function', 'samsung', 'note', 'took', 'new', 'height', 'thing', 'need', 'sinc', 'hot', 'line', 'accessori', 'around', 'corner', 'awesom', 'piec', 'technolog', 'fraction', 'cost', 'blu', 'bold', 'like', 'us'], ['great', 'cell', 'best', 'price'], ['grandson', 'love', 'phone'], ['great', 'phone', 'buy', 'one', 'public', 'contact', 'seller', 'great', 'job', 'assist', 'phone', 'would', 'not', 'take', 'sd', 'card', 'show', 'reset', 'phone', 'total', 'memori'], ['cousin', 'bought', 'love', 'use'], ['want', 'like', 'phone', 'littl', 'spec', 'seem', 'good', 'true', 'appear', 'case', 'i', 'phone', 'two', 'week', 'function', 'work', 'fine', 'six', 'inch', 'screen', 'great', 'not', 'sure', 'i', 'would', 'like', 'screen', 'big', 'read', 'surf', 'internet', 'hour', 'commut', 'bus', 'great', 'phone', 'i', 'connect', 'awesom', 'also', 'connect', 'fitbit', 'charg', 'concern', 'sinc', 'bluetooth', 'good', 'text', 'phone', 'call', 'also', 'fine', 'although', 'not', 'either', 'first', 'issu', 'audio', 'listen', 'lot', 'podcast', 'sound', 'would', 'stop', 'random', 'screen', 'sometim', 'could', 'listen', 'minut', 'audio', 'would', 'stop', 'time', 'indic', 'podcast', 'player', 'would', 'continu', 'forward', 'sound', 'would', 'play', 'second', 'audio', 'would', 'come', 'would', 'happen', 'everi', 'minut', 'thought', 'might', 'app', 'use', 'audio', 'stop', 'audio', 'program', 'googl', 'music', 'pandora', 'local', 'play', 'file', 'sent', 'unit', 'back', 'second', 'devic', 'receiv', 'instal', 'app', 'everyth', 'work', 'great', 'half', 'day', 'audio', 'issu', 'start', 'factori', 'reset', 'phone', 'think', 'would', 'help', 'day', 'audio', 'issu', 'start', 'issu', 'pop', 'use', 'googl', 'launcher', 'reason', 'phone', 'would', 'keep', 'default', 'stock', 'one', 'even', 'set', 'googl', 'home', 'launcher', 'googl', 'would', 'not', 'even', 'show', 'home', 'set', 'issu', 'date', 'time', 'i', 'west', 'coast', 'time', 'would', 'default', 'eastern', 'time', 'even', 'network', 'provid', 'time', 'check', 'not', 'big', 'deal', 'could', 'set', 'manual', 'last', 'issu', 'messag', 'use', 'hangout', 'default', 'messeng', 'everyth', 'fine', 'default', 'messag', 'app', 'would', 'show', 'notif', 'even', 'hangout', 'set', 'gave', 'go', 'googl', 'read', 'forum', 'spent', 'much', 'time', 'tri', 'get', 'phone', 'simpl', 'thing', 'want', 'not', 'time', 'invest', 'get', 'work', 'shame', 'realli', 'like', 'size', 'beauti', 'screen', 'great', 'batteri', 'not', 'need', 'listen', 'audio', 'may', 'phone'], ['instalen', 'sim', 'card', 'afternoon', 'two', 'day', 'slot', 'want', 'servic', 'tri', 'differ', 'card', 'one', 'work', 'differ', 'provid', 'shame', 'like', 'lot'], ['order', 'right', 'time', 'phone', 'describ', 'love', 'websit', 'amazon', 'even', 'adjust', 'amount', 'mega', 'pixel', 'great', 'amount', 'money', 'great', 'phone'], ['month', 'screen', 'broke', 'glass', 'paper', 'thin', 'not', 'durabl', 'bought', 'model', 'fianc', 'bought', 'screen', 'crack'], ['bought', 'march', 'month', 'problem', 'recharg', 'phone', 'month', 'data', 'port', 'burn', 'scorch', 'mark', 'around', 'charg', 'port', 'look', 'like', 'someon', 'tri', 'put', 'cigarett', 'not', 'happen', 'would', 'rate', 'great', 'phone', 'howev', 'phone', 'not', 'use'], ['good'], ['wife', 'love'], ['possibl', 'great', 'phone', 'may', 'never', 'find', 'certain', 'ithi', 'review', 'blu', 'studio', 'lte', 'full', 'hd', 'display', 'camera', 'android', 'kitkat', 'lte', 'unlock', 'cell', 'phone', 'black', 'wireless', 'phone', 'accessori', 'great', 'work', 'receiv', 'valu', 'phablet', 'begin', 'june', 'day', 'not', 'work', 'touchscreen', 'defect', 'reach', 'seller', 'tri', 'obtain', 'warranti', 'replac', 'offer', 'return', 'cost', 'would', 'not', 'money', 'lost', 'would', 'pay', 'phone', 'ship', 'reach', 'seller', 'refus', 'respond', 'choic', 'file', 'claim', 'would', 'given', 'higher', 'rate', 'week', 'without', 'phone', 'put', 'nowher', 'nearer', 'work', 'one', 'probabl', 'decent', 'phone', 'not', 'think', 'get', 'chanc', 'soon', 'find', 'receiv', 'valu', 'phablet', 'begin', 'june', 'day', 'not', 'work', 'touchscreen', 'defect', 'reach', 'seller', 'tri', 'obtain', 'warranti', 'replac', 'offer', 'return', 'cost', 'would', 'not', 'money', 'lost', 'want', 'phone', 'would', 'pay', 'phone', 'ship', 'reach', 'seller', 'refus', 'would', 'given', 'higher', 'rate', 'week', 'without', 'phone', 'terribl', 'servic', 'seller', 'not', 'give', 'higher', 'rate', 'probabl', 'decent', 'phone', 'not', 'think', 'get', 'chanc', 'soon', 'find'], ['love', 'love', 'love', 'phone', 'purchas', 'deliv', 'safe', 'receiv', 'due', 'date', 'awesom'], ['phone', 'batteri', 'began', 'overh', 'month', 'use', 'phone', 'becom', 'hot', 'not', 'held'], ['best', 'phone', 'buy'], ['i', 'not', 'go', 'make', 'long', 'think', 'lot', 'folk', 'done', 'great', 'job', 'assess', 'not', 'found', 'anyth', 'phone', 'not', 'like', 'yet', 'serv', 'need', 'withouu', 'compromis', 'need', 'bluetooth', 'pair', 'fitbit', 'got', 'need', 'wifi', 'hotspot', 'got', 'want', 'got', 'want', 'plenti', 'memori', 'memori', 'expans', 'slot', 'got', 'phone', 'fast', 'phone', 'everyth', 'want', 'need', 'small', 'even', 'came', 'earbud', 'screen', 'protector', 'nice', 'case', 'happi', 'hope', 'compani', 'great', 'success'], ['iv', 'phone', 'week', 'know', 'great', 'better', 'galaxi', 'love', 'screen', 'fast', 'easi', 'type', 'monster', 'keyboard', 'scene', 'big', 'hand', 'i', 'network', 'straight', 'talk', 'easi', 'set', 'lte', 'work', 'great', 'fast', 'play', 'high', 'qualiti', 'game', 'work', 'perfect', 'phone', 'display', 'nice', 'beauti', 'color', 'bright', 'respons', 'thing', 'would', 'like', 'ask', 'blu', 'studio', 'lte', 'let', 'know', 'also', 'hit', 'facebook', 'brandon', 'folli'], ['fantast', 'cell'], ['like', 'phone', 'got', 'june', 'far', 'good', 'up', 'down', 'like', 'flash', 'light', 'stay', 'shut', 'turn', 'flashlight', 'recommend', 'phone', 'other', 'bewar', 'larg', 'though', 'take', 'one', 'pocket', 'also', 'might', 'want', 'order', 'number', 'enjoy'], ['love', 'phone', 'separ', 'busi', 'carri', 'phone', 'around', 'servic', 'i', 'issu', 'get', 'voicemail', 'work', 'get', 'get', 'servic', 'either', 'sim', 'card', 'pretti', 'sure', 'someth', 'come', 'silicon', 'case', 'screen', 'protector', 'alreadi', 'well', 'stereo', 'ear', 'bud', 'batteri', 'last', 'day', 'half'], ['instalen', 'sim', 'card', 'afternoon', 'two', 'day', 'slot', 'want', 'servic', 'tri', 'differ', 'card', 'one', 'work', 'differ', 'provid', 'shame', 'like', 'lot'], ['fantast', 'phone', 'would', 'definit', 'recommend', 'product', 'far', 'i', 'problem', 'tit', 'fast', 'leg', 'call', 'qualiti', 'clear', 'love', 'big', 'fit', 'perfect', 'larger', 'hand'], ['insert', 'sd', 'card', 'not', 'detect'], ['spec', 'quit', 'good', 'phone', 'suffer', 'realli', 'serious', 'lag', 'issu', 'phone', 'not', 'compar', 'higher', 'end', 'phone', 'compar', 'zte', 'zmax', 'ascend', 'mate', 'phone', 'complet', 'joke', 'problem', 'stock', 'softwar', 'phone', 'rough', 'spec', 'yet', 'run', 'smooth', 'respons'], ['far', 'best', 'phone', 'friend', 'love', 'even', 'go', 'shop', 'around', 'town', 'vacat', 'mexico', 'spain', 'not', 'know', 'guy', 'talk', 'rate', 'phone', 'low', 'negat', 'remark', 'first', 'thought', 'inch', 'display', 'would', 'big', 'never', 'go', 'someth', 'smaller', 'thank', 'blu', 'cell', 'keep', 'excel', 'work'], ['nice', 'phone', 'screen', 'bright', 'vibrant', 'come', 'storag', 'also', 'equip', 'expand', 'memori', 'processor', 'great', 'two', 'slot', 'sim', 'card', 'tri', 'sim', 'slot', 'opinion', 'use', 'sim', 'slot', 'first', 'swap', 'coverag', 'better', 'peer', 'network', 'phone', 'price', 'rent', 'use', 'straight', 'talk', 'sim', 'card', 'phone', 'blu', 'phone', 'interfac', 'not', 'cram', 'lot', 'bloatwar', 'app', 'minim', 'interfac', 'run', 'android', 'custom', 'theme', 'launcher', 'custom', 'phone', 'like', 'back', 'camera', 'flash', 'take', 'realli', 'good', 'photo', 'front', 'face', 'camera', 'took', 'selfi', 'came', 'pretti', 'nice', 'well', 'video', 'record', 'hd', 'far', 'realli', 'realli', 'recommend', 'phone', 'come', 'glass', 'protect', 'sheet', 'screen', 'starter', 'phone', 'cover', 'set', 'headphon', 'fm', 'radio', 'convers', 'charger', 'nice', 'packag', 'make', 'rethink', 'look', 'bigger', 'compani', 'pay', 'upward', 'phone', 'lucki', 'get', 'headphon', 'let', 'alon', 'case', 'screen', 'protector', 'give', 'charger', 'time', 'cram', 'phone', 'proprieti', 'app', 'never', 'use', 'not', 'remov', 'phone'], ['use', 'phone', 'week', 'phone', 'blue', 'line', 'across', 'screen', 'phone', 'not', 'drop', 'place', 'protect', 'case', 'straight', 'packag', 'imag', 'jump', 'screen', 'factori', 'reset', 'done', 'noth', 'improv', 'issu'], ['phone', 'quit', 'charg', 'month', 'blu', 'took', 'month', 'get', 'rma', 'not', 'even', 'worth', 'cost', 'ship', 'time', 'replac'], ['phone', 'not', 'allow', 'set', 'apn', 'mobil', 'data', 'usag', 'disappoint', 'wast', 'time', 'someth', 'anyon', 'came', 'across', 'solv', 'major', 'problem', 'without', 'mobil', 'data', 'useless', 'star', 'not'], ['wonder'], ['good', 'lock', 'use', 'start', 'go', 'auto', 'back', 'blu', 'gave', 'new', 'phone', 'experi', 'not', 'worthi'], ['excel'], ['good', 'phone'], ['great', 'phone', 'price', 'afford', 'sound', 'qualiti', 'good', 'comfort', 'held'], ['great', 'song'], ['love'], ['someth', 'microsim', 'card', 'slot', 'would', 'not', 'fit', 'microsim', 'either', 'sim', 'convert', 'wrong', 'phone', 'nano', 'sim', 'small', 'microsim', 'big', 'regular', 'size', 'sim', 'card', 'slot', 'work', 'howev', 'phone', 'would', 'not', 'accept', 'project', 'fi', 'data', 'sim', 'reason', 'return', 'plan', 'use', 'phone', 'uber', 'need', 'data', 'would', 'not', 'recogn', 'sim', 'also', 'phone', 'bit', 'big', 'uber', 'even', 'cd', 'mount', 'think', 'sceen', 'phone', 'would', 'ideal', 'uber', 'thing', 'massiv', 'phone', 'small', 'tablet'], ['alway', 'retro', 'gi', 'joe', 'line', 'point', 'though', 'scale', 'vamp', 'perfect', 'departur', 'origin', 'color', 'addit', 'door', 'cheesi', 'rendit', 'rear', 'gun', 'slight', 'dissapoint', 'snake', 'armor', 'suit', 'awesom', 'depart', 'origin', 'toy', 'line', 'seri', 'suppos', 'repres', 'unfortun', 'hasbro', 'continu', 'leav', 'die', 'hard', 'joe', 'fan', 'want'], ['big', 'expect', 'ok', 'get', 'use'], ['look', 'realli', 'big', 'phone', 'found', 'phone', 'beyond', 'adequ', 'need', 'nice', 'clear', 'bright', 'screen', 'fast', 'lag', 'easi', 'set', 'complaint', 'sound', 'not', 'loud', 'not', 'beat', 'price', 'satisfi'], ['call', 'block', 'way', 'big', 'auto', 'correct', 'not', 'atroci', 'not', 'turn', 'even', 'take', 'proper', 'step', 'turn', 'avoid', 'phone', 'cheap', 'knockoff'], ['i', 'keep'], ['order', 'two', 'blue', 'studio', 'phone', 'spous', 'pleas', 'phone', 'everyth', 'expect', 'con', 'phone', 'camera', 'megapixel', 'flash', 'back', 'camera', 'pretti', 'awesom', 'phone', 'person', 'enjoy', 'big', 'phone', 'like'], ['love', 'everyth'], ['phone', 'not', 'reciev', 'sim', 'card'], ['ok', 'far'], ['good', 'phablet', 'son', 'want'], ['impress'], ['took', 'phone', 'offic', 'not', 'abl', 'connect', 'cell', 'servic', 'phone', 'appar', 'lock', 'advertis', 'unlock', 'disappoint', 'end', 'purchas', 'samsung', 'galaxi', 'servic', 'provid'], ['dose', 'not', 'get', 'good', 'servic'], ['optimum', 'combin', 'tablet', 'cellphon'], ['great', 'phone', 'not', 'not', 'pay', 'huge', 'cost', 'iphon', 'samsung', 'everyth', 'much', 'lower', 'cost', 'say', 'camera', 'not', 'impress', 'enorm', 'longev', 'batteri', 'make', 'minor', 'inconveni', 'sinc', 'buy', 'phone', 'find', 'use', 'tablet', 'laptop', 'lot', 'less', 'size', 'phone'], ['excel'], ['work', 'great', 'love', 'everi', 'littl', 'thing', 'everyth', 'want', 'phone'], ['great', 'phone', 'price', 'much', 'styli', 'blu', 'studio', 'use', 'like', 'tablet', 'becuas', 'excel', 'take', 'note', 'meet', 'use', 'keyboard', 'load', 'googl', 'play', 'take', 'note', 'easili', 'great', 'tether', 'use', 'work', 'instead', 'compani', 'internet', 'track', 'recept', 'great', 'phone', 'call', 'eleg', 'styli', 'price', 'keep', 'plug', 'i', 'not', 'move', 'around', 'preform', 'like', 'much', 'expens', 'devic', 'keep', 'leather', 'case', 'drop', 'mine', 'numer', 'time', 'not', 'broken', 'leather', 'case'], ['item', 'good', 'condit'], ['great', 'product', 'money', 'easi', 'read', 'navig', 'tnc', 'drive', 'pax', 'around'], ['hell', 'never', 'buy', 'phone'], ['thank'], ['got', 'work', 'take', 'second', 'opinion', 'work', 'great', 'happi', 'get', 'phone', 'allot', 'quit', 'funni', 'may', 'say', 'wish', 'louder', 'speaker', 'use', 'great', 'larg', 'phone', 'worth', 'buy'], ['broke', 'within', 'first', 'week'], ['good'], ['got', 'today', 'not', 'charg', 'i', 'definit', 'send', 'back'], ['far', 'phone', 'goe', 'suck', 'scree', 'look', 'like', 'go', 'go', 'moment', 'happen', 'coupl', 'day', 'got', 'phone', 'went', 'sim', 'card', 'phone', 'still', 'tell', 'sim', 'card', 'plug', 'know', 'someth', 'wrong', 'phone'], ['bought', 'gift', 'bday', 'may', 'juli', 'past', 'return', 'period', 'serious', 'babi', 'phone', 'taken', 'extrem', 'good', 'care', 'howev', 'today', 'reason', 'began', 'turn', 'reset', 'everyth', 'lost', 'inform', 'half', 'screen', 'button', 'navig', 'phone', 'not', 'show', 'buy', 'new', 'phone', 'today', 'bet', 'not', 'blu'], ['piec', 'garbag', 'not', 'wast', 'money', 'laggi', 'son', 'card', 'funni', 'screen', 'sensit', 'aw', 'buy', 'tracfon', 'happier'], ['want', 'refund', 'lost', 'phone'], ['worst', 'phone', 'ever', 'product', 'not', 'deserv', 'star', 'extrem', 'disappoint', 'phone', 'speaker', 'low', 'hard', 'hear', 'ring', 'hard', 'hear', 'caller', 'next', 'line', 'also', 'also', 'hard', 'hear', 'music', 'play', 'phone', 'phone', 'use', 'phone', 'includ', 'ordinari', 'phone', 'not', 'touch', 'screen', 'work', 'much', 'better', 'phone', 'speaker', 'much', 'louder', 'purchas', 'new', 'phone', 'cours', 'differ', 'creat', 'phone', 'custom', 'not', 'hard', 'hear', 'point', 'phone', 'speaker', 'extrem', 'low', 'ridicul'], ['second', 'blu', 'phone', 'love', 'phone', 'want', 'kind', 'disappoint', 'thing', 'camera', 'flash', 'case', 'first', 'blu', 'case', 'screen', 'protector', 'wish', 'case', 'overal', 'phone', 'awesom', 'love', 'lite', 'camera', 'not', 'bad', 'even', 'not', 'come', 'flash', 'game', 'work', 'good', 'batteri', 'life', 'not', 'bad', 'last', 'day', 'nice', 'job', 'blu', 'know', 'need', 'nice', 'case', 'straight', 'talk', 'put', 'sim', 'card', 'work', 'wright', 'away', 'satisfi', 'phone', 'deliveri', 'fast', 'wish', 'memori', 'not', 'much', 'still', 'choic', 'sd', 'card', 'not', 'bad', 'recommend', 'product'], ['bigger', 'expect', 'like', 'anyway'], ['love', 'blu', 'phablet', 'high', 'recommend', 'item'], ['never', 'buy'], ['unit', 'take', 'sim', 'card', 'work', 'sim', 'eat', 'sim', 'card', 'not', 'fit', 'not', 'open', 'unit', 'recov', 'sim', 'call', 'compani', 'pleasant', 'return', 'amazon', 'problem'], ['love'], ['purchas', 'phone', 'alway', 'mess', 'camera', 'awe'], ['love', 'wil', 'buy'], ['receiv', 'yesterday', 'color', 'bright', 'vivid', 'setup', 'easi', 'ya', 'free', 'home', 'recommend', 'let', 'updat', 'tri', 'activ', 'cell', 'provid', 'exactali', 'look', 'satisfi', 'far', 'issu', 'updat', 'review'], [], ['keep', 'freez'], ['thank'], ['good', 'budget', 'devic', 'purchas', 'friend', 'travel', 'dialysi', 'time', 'per', 'week', 'good', 'devic', 'need', 'use', 'brows', 'web', 'send', 'sms', 'make', 'call', 'occas', 'complain', 'batteri', 'not', 'last', 'long', 'would', 'like', 'screen', 'huge', 'expect', 'budget', 'devic', 'said', 'bargain'], ['ok'], ['hate', 'i', 'tri', 'send', 'back', 'not', 'phone', 'tablet', 'big', 'not', 'even', 'hold', 'hand'], ['best', 'tablet', 'phone', 'ever', 'purchas', 'watch', 'kind', 'movi', 'video', 'went', 'beyond', 'thought', 'would', 'look', 'like', 'thank', 'amazon', 'blu', 'devic', 'pc', 'phone'], ['great', 'phone', 'tad', 'bit', 'big'], ['excel', 'time', 'star'], ['thank'], ['best', 'purchas', 'made', 'order', 'two', 'imagin', 'excel', 'phone'], ['could', 'give', 'phone', 'compani', 'zero', 'would', 'phone', 'mani', 'glitch', 'get', 'pay', 'call', 'support', 'team', 'get', 'issu', 'fix', 'noth', 'work', 'next', 'step', 'set', 'warranti', 'claim', 'send', 'phone', 'week', 'either', 'fix', 'issu', 'send', 'refurbish', 'phone', 'whole', 'time', 'find', 'replac', 'phone', 'screw', 'one', 'decid', 'purchas', 'piec', 'crap', 'get', 'separ', 'insur', 'blu', 'might', 'well', 'not', 'offer', 'one', 'year', 'warranti', 'useless'], ['monster', 'good', 'wife', 'love', 'ppl', 'keep', 'say', 'tablet', 'good', 'boss', 'phone', 'love'], ['love', 'phone', 'come', 'damag', 'front', 'camera', 'light', 'not', 'work'], ['bought', 'phablet', 'refurbish', 'amaz', 'new', 'look', 'i', 'realli', 'like', 'phone', 'inch', 'tablet', 'worri', 'inch', 'tablet', 'would', 'awkward', 'use', 'phone', 'find', 'not', 'problem', 'i', 'not', 'gamer', 'not', 'care', 'stream', 'video', 'music', 'phone', 'make', 'call', 'text', 'take', 'send', 'pictur', 'occasion', 'get', 'onlin', 'i', 'away', 'home', 'phablet', 'everyth', 'need'], ['love', 'new', 'blu', 'studio', 'phone', 'thank'], ['simpli', 'outrag', 'phone', 'bomb'], ['love', 'phone', 'amaz', 'phone'], ['ok'], ['not', 'worth', 'money', 'nice', 'look', 'phone', 'great', 'size', 'mean', 'phone', 'not', 'produc', 'camera', 'resolut', 'aw', 'flash', 'download', 'take', 'forev', 'constant', 'buffer', 'worst', 'phablet', 'i', 'ever', 'purchas', 'wish', 'would', 'bought', 'anoth', 'posh', 'lte', 'least', 'pictur', 'terrif', 'not', 'buffer', 'quit', 'often', 'look', 'cheap', 'phone', 'larg', 'screen', 'give', 'kid', 'enjoy', 'game', 'bingo', 'phone', 'perfect', 'not', 'wast', 'time', 'especi', 'money', 'phone'], ['grate', 'good', 'phone'], ['love', 'phone', 'day', 'front', 'camera', 'disap', 'back', 'camera', 'dark', 'i', 'realli', 'disappoint', 'camera'], ['far', 'good', 'enjoy', 'hope', 'last', 'friend', 'admir', 'plan', 'get', 'one', 'peopl', 'give', 'tri'], ['nice', 'phone'], ['ok', 'speaker', 'suck'], ['work', 'great', 'i', 'pleas', 'receiv', 'two', 'day'], ['bigger', 'expect', 'like', 'anyway'], ['love'], ['order', 'two', 'blue', 'studio', 'phone', 'spous', 'pleas', 'phone', 'everyth', 'expect', 'con', 'phone', 'camera', 'megapixel', 'flash', 'back', 'camera', 'pretti', 'awesom', 'phone', 'person', 'enjoy', 'big', 'phone', 'like'], ['impress', 'phone', 'not', 'sure', 'first', 'size', 'kindl', 'respons', 'quick', 'easi', 'set', 'straight', 'talk', 'recommend'], ['took', 'phone', 'offic', 'not', 'abl', 'connect', 'cell', 'servic', 'phone', 'appar', 'lock', 'advertis', 'unlock', 'disappoint', 'end', 'purchas', 'samsung', 'galaxi', 'servic', 'provid'], ['big', 'phone', 'gone', 'take', 'get', 'use'], ['nice', 'fast', 'shipment', 'thank'], ['broke', 'within', 'first', 'week'], ['week', 'own', 'phone', 'longer', 'would', 'take', 'charg', 'return', 'request', 'new', 'one', 'two', 'week', 'later', 'would', 'not', 'take', 'charg', 'camera', 'horribl', 'not', 'flash'], ['ok', 'like'], ['phablet', 'christma', 'gift', 'order', 'new', 'told', 'expect', 'arriv', 'arriv', 'time', 'manner', 'i', 'love', 'use', 'great', 'morn', 'sim', 'card', 'insid', 'not', 'detect', 'tri', 'anoth', 'card', 'not', 'detect', 'either', 'use', 'last', 'night', 'problem', 'call', 'compani', 'blu', 'got', 'suggest', 'use', 'wireless', 'updat', 'said', 'softwar', 'date', 'told', 'factori', 'reset', 'tri', 'card', 'remov', 'sd', 'card', 'reset', 'set', 'still', 'not', 'detect', 'sim', 'card', 'look', 'site', 'return', 'polici', 'would', 'not', 'know', 'return', 'polici', 'said', 'yesterday', 'januari', 'last', 'day', 'return', 'conveni', 'appoint', 'come', 'requir', 'make', 'phone', 'call', 'phone', 'call', 'short', 'notic', 'not', 'purchas', 'taken', 'light', 'i', 'not', 'posit', 'swift', 'replac', 'blu', 'cover', 'replac', 'sim', 'slot', 'not', 'get', 'devic', 'back', 'would', 'get', 'differ', 'one', 'model', 'might', 'not', 'brand', 'new', 'might', 'refurbish', 'not', 'like', 'odd', 'rotten', 'christma', 'gift'], ['love', 'phone', 'big', 'awesom', 'phone', 'far', 'issu', 'week', 'great', 'price'], ['thank'], ['got', 'work', 'take', 'second', 'opinion', 'work', 'great', 'happi', 'get', 'phone', 'allot', 'quit', 'funni', 'may', 'say', 'wish', 'louder', 'speaker', 'use', 'great', 'larg', 'phone', 'worth', 'buy'], ['not', 'like', 'phone', 'volum', 'not', 'work', 'alway', 'chang', 'middl', 'convers'], ['great', 'phone', 'everyth', 'need', 'come', 'ding', 'case', 'i', 'sure', 'could', 'return', 'not', 'worth', 'hassl', 'guess', 'might', 'return', 'item'], ['far', 'good', 'enjoy', 'hope', 'last', 'friend', 'admir', 'plan', 'get', 'one', 'peopl', 'give', 'tri'], ['love', 'new', 'blu', 'studio', 'ii', 'thing', 'problem', 'screen', 'bright', 'even', 'lowest', 'set', 'bright', 'pain', 'use', 'dark', 'long', 'period', 'time', 'lose', 'batteri', 'pretti', 'quick', 'not', 'bad', 'front', 'camera', 'terribl', 'back', 'one', 'not', 'bad', 'tell', 'maker', 'blu', 'studio', 'skimp', 'good', 'thing', 'sinc', 'blu', 'big', 'text', 'easi', 'see', 'easi', 'text', 'even', 'though', 'massiv', 'phone', 'easi', 'grip', 'not', 'heavi', 'weigh', 'mayb', 'even', 'less', 'htc', 'desir', 'rubber', 'case', 'light'], ['ok'], ['hate', 'phone', 'not', 'hear', 'could', 'not', 'figur', 'rington', 'would', 'turn', 'reason'], ['back', 'camera', 'stop', 'work'], ['good'], ['reboot', 'use', 'navig', 'i', 'lyft', 'driver'], ['like', 'big', 'ph', 'not', 'fit', 'pocket', 'youalso', 'love', 'real', 'slow', 'internetthi', 'ph', 'g', 'internet', 'like', 'gthe', 'simpl', 'use', 'slowi', 'bought', 'daller', 'kyocera', 'wall', 'mart', 'blue', 'equal', 'daller', 'walk', 'mart', 'bt', 'not', 'ever', 'buy', 'eather'], ['great', 'phone', 'love', 'phone'], ['i', 'glad', 'not', 'write', 'review', 'soon', 'got', 'phone', 'would', 'given', 'five', 'month', 'camera', 'button', 'choos', 'front', 'rear', 'face', 'camera', 'disappear', 'never', 'return', 'function', 'broken', 'keypad', 'tri', 'press', 'five', 'i', 'get', 'eight', 'instead', 'fiddl', 'around', 'press', 'five', 'frequent', 'give', 'two', 'instead', 'support', 'said', 'send', 'phone', 'phone', 'shop', 'commut', 'long', 'distanc', 'not', 'want', 'without', 'phone', 'blu', 'blu', 'major', 'qualiti', 'assur', 'problem', 'i', 'go', 'back', 'samsung'], ['good', 'valu', 'nice', 'camera', 'complaint'], ['love'], ['not', 'send', 'receiv', 'mms', 'messag', 'not', 'happi'], ['phone', 'great', 'get', 'everywher', 'plenti', 'space', 'screen', 'res', 'excel', 'realli', 'like', 'new', 'blu'], ['not', 'wast', 'money', 'month', 'phone', 'dead', 'fred', 'compani', 'not', 'respond', 'email', 'tri', 'post', 'review', 'amazon', 'blue', 'refus', 'allow'], ['phone', 'great', 'not', 'get', 'mms', 'work', 'network', 'provid', 'said', 'noth', 'els', 'someth', 'phone'], ['great', 'phone', 'price', 'bought', 'one', 'wife', 'i', 'think', 'tri', 'trade'], ['phone', 'work', 'great', 'easi', 'manag'], ['i', 'shock', 'good', 'phone', 'beauti', 'big', 'screen', 'fast', 'processor', 'huge', 'batteri', 'high', 'recommend', 'i', 'current', 'use', 'tmobil', 'servic', 'well', 'superb', 'great', 'buy', 'thank'], ['i', 'soni', 'xperia', 'user', 'saw', 'smartphon', 'said', 'not', 'absolut', 'ador', 'phone', 'pretti', 'cheap', 'work', 'great', 'love'], ['great', 'love'], ['receiv', 'blu', 'studio', 'c', 'week', 'fast', 'track', 'easi', 'far', 'phone', 'work', 'great', 'love', 'thank'], ['great', 'phone', 'price', 'beauti', 'mani', 'differ', 'color', 'oper', 'extrem', 'well', 'price', 'low', 'price', 'may', 'someth', 'durabl', 'phone', 'though', 'got', 'small', 'amount', 'water', 'screen', 'month', 'got', 'instant', 'ruin', 'immedi', 'put', 'rice', 'incid', 'left', 'quit', 'time', 'never', 'work', 'stand', 'mani', 'drop', 'still', 'work', 'fine', 'though', 'need', 'nice', 'phone', 'budget', 'would', 'high', 'recommend', 'one', 'keep', 'far', 'away', 'liquid'], ['order', 'daughter', 'love'], ['work', 'amaz'], ['qwerti', 'keypad', 'miser', 'keypad', 'appear', 'lower', 'normal', 'lead', 'lot', 'typo'], ['great', 'phone', 'batteri', 'fail', 'month'], ['recomendado', 'excelent'], ['excel', 'phone', 'money', 'everyth', 'need', 'batteri', 'life', 'great', 'board', 'manual', 'phone', 'not', 'come', 'instruct', 'book', 'need', 'better', 'descript', 'batteri', 'remov', 'one', 'thing', 'anoth', 'issu', 'batteri', 'readi', 'first', 'could', 'not', 'turn', 'phone', 'button', 'held', 'second', 'would', 'phone', 'recharg', 'attempt', 'remov', 'batteri', 'disconnect', 'discov', 'soft', 'batteri', 'not', 'normal', 'hard', 'case', 'type', 'left', 'fear', 'damag', 'said', 'phone', 'fulli', 'charg', 'function', 'batteri', 'defect', 'shutdown', 'issu', 'repeat', 'send', 'phone', 'back', 'replac', 'long', 'batteri', 'life', 'phone', 'good', 'bet'], ['problem', 'audio', 'poop', 'connect', 'speaker', 'headphon'], ['bought', 'wife', 'juli', 'well', 'past', 'weekend', 'phone', 'screen', 'mysteri', 'stop', 'work', 'hear', 'phone', 'notif', 'messag', 'come', 'call', 'hear', 'ring', 'vibrat', 'howev', 'screen', 'not', 'come', 'power', 'hold', 'power', 'button', 'phone', 'power', 'see', 'start', 'screen', 'boot', 'screen', 'fade', 'black', 'stop', 'work', 'tri', 'return', 'alreadi', 'outsid', 'window', 'replac', 'month', 'purchas', 'date', 'experienc', 'issu', 'know', 'resolv'], ['ok', 'ok'], ['phone', 'junk', 'bought', 'one', 'return', 'replac', 'replac', 'thing', 'kept', 'restart', 'way', 'contact', 'amazon', 'return', 'one', 'realli', 'felt', 'left', 'high', 'dri', 'purchas'], ['love', 'phone', 'perfect', 'everi', 'way', 'except', 'not', 'find', 'case', 'fit', 'anyon', 'purchas', 'phone', 'tell', 'find', 'one', 'silicon', 'one', 'work', 'ok', 'need', 'protect', 'great', 'phone', 'recommend', 'anyon'], ['excel'], ['exel', 'like'], ['pathet', 'blu', 'phone', 'stop', 'work', 'day', 'i', 'unabl', 'return', 'month', 'contact', 'blu', 'servic', 'desk', 'ask', 'fill', 'onlin', 'form', 'not', 'work', 'end', 'day', 'lost', 'buy', 'junk', 'phone'], ['devic', 'work', 'great', 'use', 'anoth', 'countri', 'perform', 'well'], ['excel', 'product', 'camera', 'kind', 'lazi'], ['go', 'pick', 'offic'], ['great', 'phone'], ['nice', 'budget', 'phone', 'plenti', 'featur', 'howev', 'miss', 'compass'], ['good', 'phone'], ['worst', 'phone', 'bought', 'year', 'bought', 'wife', 'not', 'want', 'spend', 'much', 'phone', 'bad', 'decis', 'within', 'hour', 'day', 'use', 'phone', 'heat', 'bad', 'crash', 'keep', 'reboot', 'return', 'would', 'spend', 'much', 'bought', 'phone', 'angola', 'would', 'not', 'recommend', 'anyon', 'buy', 'piec', 'garbag'], ['fantast', 'batteri', 'life', 'read', 'review', 'actual', 'purchas', 'saw', 'troubl', 'believ'], ['excel'], ['good', 'phone', 'price'], ['i', 'go', 'give', 'star', 'blu', 'phone', 'one', 'two', 'kid', 'drop', 'one', 'water', 'fix', 'last', 'awhil', 'gave', 'gave', 'first', 'one', 'studio', 'c', 'still', 'go', 'strong', 'got', 'c', 'well', 'negat', 'touch', 'screen', 'touchi', 'dial', 'text', 'still', 'great', 'phone', 'price', 'i', 'android', 'person', 'buy', 'blu'], ['love', 'phone', 'sometim', 'not', 'work', 'wood', 'area'], ['got', 'like', 'not', 'big'], ['love', 'everyth', 'phone', 'except', 'batteri', 'not', 'last', 'much', 'long', 'lot', 'app', 'know', 'run', 'batteri', 'faster', 'normal', 'general', 'phone', 'great', 'high', 'recommend', 'anyon', 'want', 'someth', 'afford', 'qualiti'], ['great', 'phone', 'not', 'problem', 'far'], ['great', 'price', 'everyth', 'work', 'well'], ['great', 'inexpens', 'smart', 'phone', 'realli', 'nice', 'look', 'compar', 'expens', 'brand', 'market', 'came', 'lollipop', 'android', 'say', 'gb', 'micro', 'sd', 'insert', 'use', 'gb', 'problem', 'initi', 'setup', 'allow', 'instal', 'mirror', 'imag', 'anoth', 'devic', 'like', 'android', 'tablet', 'copi', 'app', 'not', 'load', 'phone', 'work', 'fast', 'unlock', 'could', 'get', 'best', 'unlimit', 'plan', 'smart', 'talk', 'happi'], ['good', 'product', 'rate', 'offer', 'rate', 'mobil', 'offer', 'featur', 'also', 'mobil', 'realli', 'good'], ['phone', 'came', 'right', 'time', 'far', 'phone', 'not', 'send', 'receiv', 'pictur', 'overal', 'great', 'phone'], ['great', 'phone', 'less', 'money', 'get', 'appl', 'samsung', 'devic', 'everyth'], ['give', 'star', 'perform', 'phone', 'excel', 'consider', 'price', 'lte', 'os', 'lollipop', 'fast', 'respon', 'complaint', 'batteri', 'camera', 'not', 'expect', 'first', 'qualiti', 'price', 'paid'], ['disapoint', 'purchas', 'order', 'twice', 'phone', 'not', 'work', 'correct', 'issu', 'refund'], ['phone', 'fantast', 'break', 'bank', 'latest', 'model', 'cost', 'way', 'much', 'get', 'phone', 'fraction', 'price', 'hear', 'clear', 'game', 'run', 'great', 'batteri', 'life', 'fair', 'good', 'durabl', 'phone', 'feel', 'solid', 'side', 'not', 'lot', 'cover', 'one', 'found', 'work', 'realli', 'well', 'name', 'not', 'alway', 'show', 'search', 'realli', 'got', 'hunt', 'accessori', 'specif', 'model', 'option', 'two', 'sim', 'card', 'keep', 'busi', 'person', 'cell', 'phone', 'one', 'not', 'use', 'option', 'like', 'featur'], ['quick', 'receiv', 'great', 'product', 'good', 'qualiti', 'incred', 'low', 'price'], ['damag', 'cell', 'came', 'batteri', 'not', 'charg', 'alway', 'thus', 'not', 'use', 'comput', 'unhappi'], ['best', 'type', 'long', 'hour', 'durat'], ['nice', 'phone', 'price'], ['high', 'hope', 'product', 'blu', 'phone', 'excel', 'us', 'touch', 'screen', 'particular', 'devic', 'without', 'doubt', 'worst', 'ever', 'use', 'unpredict', 'regist', 'touch', 'caus', 'multipl', 'problem', 'text', 'game', 'play', 'even', 'caus', 'unintend', 'purchas', 'game', 'play', 'app', 'sluggish', 'frequent', 'jumbl', 'display', 'paus', 'load', 'bad', 'purchas'], ['fantast', 'batteri', 'life', 'read', 'review', 'actual', 'purchas', 'saw', 'troubl', 'believ'], ['well', 'phone', 'nice', 'look', 'feel', 'price'], ['well', 'look', 'basic', 'phone', 'call', 'text', 'i', 'sure', 'find', 'cheaper', 'phone', 'bad', 'i', 'not', 'even', 'use', 'write', 'review', 'know', 'crash', 'app', 'daili', 'slow', 'heavi', 'bad', 'phone'], ['love'], ['great', 'phone', 'ship', 'time', 'recommend'], ['phone', 'crash', 'week'], ['give', 'star', 'perform', 'phone', 'excel', 'consider', 'price', 'lte', 'os', 'lollipop', 'fast', 'respon', 'complaint', 'batteri', 'camera', 'not', 'expect', 'first', 'qualiti', 'price', 'paid'], ['bought', 'gift', 'turn', 'seem', 'work', 'great'], ['not', 'good', 'phone', 'sorri', 'say'], ['mani', 'problem', 'begin', 'not', 'expect', 'theglorifi', 'said'], ['excelent'], ['not', 'get', 'facebook', 'download', 'keep', 'get', 'error', 'whole', 'reason', 'got', 'phone', 'facebook', 'blu'], ['aunt', 'love', 'intern', 'cell', 'phone'], ['good', 'phone', 'work', 'fine', 'venezuela'], ['love', 'got', 'pretti', 'fast', 'look', 'great', 'order', 'gold', 'keyboard', 'problem', 'peopl', 'easili', 'fix', 'go', 'languag', 'input', 'turn', 'pointer', 'speed', 'recalibr', 'touch', 'sensor', 'camera', 'flash', 'bit', 'bright', 'realli', 'not', 'even', 'necessari', 'take', 'great', 'pictur', 'selfi', 'cam', 'includ', 'selfi', 'updat', 'post', 'pictur', 'phone', 'later', 'overal', 'great', 'pay', 'look', 'better', 'person'], ['believ', 'great', 'phone', 'cost', 'less', 'use', 'one', 'week', 'complain', 'fulli', 'recommend', 'doubt'], ['kool', 'phone'], ['i', 'litter', 'get', 'replac', 'phone', 'would', 'liter', 'stop', 'work', 'facebook', 'browser', 'happen', 'much', 'consist', 'call', 'phone', 'carrier', 'see', 'phone', 'realli', 'compat', 'carrier', 'turn', 'back', 'point', 'though', 'phone', 'liter', 'would', 'stop', 'work', 'throughout', 'day', 'liter', 'cut', 'data', 'connect', 'power', 'constant', 'even', 'replac', 'white', 'blu', 'studio', 'c', 'act', 'black', 'studio', 'c', 'far', 'work', 'better', 'color', 'white', 'one', 'mess', 'rest', 'work', 'perfect', 'fine', 'not', 'respond', 'back', 'last', 'question', 'guy', 'black', 'blu', 'studio', 'c', 'work', 'better', 'white', 'blu', 'studio', 'c'], ['bought', 'phone', 'use', 'oversea', 'work', 'also', 'easi', 'mom', 'use', 'price', 'good'], ['love', 'phone', 'close', 'friend', 'famili', 'saw', 'like', 'featur', 'price', 'big', 'sell'], ['right', 'phone'], ['one', 'best', 'phone', 'i', 'far', 'arriv', 'day', 'earli', 'thumb', 'love', 'size', 'color', 'time', 'put', 'littl', 'forc', 'push', 'button', 'easi', 'set', 'camera', 'definit', 'buy', 'one', 'kid', 'christma'], ['slight', 'buggi', 'camera', 'surpass', 'expect'], ['star', 'cost'], ['realli', 'hard', 'activ', 'sim', 'card', 'not', 'read', 'got', 'work', 'glad', 'i', 'good', 'technolog', 'nice', 'cheap', 'one', 'issu', 'speaker', 'sound', 'block', 'easili', 'rest', 'speaker', 'cover', 'finger', 'i', 'issu', 'know'], ['realli', 'good', 'phone', 'price', 'coupl', 'minor', 'thing', 'i', 'notic', 'screen', 'display', 'great', 'great', 'touch', 'slow', 'unrespons', 'compass', 'app', 'not', 'work', 'price', 'deliv', 'next', 'day', 'great', 'phone', 'fair', 'heavi', 'phone', 'user', 'work', 'well'], ['absolut', 'love', 'blu', 'great'], ['good', 'phone'], ['blu', 'phone', 'love', 'good', 'valu', 'take', 'great', 'photo'], ['pretti', 'decent', 'work', 'phone', 'complet', 'app', 'need', 'get', 'littl', 'hot', 'run', 'otherwis', 'work', 'well', 'insert', 'sd', 'card', 'expand', 'memori', 'glad', 'done', 'add'], ['nice', 'phone', 'bundl', 'gift', 'person', 'happi', 'insert', 'sim', 'card', 'phone', 'damag', 'one', 'start', 'right'], ['phone', 'complet', 'crap', 'chiinnaa', 'month', 'batteri', 'reduc', 'hrs', 'standbi', 'pictur', 'solut', 'bad', 'month', 'complet', 'not', 'charg', 'high', 'recommend', 'not', 'buy', 'not', 'mind', 'wast', 'money'], ['love', 'phone', 'batteri', 'life', 'not', 'great', 'longer', 'last', 'batteri', 'would', 'star', 'phone'], ['love', 'phone'], ['excel', 'phone', 'batteri', 'hard', 'enough', 'not', 'overheat'], ['not', 'worth', 'phone', 'complet', 'shut', 'lost', 'famili', 'member', 'wed', 'photo', 'babi', 'shower', 'nephew', 'total', 'bs'], ['phone', 'met', 'expect', 'not', 'fastest', 'money', 'not', 'beat'], ['bought', 'use', 'oversea', 'not', 'know', 'would', 'realli', 'work', 'pick', 'signal', 'network', 'sim', 'part', 'batteri', 'typic', 'size', 'cost', 'phone', 'bad', 'part', 'phone', 'inexpens', 'realli', 'feel', 'respond', 'way', 'main', 'problem', 'touch', 'screen', 'hard', 'press', 'one', 'intent', 'press', 'appli', 'direct', 'pressur', 'phone', 'not', 'use', 'one', 'hand', 'second', 'major', 'problem', 'screen', 'digit', 'not', 'configur', 'align', 'proper', 'one', 'press', 'slight', 'charact', 'want', 'actual', 'pick', 'intend', 'not', 'two', 'major', 'problem', 'phone', 'would', 'steal', 'right', 'hassl', 'use'], ['good', 'great', 'phone', 'depend', 'user', 'bought', 'travel', 'abroad', 'need', 'gsm', 'phone', 'could', 'use', 'countri', 'peopl', 'call', 'local', 'still', 'access', 'regular', 'phone', 'reason', 'gave', 'rang', 'seem', 'bit', 'slow', 'given', 'use', 'much', 'faster', 'phone', 'regular', 'one', 'serv', 'would', 'recommend', 'phone', 'anyon', 'travel', 'abroad', 'want', 'local', 'number'], ['purchas', 'friend', 'like', 'alot', 'thank'], ['phone', 'work', 'great', 'phone', 'carrier', 'use'], ['gracia', 'muy', 'bueno'], ['phone', 'defect', 'look', 'review', 'late', 'return', 'gift', 'dad', 'not', 'work', 'w', 'tmobil', 'well'], ['excelent'], ['i', 'rate', 'two', 'star', 'base', 'batteri', 'inconsist', 'volum', 'notif', 'lose', 'percentag', 'point', 'batteri', 'everi', 'two', 'minut', 'basic', 'give', 'hour', 'usag', 'includ', 'standbi', 'time', 'turn', 'screen', 'way', 'help', 'bit', 'made', 'hard', 'use', 'phone', 'outsid', 'addit', 'volum', 'seem', 'stay', 'one', 'level', 'regardless', 'whether', 'adjust', 'volum', 'furthermor', 'phone', 'notifi', 'everyth', 'time', 'serious', 'could', 'walk', 'rang', 'wifi', 'network', 'say', 'home', 'would', 'beep', 'vibrat', 'time', 'realli', 'annoy', 'end', 'not', 'like', 'lumia', 'moto', 'seem', 'better', 'phone', 'price', 'rang', 'batteri', 'last', 'much', 'longer', 'day', 'compar', 'hour', 'noth', 'blu', 'thought', 'build', 'nice', 'design', 'appeal', 'hardwar', 'not', 'snuff', 'today', 'competit'], ['love', 'phone', 'batteri', 'life', 'not', 'great', 'longer', 'last', 'batteri', 'would', 'star', 'phone'], ['great', 'product', 'price', 'bought', 'friend', 'realli', 'happi'], ['phone', 'blow', 'other', 'away', 'lag', 'freez', 'sometim', 'bunch', 'app', 'could', 'play', 'phone', 'figur', 'hard', 'snapchat', 'bare', 'work', 'row', 'home', 'button', 'bottom', 'work', 'take', 'littl', 'get', 'use', 'overal', 'love', 'phone', 'got', 'orang', 'everyon', 'describ', 'definit', 'orang', 'af', 'case', 'came', 'also', 'orang', 'surpris', 'help', 'i', 'drop', 'sucker', 'lot', 'case', 'save', 'extra', 'buy', 'blu', 'selfi', 'newer', 'one', 'work', 'better', 'googl', 'blu', 'phone', 'see'], ['make', 'blu', 'fell', 'love', 'first', 'one', 'even', 'happier', 'one', 'product', 'practic', 'sell', 'high', 'perform', 'qualiti', 'great', 'price', 'better', 'competitor', 'also', 'look', 'forward', 'busi', 'seller', 'everyth', 'work', 'perfect', 'even', 'earli', 'deliveri', 'time', 'could', 'not', 'better'], ['great', 'phone', 'daughter', 'jamaica', 'negat', 'not', 'read', 'flow', 'digicel', 'local', 'carrier', 'sim', 'card', 'unlock', 'phone', 'suck', 'think', 'unlock', 'gsm', 'carrier', 'us', 'network', 'sim', 'card', 'tri', 'metro', 'pcs', 'sim', 'jamaica', 'read'], ['read', 'review', 'differ', 'phone', 'christma', 'present', 'love', 'want', 'featur', 'phone', 'not', 'want', 'spend', 'small', 'fortun', 'phone', 'yr', 'old', 'surpris', 'got', 'well', 'made', 'phone', 'come', 'everyth', 'need'], ['happi', 'product', 'price', 'ship'], ['recommend'], ['horribl', 'phone', 'mess', 'within', 'week', 'time'], ['excel'], ['best', 'type', 'long', 'hour', 'durat'], ['blu', 'phone', 'love', 'good', 'valu', 'take', 'great', 'photo'], ['not', 'press', 'button', 'correct', 'call', 'number', 'press', 'lag', 'slow', 'phone', 'turn', 'airplan', 'mode'], ['good', 'básic', 'phone'], ['look', 'good', 'work', 'perfect'], ['realli', 'impress', 'phone', 'work', 'cheap', 'phone', 'realli', 'lot', 'pricey', 'super', 'slim', 'come', 'silicon', 'case', 'protect', 'cornersth', 'speaker', 'phone', 'loud', 'nice', 'use', 'android', 'base', 'decent', 'camera', 'fast', 'enough', 'processor', 'tech', 'junki', 'best', 'best', 'not', 'like', 'play', 'simpl', 'game', 'use', 'app', 'like', 'facebook', 'phone', 'perfect', 'could', 'not', 'happier', 'type', 'phone', 'continu', 'buy', 'save', 'big', 'buck', 'import', 'thing'], ['excel', 'phone', 'batteri', 'hard', 'enough', 'not', 'overheat'], ['love', 'iy'], ['nice', 'phone', 'mani', 'new', 'app', 'set'], ['everyth', 'expect'], ['love'], ['love'], ['best', 'type', 'long', 'hour', 'durat'], ['purchas', 'husband', 'realli', 'pleas'], ['work', 'great', 'love', 'phone'], ['pretti', 'good', 'phone'], ['excel', 'phone', 'low', 'price', 'reqd', 'featur'], ['year', 'old', 'nephew', 'happi', 'text', 'good', 'starter', 'phone', 'seem', 'work', 'great'], ['love', 'phone', 'close', 'friend', 'famili', 'saw', 'like', 'featur', 'price', 'big', 'sell'], ['great', 'phone'], ['last', 'two', 'blu', 'phone', 'alright', 'none', 'carri', 'lte', 'speed', 'final', 'studio', 'c', 'lte', 'give', 'speed', 'storag', 'space', 'need'], ['i', 'rate', 'two', 'star', 'base', 'batteri', 'inconsist', 'volum', 'notif', 'lose', 'percentag', 'point', 'batteri', 'everi', 'two', 'minut', 'basic', 'give', 'hour', 'usag', 'includ', 'standbi', 'time', 'turn', 'screen', 'way', 'help', 'bit', 'made', 'hard', 'use', 'phone', 'outsid', 'addit', 'volum', 'seem', 'stay', 'one', 'level', 'regardless', 'whether', 'adjust', 'volum', 'furthermor', 'phone', 'notifi', 'everyth', 'time', 'serious', 'could', 'walk', 'rang', 'wifi', 'network', 'say', 'home', 'would', 'beep', 'vibrat', 'time', 'realli', 'annoy', 'end', 'not', 'like', 'lumia', 'moto', 'seem', 'better', 'phone', 'price', 'rang', 'batteri', 'last', 'much', 'longer', 'day', 'compar', 'hour', 'noth', 'blu', 'thought', 'build', 'nice', 'design', 'appeal', 'hardwar', 'not', 'snuff', 'today', 'competit'], ['good', 'far', 'lot', 'smaller', 'expect', 'blue', 'one', 'bigger', 'good', 'phone', 'non', 'less'], ['pick', 'blu', 'studio', 'c', 'lte', 'use', 'varieti', 'samsung', 'phone', 'wife', 'realli', 'like', 'size', 'perform', 'galaxi', 'grand', 'prime', 'decid', 'pass', 'pick', 'use', 'spec', 'similar', 'thought', 'would', 'worth', 'tri', 'less', 'almost', 'month', 'proven', 'worthi', 'coupl', 'thing', 'make', 'want', 'upgrad', 'anoth', 'blu', 'model', 'would', 'like', 'larger', 'batteri', 'samsung', 'vs', 'seem', 'less', 'memori', 'avail', 'lollipop', 'load', 'samsung', 'notic', 'screen', 'littl', 'finicki', 'touch', 'seem', 'most', 'hand', 'consid', 'move', 'phone', 'memori', 'life', 'xl', 'life', 'one', 'x', 'put', 'shelf', 'backup', 'would', 'not', 'hesit', 'purchas', 'anoth', 'blu', 'product'], ['best', 'type', 'long', 'hour', 'durat'], ['phone', 'somebodi', 'work', 'great', 'thank', 'case', 'screen', 'protector', 'defin', 'buy'], ['phone', 'layout', 'alreadi', 'bad', 'keyboard', 'take', 'half', 'screen', 'use', 'like', 'search', 'around', 'find', 'keyboard', 'app', 'smaller', 'keyboard', 'second', 'phone', 'touch', 'respons', 'way', 'exampl', 'snapchat', 'forget', 'draw', 'letter', 'anyth', 'matter', 'fluke', 'also', 'effect', 'type', 'especi', 'swype', 'type', 'anyth', 'take', 'longer', 'normal', 'use', 'excel', 'grammar', 'spell', 'phone', 'reduc', 'use', 'slang', 'like', 'r', 'not', 'worth', 'stress', 'tri', 'type', 'nice', 'messag', 'also', 'phone', 'batteri', 'heat', 'quick', 'make', 'phone', 'crap', 'phone', 'alreadi', 'glitchi', 'someon', 'littl', 'patienc', 'definit', 'not', 'buy', 'batteri', 'heat', 'though', 'get', 'much', 'wors', 'sometim', 'phone', 'even', 'shut', 'phone', 'terribl', 'not', 'good', 'invest', 'unless', 'readi', 'poni', 'money', 'month', 'better', 'phone', 'one', 'drive', 'insan'], ['work', 'good', 'wish', 'blu', 'would', 'upgrad', 'marshmallow'], ['great', 'phone', 'work', 'wonder'], ['batteri', 'not', 'hold', 'charg', 'even', 'one', 'day', 'realli', 'unhappi', 'item', 'blu', 'phone', 'larger', 'batteri', 'held', 'charg', 'sometim', 'day', 'one', 'useless', 'wish', 'not', 'bought'], ['great', 'phone', 'quick', 'deliveri', 'not', 'beat', 'price', 'work', 'like', 'galaxi', 'way', 'cheaper'], ['heat', 'pretti', 'quick', 'often', 'restart', 'data', 'work', 'freez', 'lot'], ['bee', 'use', 'sinc', 'month', 'ago', 'blu', 'phone', 'top', 'brand', 'appl', 'samsung', 'kudo', 'blu', 'team', 'use', 'south', 'america'], ['phone', 'problem', 'charger', 'not', 'work', 'right', 'power', 'button', 'not', 'work', 'time', 'need', 'view', 'messag', 'push', 'power', 'button', 'not', 'turn', 'alway', 'plug', 'charger', 'real', 'quick', 'take', 'see', 'screen', 'light', 'die', 'complet', 'say', 'fulli', 'charg', 'need', 'turn', 'phone', 'hold', 'power', 'button', 'not', 'turn'], ['not', 'want', 'go', 'troubl', 'return', 'signal', 'alway', 'none', 'bluetooth', 'devic', 'abl', 'connect', 'model', 'not', 'first', 'blu', 'phone', 'realli', 'say', 'sure', 'got', 'paid', 'time', 'around', 'i', 'not', 'big', 'phone', 'tech', 'still', 'would', 'not', 'recommend', 'phone', 'anyon'], ['i', 'not', 'sure', 'phone', 'send', 'back', 'could', 'not', 'hear', 'ppl', 'call', 'earpiec', 'vol', 'low', 'even', 'turn', 'max'], ['love', 'phone', 'close', 'friend', 'famili', 'saw', 'like', 'featur', 'price', 'big', 'sell'], ['good', 'work', 'grate'], ['great', 'phone', 'price', 'purchas', 'msd', 'card', 'abl', 'load', 'test', 'mani', 'app', 'time', 'respond', 'extrem', 'fast', 'consid', 'total', 'cost', 'good', 'lg'], ['bee', 'use', 'sinc', 'month', 'ago', 'blu', 'phone', 'top', 'brand', 'appl', 'samsung', 'kudo', 'blu', 'team', 'use', 'south', 'america'], ['good', 'phone', 'work', 'fine', 'venezuela'], ['excellet', 'phone'], ['phone', 'keep', 'overh', 'even', 'sometim', 'i', 'not', 'use'], ['year', 'old', 'nephew', 'happi', 'text', 'good', 'starter', 'phone', 'seem', 'work', 'great'], ['blu', 'phone', 'love', 'good', 'valu', 'take', 'great', 'photo'], ['purchas', 'phone', 'use', 'remot', 'control', 'camera', 'phone', 'work', 'fine', 'complain', 'test', 'board', 'cam', 'sovideo', 'not', 'best', 'qualiti', 'system', 'ok', 'stabl', 'dislik', 'android', 'phone', 'one', 'need', 'ah', 'play', 'nice', 'game', 'not', 'hang', 'crash', 'app', 'front', 'cam', 'wide', 'enough', 'peopl', 'take', 'selfi', 'last'], ['awesom', 'smart', 'phone', 'run', 'lightn', 'quick', 'surpris', 'durabl', 'look', 'decent', 'best', 'ton', 'memori', 'garbag', 'restrict'], ['product', 'came', 'faster', 'expect', 'recommend'], ['love', 'phone'], ['good'], ['worst', 'phone', 'ever', 'simpli', 'worst'], ['phone', 'problem', 'charger', 'not', 'work', 'right', 'power', 'button', 'not', 'work', 'time', 'need', 'view', 'messag', 'push', 'power', 'button', 'not', 'turn', 'alway', 'plug', 'charger', 'real', 'quick', 'take', 'see', 'screen', 'light', 'die', 'complet', 'say', 'fulli', 'charg', 'need', 'turn', 'phone', 'hold', 'power', 'button', 'not', 'turn'], ['problem', 'use', 'buy', 'travel', 'africa'], ['power', 'button', 'fell', 'month'], ['love'], ['love', 'phone'], ['great', 'phone', 'fast', 'ship'], ['pick', 'blu', 'studio', 'c', 'lte', 'use', 'varieti', 'samsung', 'phone', 'wife', 'realli', 'like', 'size', 'perform', 'galaxi', 'grand', 'prime', 'decid', 'pass', 'pick', 'use', 'spec', 'similar', 'thought', 'would', 'worth', 'tri', 'less', 'almost', 'month', 'proven', 'worthi', 'coupl', 'thing', 'make', 'want', 'upgrad', 'anoth', 'blu', 'model', 'would', 'like', 'larger', 'batteri', 'samsung', 'vs', 'seem', 'less', 'memori', 'avail', 'lollipop', 'load', 'samsung', 'notic', 'screen', 'littl', 'finicki', 'touch', 'seem', 'most', 'hand', 'consid', 'move', 'phone', 'memori', 'life', 'xl', 'life', 'one', 'x', 'put', 'shelf', 'backup', 'would', 'not', 'hesit', 'purchas', 'anoth', 'blu', 'product'], ['work', 'perfect'], ['great', 'price', 'everyth', 'work', 'well'], ['thorough', 'search', 'decid', 'make', 'phone', 'choic', 'color', 'descript', 'true', 'advertis', 'fault', 'could', 'find', 'batteri', 'need', 'charg', 'often', 'even', 'though', 'not', 'use', 'phone', 'regular', 'still', 'would', 'recommend', 'price', 'reason'], ['phone', 'realli', 'rock', 'problem', 'found', 'type', 'text', 'messag', 'keyboard', 'stop', 'work', 'middl', 'word', 'download', 'extern', 'keyboard', 'fix', 'problem', 'price', 'still', 'excel', 'phone', 'recommend'], ['far', 'love'], ['order', 'blue', 'studio', 'c', 'mini', 'januari', 'work', 'fine', 'week', 'not', 'keep', 'charg', 'not', 'perform', 'various', 'goe', 'dead', 'matter', 'minut', 'not', 'happi', 'spent', 'approxim', 'dollar', 'buy', 'new', 'phone', 'week', 'order', 'date', 'jan', 'order', 'name', 'carmin', 'sanecchiaro', 'email', 'bought', 'mani', 'product', 'not', 'anyth', 'never', 'buy', 'anyth', 'not', 'want', 'tell', 'realli', 'feel', 'not', 'nice'], ['i', 'not', 'happi', 'phone', 'keyboard', 'not', 'work', 'sinc', 'first', 'day'], ['phone', 'buy', 'look', 'budget', 'phone', 'run', 'almost', 'anyth', 'thorw', 'not', 'much', 'letdown', 'ok', 'daili', 'use', 'mode'], ['excel'], ['excelent'], ['excel'], ['like', 'phone', 'still', 'troubl', 'download', 'photo', 'messag'], ['excel', 'product', 'recommend'], ['good'], ['love', 'phone', 'everyth', 'advertis', 'bit', 'matter', 'fact', 'sinc', 'mine', 'yo', 'daughter', 'decid', 'want', 'one', 'even', 'though', 'newest', 'phone', 'moto', 'g', 'month', 'old'], ['excel'], ['excel', 'phone', 'enjoy', 'lot', 'sinc', 'receiv', 'made', 'good', 'buy', 'great', 'blu', 'product', 'thank', 'much'], ['great', 'phone', 'price'], ['far', 'love'], ['bought', 'sell', 'countri', 'not', 'receiv', 'complaint', 'guess', 'excel'], ['good'], ['first', 'smart', 'phone', 'wish', 'gotten', 'one', 'sooner', 'one', 'typic', 'not', 'beat', 'thet', 'price'], ['excelent'], ['good', 'cel'], ['great', 'phone', 'look', 'act', 'like', 'samsung', 'not', 'know', 'anyon', 'would', 'pay', 'extra', 'brand', 'go', 'month', 'blu', 'phone', 'still', 'love'], ['girlfriend', 'side', 'side', 'comparis', 'inpress', 'get', 'good', 'product', 'good', 'price', 'camera', 'better', 'would', 'star'], ['love', 'phone', 'everyth', 'advertis', 'bit', 'matter', 'fact', 'sinc', 'mine', 'yo', 'daughter', 'decid', 'want', 'one', 'even', 'though', 'newest', 'phone', 'moto', 'g', 'month', 'old'], ['fast'], ['good', 'cheap', 'phone', 'expect'], ['wifi', 'connect'], ['great', 'phonenic', 'look', 'feel', 'comfortableit', 'cool', 'phone', 'come', 'case', 'screen', 'protectorhead', 'phone', 'usb', 'good', 'qualiti', 'love', 'flat', 'wire', 'useth', 'touch', 'smoothstream', 'hour', 'stoppingok', 'batteri', 'lifelast', 'day', 'receiv', 'make', 'call', 'lot', 'less', 'mess', 'daydec', 'camera', 'clean', 'enough', 'i', 'photographerus', 'friend', 'one', 'get', 'hang', 'itit', 'take', 'beat', 'trust', 'tough', 'phonepretti', 'good', 'sound', 'qualiti', 'watch', 'movi', 'comfort', 'wife', 'head', 'phone', 'hear', 'clearlygreat', 'phone', 'give', 'away', 'price', 'regretslov', 'blu'], ['good', 'qualiti'], ['nice', 'phone'], ['guess', 'get', 'pay', 'touch', 'screen', 'suck', 'unrespons', 'app', 'continu', 'crash', 'take', 'forev', 'load', 'snapchat', 'lazi', 'return', 'turd', 'keep', 'break', 'pay', 'next', 'time'], ['good'], ['good'], ['spend', 'galaxi', 'iphon', 'get', 'phone', 'good', 'color', 'cool', 'batteri', 'life', 'fine', 'run', 'latest', 'android', 'version', 'set', 'straight', 'talk', 'month', 'great'], ['love', 'phone', 'allow', 'thing', 'need', 'without', 'delay', 'great', 'book'], ['give', 'phone', 'star', 'rate', 'stay', 'charg', 'play', 'game', 'search', 'net', 'receiv', 'call', 'phone', 'clear', 'recept'], ['appar', 'blu', 'phone', 'general', 'junk', 'made', 'dispos', 'month', 'bought', 'blu', 'phone', 'last', 'month', 'die', 'bought', 'phone', 'august', 'replac', 'guess', 'die', 'day', 'ago', 'past', 'month', 'mark', 'mean', 'spent', 'blu', 'phone', 'year', 'might', 'well', 'buy', 'better', 'phone', 'start', 'say', 'warranti', 'read', 'fine', 'print', 'close', 'sent', 'first', 'phone', 'even', 'though', 'die', 'would', 'not', 'boot', 'claim', 'damag', 'would', 'cost', 'fix', 'buy', 'anoth', 'one', 'phone', 'never', 'misus', 'abus', 'useless', 'warranti'], ['excelent'], ['excel'], ['order', 'pink', 'phone', 'daughter', 'receiv', 'damn', 'green', 'phone', 'child', 'not', 'like', 'seem', 'interest', 'get', 'sale', 'would', 'never', 'order'], [], ['gift', 'afriend', 'say', 'want'], ['great', 'product'], ['one', 'word', 'phone', 'perfect'], ['recommend', 'phone', 'econom', 'similar', 'characterist', 'phone', 'qualiti', 'recogn', 'brand', 'dual', 'sim', 'work', 'well', 'oper', 'movistar', 'venezuela', 'immedi', 'recogn', 'good', 'intern', 'memori', 'capac', 'excel', 'rear', 'megapixel', 'camera', 'focus', 'camera', 'megapixel', 'front', 'good', 'applic', 'includ', 'phone', 'speed', 'incred', 'fantast', 'includ', 'screen', 'protector', 'silicon', 'case', 'protect', 'besid', 'accessori', 'includ', 'team', 'incomvenient', 'uniqu', 'take', 'load', 'batteri', 'complet', 'occas', 'heat', 'rear', 'camera', 'perfect', 'rest'], ['hate', 'phone', 'wast', 'money', 'never', 'buy', 'anoth', 'one', 'phone', 'help'], ['look', 'decent', 'phone', 'good', 'price', 'good', 'perform', 'good', 'batteri', 'life', 'would', 'recommend', 'phone', 'anyon'], ['see', 'noth', 'wrong', 'phone', 'lot', 'bang', 'buck', 'bought', 'wife', 'could', 'not', 'happier', 'respons', 'much', 'faster', 'galaxi', 'mega', 'nice', 'vibrat', 'loud', 'speaker', 'user', 'friend', 'everyth', 'need', 'ad', 'micro', 'sd', 'bang', 'higher', 'price', 'come', 'basic', 'gel', 'case', 'bought', 'case', 'work', 'great', 'blu', 'armorflex', 'case', 'studio', 'c', 'minihttp'], ['excel', 'telephon', 'everyth', 'arriv', 'well', 'without', 'problem', 'fast', 'take', 'excel', 'pictur', 'thank', 'amazon', 'funciona', 'para', 'toda', 'las', 'operadora', 'en', 'las', 'conexion', 'internet', 'para', 'movistar', 'movilnet', 'digitel', 'e', 'edgeyo', 'tengo', 'digitel', 'la', 'version', 'tegnologia', 'edg', 'es', 'lento', 'es', 'rápido'], [], ['good', 'phone', 'price'], ['good', 'telephon', 'easi', 'use', 'howev', 'batteri', 'discharg', 'fast', 'use', 'telephon', 'half', 'day', 'keep', 'cabl', 'charger', 'pocket', 'download', 'two', 'applic', 'loos', 'batteri'], ['like', 'easi', 'use', 'kind', 'slow', 'cost', 'effect', 'tho'], ['best'], ['phone', 'impress', 'bought', 'father', 'use', 'quit', 'often', 'simpli', 'put', 'price', 'got', 'much', 'phone', 'three', 'month', 'instal', 'mani', 'app', 'use', 'pretti', 'much', 'everi', 'aspect', 'headphon', 'speaker', 'bluetooth', 'tether', 'gps', 'name', 'not', 'phone', 'freez', 'phone', 'run', 'android', 'kitkat', 'almost', 'stock', 'minor', 'custom', 'user', 'interfac', 'simpl', 'unalt', 'construct', 'not', 'seamless', 'expens', 'phone', 'solid', 'built', 'look', 'quit', 'understand', 'price', 'rang', 'camera', 'qualiti', 'not', 'best', 'still', 'use', 'captur', 'precious', 'moment', 'decent', 'detail', 'goe', 'screen', 'although', 'screen', 'not', 'high', 'resolut', 'clear', 'look', 'good', 'inexpens', 'phone', 'great', 'option', 'would', 'not', 'hesit', 'buy', 'con', 'button', 'placement', 'power', 'volum', 'button', 'side', 'close', 'togeth', 'addit', 'soft', 'end', 'press', 'wrong', 'button', 'time', 'turn', 'screen', 'take', 'phone', 'not', 'compass', 'use', 'map', 'navig', 'bit', 'harder', 'phone', 'stock', 'applic', 'not', 'disabl', 'fact', 'come', 'box', 'two', 'browser', 'abl', 'disabl', 'applic'], ['smarphon'], ['could', 'give', 'less', 'star', 'would', 'horribl', 'phone', 'keyboard', 'extrem', 'unrespons', 'respond', 'put', 'random', 'letter', 'longer', 'access', 'voicemail', 'phone', 'matter', 'call', 'qualiti', 'aw', 'everyon', 'talk', 'not', 'hear', 'unless', 'essenti', 'scream', 'wonder', 'public', 'nome', 'app', 'reliabl', 'stay', 'open', 'period', 'time', 'random', 'close', 'whenev', 'pleas', 'issu', 'app', 'know', 'not', 'app', 'also', 'wifi', 'refus', 'pick', 'signal', 'even', 'i', 'sit', 'besid', 'someon', 'onnth', 'wifi', 'i', 'suppos', 'connect', 'internet', 'tr', 'browser', 'app', 'chrome', 'app', 'rare', 'load', 'page', 'spent', 'buck', 'phone', 'better', 'phone'], ['price', 'bargain', 'fast', 'comfort', 'pretti', 'stabl', 'bought', 'wife', 'love', 'two', 'camera', 'not', 'speaker', 'loweveryth', 'els', 'perfect'], ['excel'], ['glad', 'got', 'phone', 'price', 'right', 'phone', 'offer', 'expect', 'easi', 'use', 'buy', 'blu', 'phone', 'encourag', 'other', 'buy', 'well', 'screen', 'larg', 'clear', 'view', 'batteri', 'long', 'life', 'view', 'onlin', 'video', 'hour', 'without', 'charg', 'phone', 'love', 'phone'], ['excelent'], ['mum', 'ador', 'easi', 'use', 'handl'], ['updat', 'coupl', 'week', 'say', 'phone', 'lag', 'studio', 'launch', 'time', 'longer', 'phone', 'hang', 'ever', 'wife', 'studio', 'x', 'one', 'market', 'new', 'phone', 'pick', 'blu', 'studio', 'x', 'one', 'littl', 'better', 'experi', 'return', 'one', 'studio', 'x', 'phone', 'earpiec', 'speaker', 'stop', 'work', 'amazon', 'not', 'anoth', 'x', 'color', 'want', 'phone', 'slight', 'differ', 'interfac', 'studio', 'also', 'preload', 'app', 'not', 'remov', 'amazon', 'app', 'name', 'version', 'lollipop', 'differ', 'launcher', 'differ', 'default', 'keyboard', 'screen', 'not', 'seem', 'detail', 'studio', 'x', 'screen', 'good', 'screen', 'phone', 'lighter', 'x', 'even', 'though', 'larger', 'capac', 'batteri', 'far', 'batteri', 'life', 'good', 'work', 'cricket', 'wireless', 'box', 'wifi', 'connect', 'quick', 'photo', 'good', 'not', 'much', 'better', 'studio', 'x'], ['sent', 'back', 'sim', 'card', 'could', 'not', 'get', 'sim', 'card'], ['camera', 'good', 'camera', 'go', 'clear', 'littl', 'nois', 'even', 'low', 'light', 'batteri', 'run', 'bit', 'fast', 'chang', 'set', 'turn', 'screen', 'turn', 'wifi', 'not', 'use', 'fine', 'charg', 'fast', 'bought', 'open', 'box', 'product', 'said', 'use', 'seem', 'not', 'use', 'damag', 'packag', 'smudg', 'back', 'phone', 'save', 'i', 'happi', 'recommend', 'phone', 'especi', 'price'], ['pleas', 'phone', 'bought', 'one', 'year', 'ago', 'kid', 'bought', 'second', 'one'], ['thank'], ['not', 'connect', 'blue', 'tooth', 'keep', 'go'], ['love', 'phone', 'work', 'great', 'never', 'straight', 'talk', 'could', 'not', 'happier', 'pictur', 'world'], ['excel', 'phone', 'love', 'come', 'cover', 'screen', 'saver'], ['love', 'phone', 'want', 'half', 'cost', 'big', 'name', 'phone'], ['devic', 'great', 'design', 'contain', 'use', 'app', 'exceed', 'expect', 'price'], ['l', 'phone', 'full', 'month', 'still', 'happi', 'decis', 'realli', 'like', 'total', 'worth', 'money', 'get', 'phone', 'case', 'screen', 'protector', 'bonus', 'camera', 'good', 'play', 'around', 'set', 'photo', 'cat', 'hdr', 'mode', 'type', 'smooth', 'delay', 'load', 'app', 'averag', 'overal', 'phone', 'get', 'job', 'done', 'tri', 'save', 'money', 'time', 'decent', 'phone'], ['product', 'describ', 'would', 'recommend', 'buyer', 'other'], ['overal', 'phone', 'nice', 'featur', 'main', 'complaint', 'big', 'problem', 'answer', 'button', 'answer', 'button', 'might', 'automat', 'show', 'receiv', 'call', 'mani', 'time', 'not', 'show', 'time', 'tri', 'drag', 'touchscreen', 'look', 'incom', 'call', 'miss', 'miss', 'mani', 'call', 'phone', 'phone', 'replac', 'exact', 'model', 'phone', 'problem', 'answer', 'button', 'though', 'phone', 'good', 'outgo', 'call', 'look', 'onlin', 'saw', 'number', 'buyer', 'phone', 'also', 'problem', 'not', 'abl', 'answer', 'phone', 'call', 'unfortun', 'told', 'amazon', 'told', 'could', 'not', 'give', 'full', 'refund', 'spend', 'money', 'tri', 'anoth', 'phone'], ['omg', 'phone', 'amaz', 'camera', 'much', 'better', 'imagin', 'amaz', 'pictur', 'took', 'son', 'camera', 'first', 'day', 'got', 'updat', 'get', 'cell', 'phone', 'sinc', 'work', 'great', 'straighttalk', 'set', 'apn', 'need', 'help', 'would', 'glad', 'help', 'let', 'know', 'abl', 'access', 'internet', 'send', 'receiv', 'pictur', 'messag', 'problem', 'color', 'screen', 'amaz', 'well', 'worth', 'money', 'spend', 'glad', 'not', 'spend', 'hundr', 'dollar', 'samsung', 'lg', 'etc', 'seem', 'better', 'question', 'order', 'phone', 'let', 'know', 'answer', 'honest'], ['bought', 'phone', 'replac', 'blu', 'life', 'play', 'year', 'old', 'realli', 'like', 'phone', 'unfortun', 'die', 'get', 'wet', 'ride', 'motorcycl', 'rain', 'spite', 'fact', 'insid', 'ride', 'suit', 'not', 'blame', 'phone', 'though', 'anyway', 'phone', 'much', 'better', 'life', 'play', 'everi', 'respect', 'newer', 'version', 'android', 'power', 'bigger', 'sharper', 'screen', 'thinner', 'run', 'cooler', 'batteri', 'last', 'longer', 'far', 'plus', 'cost', 'almost', 'less', 'life', 'play', 'size', 'phone', 'big', 'i', 'would', 'want', 'get', 'becom', 'unwieldi', 'sit', 'well', 'hand', 'fit', 'phone', 'pocket', 'bag', 'cours', 'regular', 'jacket', 'coat', 'pocket', 'ride', 'suit', 'sound', 'phone', 'good', 'clear', 'rington', 'littl', 'bit', 'overdr', 'sound', 'compar', 'life', 'play', 'minor', 'thing', 'not', 'affect', 'usabl', 'phone', 'way', 'one', 'thing', 'keep', 'mind', 'pick', 'color', 'paint', 'extrem', 'vibrant', 'almost', 'color', 'pick', 'orang', 'mine', 'like', 'safeti', 'orang', 'color', 'much', 'much', 'brighter', 'expect', 'transluc', 'orang', 'silicon', 'skin', 'come', 'phone', 'mute', 'color', 'littl', 'still', 'quit', 'vibrant', 'i', 'attach', 'photo', 'compar', 'life', 'play', 'pink', 'vs', 'studio', 'c', 'super', 'camera'], ['great', 'phone'], ['blu', 'cellphon', 'best', 'kept', 'secret', 'cellphon', 'busi', 'blu', 'not', 'go', 'wrong', 'combin', 'great', 'featur', 'low', 'price', 'phone', 'blu', 'studio', 'c', 'super', 'camera', 'phone', 'everyth', 'phone', 'price', 'rang', 'friend', 'bought', 'blu', 'saw', 'mine'], ['great', 'phone', 'price', 'i', 'pleas', 'still', 'not', 'believ', 'inexpens', 'yet', 'effici', 'product', 'go', 'shoot', 'lg', 'phone', 'realli', 'work', 'well', 'great', 'design', 'littl', 'expens', 'decid', 'explor', 'blu', 'far', 'awesom', 'plus', 'ladi', 'also', 'blu', 'match', 'mate', 'i', 'happi'], ['unfortunatelli', 'touch', 'screen', 'inop', 'return'], ['thank'], ['true', 'power', 'smartphon', 'right', 'price'], ['phenomin', 'phone', 'long', 'stori', 'short', 'wife', 'use', 'galaxi', 'year', 'time', 'upgrad', 'use', 'phone', 'basic', 'need', 'phone', 'answer', 'long', 'await', 'thing', 'i', 'impress', 'batteri', 'get', 'day', 'usag', 'singl', 'charg', 'still', 'batteri', 'life', 'spare', 'phone', 'snappi', 'great', 'screen', 'slimmer', 'expect', 'come', 'basic', 'accessori', 'case', 'ear', 'phone', 'screen', 'protector', 'truli', 'amaz', 'phone', 'time', 'purchas', 'perform', 'like', 'back', 'plate', 'come', 'expos', 'sim', 'card', 'spot', 'microsd', 'card', 'slot', 'well', 'pop', 'card', 'room', 'grow', 'take', 'care', 'job', 'year', 'side', 'note', 'use', 'ting', 'cellular', 'servic', 'provid', 'not', 'big', 'texter', 'data', 'user', 'phone', 'talker', 'smart', 'phone', 'dumb', 'phone', 'ting', 'account', 'month', 'bill', 'tax', 'ting', 'use', 'either', 'sprint', 'servic', 'depen', 'phone', 'choos', 'use', 'clear', 'noth', 'gain', 'promot', 'blu', 'ting', 'want', 'give', 'shout', 'not', 'smartphon', 'plan', 'cost', 'blu', 'come', 'time', 'upgrad', 'i', 'look', 'direct', 'first'], ['octob', 'buy', 'blu', 'studio', 'c', 'super', 'camera', 'like', 'lot', 'first', 'thin', 'could', 'instal', 'applic', 'need', 'gave', 'star', 'almost', 'month', 'phone', 'sudden', 'die', 'connect', 'charger', 'turn', 'not', 'show', 'percentag', 'charg', 'turn', 'light', 'load', 'phone', 'built', 'not', 'remov', 'batteri', 'sorri', 'problem', 'bad', 'experi', 'first', 'blu', 'buy', 'perhap', 'last', 'venezuela', 'find', 'warranti', 'technic', 'servic', 'countri'], ['far', 'phone', 'great', 'mislead', 'descript', 'intern', 'storag', 'use', 'os', 'leav', 'happen', 'remain', 'gb'], ['month', 'decid', 'exact', 'look', 'well', 'cheap', 'price', 'phone', 'three', 'year', 'readi', 'rest', 'decid', 'look', 'product', 'i', 'lover', 'photographi', 'extrem', 'poor', 'camera', 'incred', 'much', 'better', 'iphon', 'long', 'last', 'batteri', 'listen', 'music', 'hour', 'day', 'googl', 'play', 'music', 'even', 'get', 'home', 'around', 'still', 'percentag', 'left', 'happi', 'phone'], ['wife', 'love'], ['amaz', 'phone', 'price', 'photo', 'great', 'qualiti', 'amaz', 'best', 'phone', 'price', 'ignor', 'negat', 'review', 'get', 'one', 'best', 'sinc', 'almost', 'everi', 'phone', 'negat', 'camera', 'review', 'one', 'suppos', 'read', 'review', 'gave', 'len', 'galaxi', 'find', 'hard', 'believ', 'mayb', 'somebodi', 'let', 'know', 'true', 'camera', 'not', 'easi', 'learn', 'get', 'blurri', 'imag', 'chang', 'set', 'like', 'found', 'use', 'secod', 'timer', 'got', 'better', 'photo'], ['buck', 'ok', 'android', 'phone', 'get', 'still', 'piec', 'junk', 'end', 'hang', 'constant', 'flip', 'app', 'navig', 'quick', 'camera', 'suck', 'sound', 'output', 'headphon', 'aw', 'wifi', 'not', 'seem', 'figur', 'switch', 'automat', 'cellular', 'data', 'list', 'goe', 'need', 'phone', 'soon', 'possibl', 'better', 'noth', 'one', 'cheapo', 'candi', 'bar', 'nokia', 'otherwis', 'stay', 'away', 'blu', 'brand', 'buy', 'real', 'phone', 'two', 'differ', 'model', 'thing', 'junk'], ['i', 'phone', 'month', 'good', 'bad', 'i', 'canada', 'use', 'wind', 'mobil', 'roger', 'sim', 'work', 'like', 'charm', 'canada', 'last', 'month', 'brought', 'back', 'asia', 'taiwan', 'phone', 'work', 'ok', 'signal', 'weaker', 'local', 'phone', 'although', 'use', 'sim', 'worst', 'part', 'could', 'not', 'detect', 'network', 'instead', 'slow', 'like', 'hell', 'signal', 'anoth', 'problem', 'i', 'start', 'experi', 'i', 'ad', 'sdhc', 'memori', 'card', 'support', 'extens', 'i', 'move', 'app', 'onto', 'sd', 'card', 'mean', 'plenti', 'space', 'use', 'built', 'howev', 'kept', 'get', 'insuffici', 'memori', 'problem', 'whenev', 'want', 'instal', 'new', 'app', 'clear', 'overwrit', 'prefer', 'set', 'instal', 'new', 'app', 'sd', 'card', 'instead', 'phone', 'intern', 'memori', 'not', 'figur', 'fix', 'yet', 'phone', 'wonder', 'camera', 'great', 'valu', 'i', 'still', 'give'], ['realli', 'like', 'phone', 'work', 'well', 'not', 'week', 'love', 'everi', 'minut', 'went', 'work', 'one', 'day', 'went', 'turn', 'work', 'would', 'not', 'wake', 'would', 'hold', 'power', 'button', 'would', 'flash', 'back', 'realli', 'want', 'work', 'well', 'i', 'consid', 'tri', 'not', 'decid', 'worth', 'hassel'], ['nice', 'android'], ['sent', 'back', 'sim', 'card', 'could', 'not', 'get', 'sim', 'card'], ['bought', 'bday', 'gift', 'lil', 'sis', 'phone', 'broke', 'not', 'not', 'even', 'second', 'love', 'work', 'perfect'], ['great', 'price', 'valu', 'relat'], ['love'], ['good', 'cell', 'love'], ['love', 'phone', 'selfi', 'amaz', 'camera', 'perfect'], ['great', 'buy', 'price', 'expect', 'iit', 'support', 'otg', 'problem', 'pleas'], ['wife', 'love', 'far', 'nice', 'display'], ['purchas', 'grandson', 'love'], ['slicker', 'old', 'studio', 'hd', 'work', 'alright', 'lightweight', 'thing', 'definit', 'felt', 'like', 'get', 'pay', 'kind', 'item', 'oppos', 'desir', 'holi', 'crap', 'not', 'believ', 'paid', 'third', 'usual', 'cost', 'feel', 'ideal', 'suppos', 'experi', 'buy', 'phone', 'hd', 'almost', 'size', 'super', 'camera', 'alreadi', 'feel', 'smaller', 'backsid', 'oppos', 'blocki', 'wraparound', 'plastic', 'backsid', 'make', 'use', 'updat', 'accord', 'observ', 'batteri', 'seem', 'take', 'time', 'charg', 'somewhat', 'liber', 'drainag', 'super', 'camera', 'phone', 'namesak', 'look', 'perform', 'nice', 'far', 'anyway', 'phone', 'camera', 'miracl', 'forthcom', 'taper', 'expect', 'disappoint', 'complaint', 'far', 'incess', 'beep', 'whenev', 'touch', 'screen', 'exposur', 'not', 'found', 'way', 'turn', 'turn', 'volum', 'way', 'shut', 'seem', 'not', 'sure', 'specif', 'version', 'android', 'phone', 'come', 'annoy', 'not', 'sure', 'like', 'android', 'compar', 'predecessor', 'tough', 'cooki', 'guess', 'enhanc', 'perform', 'notic', 'anyth', 'els', 'good', 'bad', 'updat'], ['excel', 'relat', 'work', 'well', 'without', 'issu', 'batteri', 'durat', 'amaz', 'good', 'camera', 'pictur', 'taken'], ['love', 'phone', 'i', 'el', 'salvador', 'work', 'fine', 'smolth', 'lollipop', 'fast', 'run', 'perfect', 'boom', 'beach', 'bug', 'lag', 'bad', 'thing', 'not', 'bought', 'two', 'three'], ['realli', 'great', 'phone', 'everi', 'way', 'equival', 'expens', 'phone', 'friend', 'use', 'take', 'card', 'store', 'book', 'music', 'camera', 'great', 'lose', 'one', 'star', 'connect', 'issu', 'often', 'not', 'connect', 'wifi', 'automat', 'goe', 'connect', 'turn', 'wifi', 'solv', 'problem', 'instant', 'would', 'definit', 'buy', 'phone', 'blu'], ['excelent'], ['phone', 'not', 'stay', 'charg', 'plug', 'recharg', 'take', 'forev', 'phone', 'batteri', 'run', 'everi', 'hour'], ['inexpens', 'way', 'smartphon', 'first', 'smartphon', 'need', 'simpl', 'version', 'not', 'bunch', 'preload', 'app', 'not', 'use', 'nice', 'thin', 'light', 'husband', 'bought', 'blu', 'hd', 'littl', 'thicker', 'heavier', 'like', 'mp', 'camera', 'i', 'happi', 'mp', 'camera', 'instruct', 'use', 'phone', 'app', 'preload', 'phone', 'took', 'figur', 'say', 'blu', 'help', 'afraid', 'tap', 'cuz', 'not', 'understand', 'useag', 'data', 'wifi', 'know', 'i', 'becom', 'adjust', 'smartphon', 'concept', 'husband', 'went', 'att', 'store', 'get', 'new', 'sim', 'card', 'sinc', 'old', 'one', 'not', 'fit', 'cost', 'even', 'appli', 'screen', 'protector', 'free', 'charg', 'came', 'everyth', 'need'], ['excel', 'relat', 'work', 'well', 'without', 'issu', 'batteri', 'durat', 'amaz', 'good', 'camera', 'pictur', 'taken'], ['phone', 'work', 'fine', 'star', 'blu', 'not', 'updat', 'yet', 'android'], ['unfortunatelli', 'touch', 'screen', 'inop', 'return'], ['bought', 'bday', 'gift', 'lil', 'sis', 'phone', 'broke', 'not', 'not', 'even', 'second', 'love', 'work', 'perfect'], ['kid', 'includ', 'deliveri', 'work', 'perfect', 'better', 'deal', 'time', 'not', 'found'], ['goo'], ['best', 'good'], ['great', 'phone', 'fantast', 'camera', 'price', 'see', 'photo'], ['order', 'friend', 'said', 'best', 'gift', 'receiv'], ['love', 'phone', 'want', 'half', 'cost', 'big', 'name', 'phone'], ['blu', 'studio', 'c', 'super', 'camera', 'awesom', 'phone', 'equal', 'name', 'brand', 'phone'], ['activ', 'phone', 'work', 'great', 'receiv', 'high', 'signal', 'strength', 'almost', 'everywher', 'go', 'work', 'home', 'not', 'top', 'line', 'phone', 'price', 'everyth', 'come', 'well', 'worth'], ['love', 'good', 'price'], ['lite', 'weight', 'easi', 'carri', 'function', 'easi', 'android', 'phone', 'bright', 'easi', 'read', 'day', 'light', 'well', 'even', 'camera', 'self', 'adjust', 'room', 'light', 'easi', 'pictur', 'take', 'semi', 'less', 'attach', 'account'], ['far', 'phone', 'great', 'mislead', 'descript', 'intern', 'storag', 'use', 'os', 'leav', 'happen', 'remain', 'gb'], ['i', 'phone', 'sever', 'month', 'say', 'without', 'doubt', 'better', 'samsung', 'lg', 'iphon', 'ever', 'own', 'own', 'faster', 'stabl', 'buy', 'blu', 'phone', 'futur'], ['blu', 'phone', 'great', 'young', 'peopl', 'imho', 'not', 'see', 'rational', 'behind', 'buy', 'phone', 'young', 'person', 'end', 'break', 'point', 'not', 'actual', 'use', 'power', 'mani', 'phone', 'price', 'rang', 'provid', 'phone', 'tend', 'inexpens', 'break', 'point', 'longer', 'work', 'rather', 'inexpens', 'replac', 'run', 'latest', 'version', 'android', 'kid', 'need', 'absolut', 'not', 'game', 'like', 'play', 'work', 'kitkat', 'lollipop', 'fine', 'i', 'would', 'like', 'updat', 'secur', 'fix', 'not', 'huge', 'deal', 'kid', 'not', 'keep', 'bank', 'detail', 'phone', 'i', 'replac', 'phone', 'blu', 'not', 'i', 'would', 'call', 'speedi', 'honor', 'warranti', 'without', 'lot', 'model', 'nice', 'sinc', 'larger', 'screen', 'allow', 'boy', 'play', 'game', 'better', 'experi', 'well', 'watch', 'video', 'stutter', 'devic', 'absolut', 'issu'], ['appl', 'samsung', 'htc', 'sharp', 'i', 'chanc', 'compani', 'flagship', 'phone', 'imagin', 'i', 'also', 'spent', 'fortun', 'these', 'devic', 'not', 'recal', 'one', 'day', 'fell', 'onto', 'articl', 'talk', 'new', 'compani', 'call', 'blu', 'shake', 'smartphon', 'industri', 'thought', 'mayb', 'one', 'cheap', 'wanab', 'smartphon', 'month', 'later', 'opertun', 'buy', 'one', 'famili', 'member', 'need', 'good', 'smartphon', 'want', 'iphon', 'question', 'decid', 'go', 'devic', 'boy', 'impress', 'moment', 'took', 'box', 'build', 'qualiti', 'nice', 'design', 'par', 'elit', 'smartphon', 'featur', 'stellar', 'price', 'unbeat', 'phone', 'blow', 'appl', 'samsung', 'water', 'killer', 'featur', 'phone', 'dual', 'sim', 'thing', 'brand', 'not', 'not', 'featur', 'make', 'phone', 'amaz', 'price', 'realli', 'not', 'get', 'paid', 'phone', 'feel', 'run', 'like', 'dollar', 'phone', 'definit', 'perfect', 'backup', 'keep', 'lose', 'break', 'phone'], ['good'], ['cell', 'phone', 'rule', 'need'], ['great', 'phone', 'total', 'worth', 'price', 'need', 'anoth', 'one', 'wife'], ['phone', 'marvel', 'noth', 'envi', 'phone', 'fast', 'imag', 'qualiti', 'photo', 'fabul', 'well', 'perform', 'high', 'recommend', 'look', 'complet', 'phone', 'low', 'cost', 'although', 'shipment', 'present', 'slight', 'delay', 'seller', 'contact', 'success', 'complet', 'deliveri', 'time', 'great', 'phone'], ['excel'], ['extrem', 'disappoint', 'qualiti', 'product', 'yes', 'price', 'great', 'camera', 'qualiti', 'decent', 'sure', 'purchas', 'multipl', 'phone', 'care', 'assur', 'phone', 'thing', 'realli', 'safe', 'place', 'april', 'phone', 'blue', 'place', 'tabl', 'remain', 'room', 'not', 'long', 'look', 'phone', 'screen', 'shatter', 'liter', 'clue', 'sinc', 'phone', 'cheap', 'decid', 'buy', 'phone', 'month', 'later', 'conveni', 'amazon', 'day', 'return', 'period', 'trip', 'light', 'phone', 'hand', 'not', 'fall', 'not', 'drop', 'phone', 'go', 'check', 'time', 'phone', 'right', 'screen', 'complet', 'mess', 'time', 'intern', 'damag', 'phone', 'not', 'real', 'name', 'brand', 'could', 'not', 'get', 'screen', 'replac', 'anywher', 'never', 'buy', 'product', 'love', 'amazon', 'product', 'serious', 'let', 'lead', 'question', 'qualiti', 'product', 'also', 'absolut', 'want', 'amazon', 'refund', 'money', 'liter', 'day', 'end', 'may', 'broke', 'upset'], ['great', 'phone'], ['good', 'imag', 'bright', 'color', 'run', 'well', 'perfect', 'price'], ['got', 'recent', 'trip', 'itali', 'look', 'simpl', 'unlock', 'phone', 'could', 'get', 'sim', 'chip', 'saw', 'read', 'review', 'camera', 'decid', 'would', 'great', 'phone', 'vehicl', 'take', 'selfi', 'travel', 'use', 'camera', 'mani', 'shot', 'video', 'pix', 'also', 'use', 'gps', 'way', 'finder', 'app', 'includ', 'citi', 'map', 'go', 'guid', 'around', 'maze', 'street', 'rome', 'plus', 'handi', 'pocket', 'way', 'get', 'tripadvisor', 'short', 'use', 'camera', 'travel', 'guid', 'phone', 'work', 'great', 'phone', 'plus', 'come', 'nice', 'gel', 'case', 'screen', 'protector', 'great', 'set', 'ear', 'bud', 'use', 'plane', 'aw', 'nois', 'dampen', 'great', 'plane', 'i', 'go', 'see', 'get', 'anoth', 'pair'], ['blu', 'phone', 'less', 'bloat', 'brand', 'phone', 'exact', 'describ', 'work', 'well'], ['blu', 'studio', 'c', 'super', 'camera', 'smartphon', 'amaz', 'devic', 'put', 'simpli', 'phone', 'price', 'whether', 'explor', 'world', 'cost', 'effici', 'cellular', 'devic', 'divorc', 'oneself', 'cost', 'contract', 'phone', 'capabl', 'satisfi', 'crowd', 'near', 'flawless', 'devic', 'come', 'ghz', 'quad', 'core', 'mediatek', 'processor', 'arm', 'gpu', 'screen', 'resolut', 'one', 'gig', 'ram', 'eight', 'gig', 'intern', 'storag', 'howev', 'microsd', 'card', 'user', 'increas', 'storag', 'capac', 'gigabyt', 'phone', 'util', 'mah', 'irremov', 'batteri', 'support', 'dual', 'sim', 'run', 'android', 'lollipop', 'os', 'solid', 'updat', 'latest', 'firmwar', 'long', 'one', 'word', 'come', 'mind', 'mention', 'phone', 'screen', 'stun', 'color', 'bright', 'vivid', 'imag', 'appear', 'rich', 'detail', 'add', 'excel', 'view', 'angl', 'one', 'best', 'display', 'part', 'perform', 'great', 'ui', 'quick', 'respons', 'although', 'phone', 'one', 'gig', 'ram', 'multitask', 'amaz', 'user', 'find', 'run', 'multipl', 'app', 'issu', 'graphic', 'intens', 'game', 'modern', 'combat', 'asphalt', 'airborn', 'play', 'beauti', 'devic', 'lag', 'stutter', 'frame', 'life', 'phone', 'batteri', 'life', 'full', 'charg', 'batteri', 'fall', 'eighti', 'percent', 'within', 'one', 'two', 'hour', 'howev', 'occur', 'heavi', 'usag', 'casual', 'run', 'batteri', 'last', 'full', 'workday', 'singl', 'charg', 'user', 'learn', 'app', 'function', 'strain', 'batteri', 'great', 'util', 'batteri', 'life', 'one', 'best', 'featur', 'devic', 'connect', 'websit', 'load', 'quick', 'easi', 'even', 'larg', 'number', 'applic', 'run', 'background', 'although', 'not', 'lte', 'abil', 'load', 'web', 'page', 'stream', 'media', 'content', 'blaze', 'speed', 'make', 'phone', 'one', 'best', 'reliabl', 'price', 'qualiti', 'whether', 'music', 'video', 'speakerphon', 'sound', 'tend', 'clip', 'distort', 'creat', 'unintellig', 'discord', 'make', 'sound', 'one', 'worst', 'featur', 'phone', 'nevertheless', 'not', 'deal', 'breaker', 'user', 'like', 'util', 'pair', 'earbud', 'headphon', 'handl', 'qualiti', 'call', 'sound', 'low', 'garbl', 'even', 'full', 'volum', 'howev', 'pair', 'earbud', 'voic', 'sound', 'crisp', 'clear', 'user', 'may', 'find', 'earbud', 'includ', 'subpar', 'not', 'worri', 'devic', 'support', 'almost', 'pair', 'earbud', 'whether', 'photo', 'record', 'video', 'camera', 'not', 'go', 'revolution', 'world', 'photographi', 'nevertheless', 'consum', 'sure', 'find', 'impress', 'easi', 'use', 'interfac', 'eight', 'megapixel', 'camera', 'five', 'front', 'camera', 'design', 'mere', 'get', 'point', 'across', 'not', 'introduc', 'new', 'career', 'path', 'camera', 'shine', 'best', 'expect', 'remark', 'phone', 'part', 'solid', 'despit', 'tendenc', 'run', 'hot', 'game', 'lacklust', 'batteri', 'life', 'subpar', 'earbud', 'devic', 'quick', 'respons', 'reliabl', 'although', 'util', 'outdat', 'oper', 'system', 'still', 'one', 'best', 'smartphon', 'money', 'buy', 'look', 'cheaper', 'altern', 'truli', 'compet', 'big', 'boy', 'hundr', 'dollar', 'kick', 'around', 'give', 'devic', 'shot', 'may', 'find', 'pleasant', 'surpris'], ['nice'], ['i', 'phone', 'go', 'month', 'complaint', 'volum', 'phone', 'suck', 'intern', 'memori', 'goe', 'fast', 'memori', 'chip', 'instal', 'lot', 'app', 'not', 'move', 'chip'], ['phone', 'liter', 'fell', 'lap', 'screen', 'shutoff', 'not', 'worth', 'appar', 'even', 'low', 'great', 'warranti', 'end', 'day', 'devic', 'broke', 'noth'], ['actual', 'quit', 'love', 'phone', 'use', 'like', 'night', 'made', 'sure', 'charg', 'right', 'howev', 'turn', 'tonight', 'went', 'plug', 'not', 'charg', 'not', 'turn', 'like', 'week', 'old', 'alreadi', 'dead', 'wast', 'money', 'i', 'cell', 'phone', 'howev', 'much', 'money', 'paid', 'prolli', 'not', 'ever', 'buy', 'anoth', 'blu', 'phone', 'serious', 'disappoint'], ['love', 'phone', 'cool', 'design', 'fun', 'color', 'slim', 'fast', 'front', 'camera', 'capabl', 'take', 'great', 'pic', 'good', 'light', 'rare', 'camera', 'great', 'well', 'phone', 'perfect', 'devic', 'money', 'pay', 'not', 'problem', 'perform', 'great', 'work', 'mexican', 'sim', 'card'], ['sent', 'back', 'sim', 'card', 'could', 'not', 'get', 'sim', 'card'], ['order', 'phone', 'amazon', 'august', 'receiv', 'sometim', 'septemb', 'decemb', 'start', 'problem', 'charg', 'charger', 'would', 'not', 'charg', 'problem', 'charg', 'left', 'phone', 'overnight', 'next', 'morn', 'phone', 'dead', 'obvious', 'problem', 'address', 'dissappoint', 'feedback', 'got', 'phone', 'work', 'not', 'experi', 'three', 'month'], ['work', 'great', 'normal', 'problem', 'freez', 'good', 'deal', 'price'], ['phone', 'seem', 'okay', 'far', 'bought', 'use', 'jamaica', 'dual', 'sim', 'featur', 'work', 'fine', 'network', 'screen', 'bright', 'clear', 'camera', 'higher', 'expect', 'camera', 'overal', 'phone', 'work', 'well', 'problem', 'far'], ['great', 'phone', 'price', 'purchas', 'three', 'past', 'coupl', 'year'], ['love'], ['not', 'seem', 'activ'], ['good'], ['ecel', 'product', 'veri', 'nice', 'like'], ['excelent'], ['love', 'new', 'phone', 'beauti', 'camera', 'clean', 'crisp', 'superb', 'phone'], ['prosgood', 'pictur', 'though', 'not', 'good', 'iphon', 'good', 'voic', 'qualitygood', 'display', 'big', 'screendual', 'sim', 'need', 'micro', 'sim', 'not', 'type', 'common', 'older', 'phone', 'low', 'pricetak', 'sd', 'cardcom', 'case', 'screen', 'connect', 'pretti', 'sketchyintern', 'memori', 'leav', 'limit', 'room', 'lot', 'app', 'not', 'store', 'sd', 'cardthi', 'good', 'phone', 'price', 'voic', 'qualiti', 'good', 'pictur', 'good', 'display', 'screen', 'fair', 'big', 'sound', 'good', 'headphon', 'os', 'work', 'well', 'expect', 'sd', 'card', 'ad', 'store', 'whatev', 'want', 'includ', 'music', 'awar', 'get', 'harder', 'store', 'app', 'memori', 'card', 'though', 'limit', 'onboard', 'storag', 'blu', 'mean', 'possibl', 'could', 'run', 'dual', 'sim', 'also', 'great', 'travel', 'clear', 'noth', 'close', 'iphon', 'qualiti', 'i', 'happi', 'pictur', 'qualiti', 'i', 'photograph', 'scene', 'time', 'friend', 'done', 'iphon', 'qualiti', 'differ', 'pretti', 'clear', 'extra', 'iphon', 'buy', 'someth', 'also', 'phone', 'not', 'well', 'wi', 'fi', 'tri', 'save', 'data', 'may', 'issu', 'tri', 'use', 'wifi', 'whenev', 'learn', 'sometim', 'not', 'work', 'place', 'know', 'wi', 'fi', 'signal', 'fine', 'want', 'save', 'money', 'will', 'accept', 'compromis', 'good', 'buy', 'even', 'use', 'iphon', 'often', 'cost', 'crappi', 'storag', 'often', 'sol', 'unless', 'want', 'pay', 'outrag', 'price', 'stupid', 'proprietari', 'storag', 'card', 'tri', 'pinch', 'penni', 'come', 'case', 'screen', 'protector', 'not', 'spring', 'case', 'otterbox', 'fine', 'moder', 'caution', 'store', 'phone', 'pocket', 'not', 'big', 'pocket', 'go', 'find', 'anoth', 'storag', 'option', 'i', 'male', 'even', 'sit', 'ground', 'feel', 'thing', 'poke', 'thigh'], ['i', 'love', 'blu', 'phone', 'i', 'love', 'blu', 'phone', 'got', 'low', 'low', 'i', 'love', 'blu', 'phone'], ['far', 'good', 'month', 'everyth', 'phone', 'camera', 'great', 'i', 'use', 'come', 'oct', 'wed', 'record', 'video', 'mother', 'could', 'not', 'make', 'sound', 'qualiti', 'great', 'music', 'video', 'like', 'pandora', 'play', 'well', 'loud', 'enough', 'leav', 'room', 'phone', 'still', 'hear', 'play', 'hous', 'memori', 'space', 'work', 'wonder', 'i', 'abl', 'download', 'social', 'media', 'app', 'plus', 'game', 'current', 'run', 'five', 'social', 'media', 'four', 'game', 'plus', 'shop', 'app', 'retail', 'not', 'heb', 'intern', 'memori', 'bought', 'memori', 'card', 'encas', 'screen', 'nice', 'size', 'watch', 'video', 'youtub', 'not', 'major', 'plus', 'consid', 'old', 'phone', 'use', 'complaint'], ['love'], ['biggest', 'wast', 'buck', 'phone', 'slow', 'thing', 'go', 'good', 'camera', 'slow', 'well'], ['make', 'blu', 'cell', 'phone', 'anoth', 'one', 'way', 'total', 'blu', 'cell', 'phone', 'famili', 'far', 'love', 'blu', 'cell', 'phone', 'money', 'one', 'hell', 'alot', 'cell', 'phone', 'not', 'troubl', 'withani', 'not', 'say', 'enough', 'good', 'blu', 'cell', 'phone'], ['not', 'work'], ['great', 'phone', 'qualiti', 'build', 'light', 'weight', 'respons', 'would', 'recommend', 'friend'], ['good', 'valu', 'nice', 'phone'], ['great', 'phone', 'total', 'worth', 'price', 'need', 'anoth', 'one', 'wife'], ['would', 'give', 'instruct', 'book', 'better', 'illustr', 'featur', 'also', 'need', 'includ', 'hard', 'reset', 'not', 'loos', 'everyth', 'said', 'happi', 'phone', 'almost', 'daili', 'i', 'learn', 'new', 'thing', 'edit', 'featur', 'one', 'thing', 'not', 'like', 'phone', 'answer', 'function', 'time', 'anoth', 'app', 'run', 'end', 'app', 'swipe', 'answer', 'call', 'side', 'pull', 'notif', 'list', 'find', 'incom', 'call', 'button', 'hang', 'incom', 'call', 'not', 'pop', 'whole', 'screen', 'like', 'past', 'blu', 'phone', 'i', 'own', 'fix', 'guess', 'not', 'instruct', 'manual', 'help', 'miss', 'mani', 'call', 'esp', 'daughter', 'neuro', 'drs'], ['love', 'phone', 'selfi', 'amaz', 'camera', 'perfect'], ['thb', 'i', 'never', 'comfort', 'exper', 'blu', 'phone', 'life', 'destroy', 'not', 'year', 'alon', 'model', 'month', 'go', 'might', 'trick', 'especi', 'got', 'screen', 'protector', 'good', 'qualiti', 'case', 'sweet', 'camera', 'back', 'mah', 'batteri', 'one', 'might', 'last', 'right', 'next', 'year'], ['love', 'phone', 'realli', 'complaint'], ['appl', 'samsung', 'htc', 'sharp', 'i', 'chanc', 'compani', 'flagship', 'phone', 'imagin', 'i', 'also', 'spent', 'fortun', 'these', 'devic', 'not', 'recal', 'one', 'day', 'fell', 'onto', 'articl', 'talk', 'new', 'compani', 'call', 'blu', 'shake', 'smartphon', 'industri', 'thought', 'mayb', 'one', 'cheap', 'wanab', 'smartphon', 'month', 'later', 'opertun', 'buy', 'one', 'famili', 'member', 'need', 'good', 'smartphon', 'want', 'iphon', 'question', 'decid', 'go', 'devic', 'boy', 'impress', 'moment', 'took', 'box', 'build', 'qualiti', 'nice', 'design', 'par', 'elit', 'smartphon', 'featur', 'stellar', 'price', 'unbeat', 'phone', 'blow', 'appl', 'samsung', 'water', 'killer', 'featur', 'phone', 'dual', 'sim', 'thing', 'brand', 'not', 'not', 'featur', 'make', 'phone', 'amaz', 'price', 'realli', 'not', 'get', 'paid', 'phone', 'feel', 'run', 'like', 'dollar', 'phone', 'definit', 'perfect', 'backup', 'keep', 'lose', 'break', 'phone'], ['cel', 'phone', 'not', 'work', 'not', 'get', 'new', 'one', 'amazon', 'receiv', 'one'], ['love', 'phone', 'cool', 'design', 'fun', 'color', 'slim', 'fast', 'front', 'camera', 'capabl', 'take', 'great', 'pic', 'good', 'light', 'rare', 'camera', 'great', 'well', 'phone', 'perfect', 'devic', 'money', 'pay', 'not', 'problem', 'perform', 'great', 'work', 'mexican', 'sim', 'card'], ['brother', 'happi', 'got', 'christma', 'better', 'phone', 'gotten', 'satisfi', 'thank'], ['excel', 'phone'], ['phone', 'work', 'pretti', 'well', 'unlock', 'work', 'liberia', 'west', 'africa', 'work', 'simpl'], ['great', 'merchandis', 'swift', 'ship'], ['realli', 'nice', 'easi', 'use', 'intern', 'memori', 'realli', 'big', 'price', 'realli', 'went', 'far', 'beyond', 'expet', 'keep', 'go', 'blu', 'ppl'], ['good', 'phone', 'price', 'super', 'easi', 'set', 'got', 'daughter', 'first', 'phone', 'absolut', 'went', 'nut', 'thing', 'say', 'low', 'light', 'camera', 'qualiti', 'not', 'great', 'lot', 'light', 'amaz', 'compar', 'samsung', 'galaxi', 'edg', 'plus', 'not', 'far', 'way', 'drop', 'phone', 'lot', 'would', 'recommend', 'get', 'case', 'separ', 'case', 'includ', 'look', 'ever', 'drop', 'could', 'break', 'overal', 'great', 'phone'], ['impress', 'phone', 'written', 'manual', 'provid', 'howev', 'blu', 'help', 'app', 'phone', 'custom', 'servic', 'excel'], ['use', 'reo', 'línea', 'androit', 'instal', 'reo', 'lo', 'e', 'differ', 'server'], ['work', 'need', 'big', 'name', 'phone', 'one', 'good', 'def', 'buy', 'blu'], ['thought', 'phone', 'would', 'great', 'peopl', 'rate', 'price', 'seem', 'good', 'thing', 'turn', 'not', 'not', 'like', 'way', 'group', 'mms', 'would', 'pop', 'download', 'would', 'not', 'download', 'open', 'read', 'pictur', 'not', 'bad', 'tri', 'send', 'one', 'would', 'come', 'distort', 'look', 'like', 'crap', 'common', 'place', 'would', 'get', 'servic', 'phone', 'could', 'give', 'servic', 'not', 'cup', 'tea', 'needless', 'say', 'sold', 'friend', 'half', 'price', 'even', 'tell', 'bad', 'thing', 'chose', 'take', 'anyway', 'hope', 'like', 'better', 'grr'], ['good'], ['simpl', 'phone', 'not', 'made', 'best', 'qualiti', 'materi', 'work'], ['use', 'reo', 'línea', 'androit', 'instal', 'reo', 'lo', 'e', 'differ', 'server'], ['great', 'phone', 'afford', 'price', 'famili', 'sever', 'differ', 'countri', 'sim', 'card', 'slot', 'differ', 'frequenc', 'work', 'countri', 'i', 'visit'], ['peppi', 'phone', 'good', 'qualiti', 'display', 'sensibl', 'back', 'camera', 'ampl', 'back', 'button', 'side', 'least', 'revers', 'tri', 'updat', 'review', 'time', 'goe'], ['excel', 'phone', 'perfect', 'screen', 'littl', 'slow', 'work', 'perfect'], ['simpl', 'phone', 'not', 'made', 'best', 'qualiti', 'materi', 'work'], ['nice', 'phone', 'problem', 'better', 'expens', 'phone'], ['happi'], ['not', 'bad', 'price'], ['cell', 'arriv', 'less', 'two', 'day', 'not', 'work', 'bad', 'card', 'cell', 'phone', 'not', 'good', 'bad', 'buy'], ['good', 'qualiti', 'good', 'price'], ['blu', 'hd', 'nice', 'smartphon', 'good', 'screen', 'ram', 'fluid', 'aplicacion', 'game', 'recommend', 'also', 'good', 'price'], ['great', 'phone', 'teenag'], ['happi'], ['cell', 'arriv', 'less', 'two', 'day', 'not', 'work', 'bad', 'card', 'cell', 'phone', 'not', 'good', 'bad', 'buy'], ['great', 'budget', 'smartphon', 'run', 'smooth', 'lte', 'connect', 'good', 'os', 'android', 'bit', 'outdat', 'user', 'experi', 'still', 'good', 'updat', 'phone', 'updat', 'use', 'android', 'kitkat', 'addl', 'updat', 'info', 'custom', 'i', 'would', 'advis', 'phone', 'addit', 'reason', 'aw', 'hspa', 'issu', 'not', 'receiv', 'band', 'band', 'lte', 'use', 'lot', 'new', 'lte', 'coverag', 'area', 'thus', 'mani', 'new', 'lte', 'area', 'not', 'compat', 'phone', 'user', 'drop', 'slow', 'servic', 'altern', 'phone', 'better', 'suit', 'obvious', 'onetouch', 'pop', 'astro', 'sell', 'fair', 'cheapli', 'think', 'around', 'i', 'seen', 'cheaper', 'mayb', 'even', 'better', 'e', 'lte', 'motorola', 'model', 'see', 'lot', 'misinform', 'review', 'blu', 'studio', 'mini', 'lte', 'respect', 'exclus', 'believ', 'not', 'particular', 'good', 'phone', 'even', 'though', 'work', 'well', 'urban', 'area', 'receiv', 'edg', 'mani', 'area', 'not', 'great', 'look', 'follow', 'frequenc', 'minimum', 'buy', 'phone', 'gsm', 'mhz', 'mhz', 'band', 'mhz', 'band', 'lte', 'band', 'mhz', 'mhz', 'mhz', 'phone', 'alleg', 'hspa', 'mhz', 'band', 'support', 'say', 'appear', 'not', 'actual', 'work', 'realiti', 'phone', 'work', 'well', 'cricket', 'wireless', 'band', 'lte', 'support', 'reason', 'star', 'instead', 'appear', 'phone', 'not', 'receiv', 'aw', 'practic', 'contrari', 'state', 'spec', 'aw', 'use', 'lot', 'coverag', 'substanti', 'issu', 'live', 'aw', 'area', 'nexus', 'friend', 'iphon', 'pick', 'mini', 'lte', 'pick', 'edg', 'great', 'choic', 'cricket', 'wireless', 'major', 'suburban', 'urban', 'area', 'lte', 'present', 'receiv', 'phone', 'might', 'not', 'pick', 'hope', 'blu', 'correct', 'aw', 'issu', 'i', 'pretti', 'sure', 'softwar', 'hardwar', 'issu', 'though', 'i', 'cours', 'specul'], ['good', 'phone', 'work', 'great', 'wroth', 'money'], ['good', 'valu', 'work', 'well', 'ota', 'updat', 'kitkat', 'right', 'away'], ['great', 'starter', 'phone', 'kid'], ['love', 'phone', 'price'], ['good', 'phone', 'realli', 'neat', 'price', 'point', 'got', 'buck', 'cheaper', 'walmart', 'return', 'one'], ['first', 'order', 'gold', 'got', 'gray', 'need', 'new', 'phone', 'let', 'slide', 'second', 'sensit', 'phone', 'particular', 'way', 'chart', 'googl', 'reduc', 'noth', 'work', 'still', 'put', 'short', 'return', 'polici', 'expir', 'phone', 'start', 'glitch', 'problem', 'look', 'way', 'occur', 'restart', 'phone', 'happen', 'short', 'either', 'dud', 'phone', 'batch', 'refurbish', 'sold', 'new', 'leari', 'buy', 'seller', 'shalem', 'halleluja'], ['great', 'phone', 'detail', 'big', 'fan', 'blu', 'want', 'believ', 'one', 'go', 'great', 'devic', 'vibrat', 'screen', 'color', 'chang', 'touch', 'not', 'work', 'reason', 'one', 'get', 'star', 'not', 'one', 'still', 'think', 'blu', 'great', 'idea', 'happen'], ['arriv', 'time', 'mother', 'law', 'love', 'new', 'cellphon', 'wife', 'happi'], ['great', 'bought', 'phone', 'upgrad', 'friend', 'friend', 'opt', 'due', 'expens', 'wish', 'phone', 'bigger', 'screen', 'window', 'lumia', 'screen', 'size', 'much', 'louder', 'box', 'content', 'blu', 'studio', 'charger', 'data', 'screen', 'protector', 'super', 'tini', 'microfib', 'silicon', 'case', 'clear', 'white', 'generic', 'earphon', 'talk', 'nice', 'box', 'hold', 'allfriend', 'super', 'happi', 'phone', 'issu', 'panorama', 'function', 'box', 'free', 'panorama', 'app', 'seem', 'issu', 'camera', 'find', 'fix', 'phone', 'super', 'happi', 'price', 'per', 'function', 'phone', 'love', 'selfi', 'migrat', 'friend', 'data', 'phone', 'memori', 'googl', 'contact', 'sim', 'card', 'pretti', 'much', 'phone', 'book', 'number', 'restor', 'new', 'phone', 'old', 'phone', 'via', 'googl', 'may', 'two', 'similar', 'review', 'one', 'white', 'one', 'gold', 'version', 'two', 'friend', 'request', 'model', 'help', 'make', 'transfer'], ['excel', 'phone', 'cost', 'easi', 'oper', 'use', 'smart', 'talk', 'network', 'high', 'recommend', 'blu'], ['good'], ['good', 'phone', 'price', 'i', 'happi'], ['wife', 'got', 'replac', 'age', 'smartphon', 'love', 'would', 'definit', 'recommend', 'user', 'look', 'replac', 'phone', 'unexpect', 'great', 'featur', 'phone', 'price', 'softwar', 'fulli', 'unlock', 'android', 'mean', 'access', 'lot', 'set', 'geek', 'love', 'set', 'not', 'even', 'know', 'life', 'pretti', 'good', 'last', 'day', 'two', 'moder', 'use', 'perform', 'great', 'speaker', 'loud', 'sound', 'better', 'note'], ['order', 'phone', 'twice', 'time', 'phone', 'refus', 'charg', 'work', 'brief', 'time', 'got', 'refund', 'not', 'worth'], ['product', 'horribl'], [], ['phone', 'suck', 'suck'], ['like', 'blu', 'studio', 'selfi'], ['best', 'phone', 'price', 'camera', 'great', 'long', 'not', 'low', 'light', 'expand', 'memori', 'import', 'bonus', 'work', 'carrier', 'realli', 'good', 'standbi', 'batteri', 'life'], ['phone', 'garbag', 'batteri', 'life', 'terribl', 'i', 'get', 'someth', 'els', 'soon', 'good', 'thing', 'camera'], ['come', 'far', 'realli', 'not', 'anyth', 'complain', 'mayb', 'got', 'bad', 'appl', 'one', 'got', 'work', 'fine', 'exact', 'suppos', 'screen', 'not', 'dim', 'compar', 'note', 'reason', 'complain'], ['good', 'smartphon'], ['think', 'not', 'like', 'phone', 'speaker', 'phone', 'got', 'call', 'volum', 'max', 'not', 'hear', 'person', 'speak', 'loud', 'thought', 'would', 'nice', 'phone'], ['got', 'done', 'activ', 'straight', 'talk', 'use', 'sim', 'kit', 'walmart', 'not', 'fun', 'doabl', 'run', 'full', 'signal', 'dollar', 'plan', 'i'], ['bought', 'yr', 'old', 'nephew', 'caribbean', 'love', 'love', 'still', 'one', 'piec', 'work', 'great'], ['bought', 'mum', 'love'], ['good'], ['phone', 'one', 'kind'], ['excel', 'product'], ['excelent', 'equipo', 'realment', 'una', 'maravilla'], ['overal', 'function', 'qualiti', 'blu', 'studio', 'selfi', 'smartphon', 'complain', 'display', 'not', 'bright', 'enough'], ['excelent', 'producto'], ['love', 'life', 'play', 'wife', 'stop', 'work', 'return', 'period', 'end', 'mine', 'got', 'crack', 'although', 'minor', 'compar', 'friend', 'phone', 'total', 'fractur', 'small', 'section', 'look', 'like', 'bullet', 'hit', 'car', 'crash', 'glass', 'even', 'minor', 'crack', 'phone', 'would', 'not', 'respond', 'altogh', 'power', 'display', 'right', 'asid', 'got', 'replac', 'sinc', 'mid', 'februari', 'longer', 'charg', 'go', 'longer', 'show', 'charg', 'seem', 'drop', 'power', 'connect', 'would', 'realli', 'like', 'cash', 'warranti', 'kind', 'bs', 'i', 'hope', 'batteri', 'issu', 'seem', 'lot', 'buy', 'amazon', 'break', 'quick', 'defect', 'dragon', 'touch', 'tablet', 'crack', 'son', 'use', 'normal', 'right', 'besid', 'gental', 'play', 'subway', 'surfer', 'use', 'time', 'week', 'realli', 'would', 'like', 'felt', 'brand', 'websit', 'lead', 'direct', 'amazon', 'warranti', 'info', 'base', 'call', 'tomorrow', 'hope', 'get', 'fix', 'rais', 'rate', 'work'], ['replac', 'phone', 'daughter', 'phone', 'say', 'one', 'better'], ['nervous', 'buy', 'phone', 'onlin', 'howev', 'pleasant', 'surpris', 'perfect', 'phone'], ['nice', 'phone', 'price'], ['love', 'phone', 'wrinkl', 'face', 'slimmer', 'filter', 'selfi', 'mode', 'fabul', 'best', 'featur', 'phone', 'tini', 'complaint', 'not', 'enough', 'storag', 'phone', 'one', 'day', 'i', 'get', 'sd', 'card', 'i', 'phone', 'day', 'long', 'batteri', 'last', 'long', 'time', 'not', 'take', 'long', 'charg', 'total', 'recommend', 'phone'], ['excelent'], ['reason', 'price', 'high', 'recommend', 'blu'], ['got', 'grandson', 'everyth', 'say', 'great', 'buy', 'i', 'get', 'readi', 'buy', 'anoth', 'one', 'today'], ['phone', 'slow', 'skeynpard', 'suck', 'not', 'worth', 'money'], ['i', 'enjoy'], ['work', 'perfect'], ['excel', 'product'], ['love'], ['come', 'far', 'realli', 'not', 'anyth', 'complain', 'mayb', 'got', 'bad', 'appl', 'one', 'got', 'work', 'fine', 'exact', 'suppos', 'screen', 'not', 'dim', 'compar', 'note', 'reason', 'complain'], ['real', 'nice', 'money'], ['great', 'phone', 'price', 'sinc', 'camera', 'suppos', 'best', 'featur', 'pretti', 'disappoint', 'front', 'flash', 'great', 'love', 'idea', 'main', 'reason', 'bought', 'phone', 'particular', 'camera', 'qualiti', 'leav', 'alot', 'desir', 'keyboard', 'not', 'bad', 'consid', 'cheap', 'phone', 'not', 'great', 'cours', 'i', 'use', 'galaxi', 'mayb', 'expect', 'much', 'phone', 'alot', 'better', 'phone', 'price', 'rang', 'case', 'pretti', 'nice', 'well', 'got', 'gold', 'color', 'one', 'color', 'real', 'pretti', 'sound', 'qualiti', 'also', 'great', 'screen', 'perfect', 'size', 'well', 'would', 'definit', 'recommend', 'someon', 'look', 'cheap', 'decent', 'phone', 'worth'], ['exel', 'cellphon'], ['order', 'phone', 'twice', 'time', 'phone', 'refus', 'charg', 'work', 'brief', 'time', 'got', 'refund', 'not', 'worth'], ['phone', 'slow', 'freez', 'time', 'suck', 'batteri', 'life', 'hour', 'averag', 'use'], ['realli', 'good', 'smartphon', 'price', 'great', 'perform'], ['perfect'], ['great', 'phone', 'charg', 'run', 'littl', 'quick', 'though', 'not', 'great', 'issu', 'happi', 'purchas', 'also', 'appreci', 'box', 'includ', 'screen', 'protector', 'silicon', 'case', 'cover', 'not', 'realis', 'make', 'purchas', 'like', 'valu', 'money'], ['excel', 'cost', 'benefit', 'phone', 'fast', 'run', 'everyth', 'tri', 'game', 'program', 'lightweight', 'batteri', 'great', 'autonomi', 'two', 'sim', 'option', 'also', 'interest', 'great', 'devic', 'i', 'enjoy', 'thank', 'blu', 'provid', 'great', 'experi', 'custom'], ['great', 'cellphon', 'recommend'], ['excel', 'thankyou'], ['pleas', 'thank'], ['phone', 'pretti', 'amaz', 'month', 'would', 'occasion', 'not', 'receiv', 'call', 'send', 'text', 'messag', 'connect', 'wifi', 'not', 'drop', 'water', 'damag', 'blue', 'stop', 'function', 'use', 'point', 'bare', 'use', 'folk', 'servic', 'provid', 'tell', 'phone', 'sinc', 'not', 'abl', 'identifi', 'problem', 'replac', 'sim', 'card', 'not', 'work', 'mayb', 'got', 'bad', 'phone', 'asid', 'problem', 'pretti', 'happi', 'qualm', 'terribl', 'batteri', 'life', 'i', 'not', 'much', 'still', 'charg', 'daili', 'slow', 'process', 'speed'], ['ecxelent'], ['front', 'camera', 'not', 'not', 'even', 'recogn'], ['great', 'buy'], ['experienc', 'issu', 'signal', 'stop', 'work', 'month'], ['phone', 'excel', 'buy', 'wife', 'charm', 'surpris', 'perform', 'smartphon', 'mani', 'peopl', 'doubt', 'qualiti', 'blu', 'phone', 'us', 'pleasant', 'surpris', 'peopl', 'like', 'wife', 'love', 'take', 'selfi', 'best'], ['phone', 'work', 'fine', 'processor', 'pretti', 'good', 'easi', 'manag'], ['amaz', 'price', 'bought', 'mom', 'think', 'i', 'go', 'buy', 'blu', 'phone', 'ill', 'also', 'review', 'youtub', 'phone', 'amaz', 'pay'], ['wifi', 'not', 'work', 'b', 'right', 'besid'], ['like'], ['disappoint', 'amazon', 'let', 'substandard', 'product', 'substandard', 'vendor', 'oper', 'websit', 'amazon', 'fast', 'loos', 'custom', 'trust', 'loyalti', 'product', 'like', 'come', 'product', 'bought', 'gift', 'phone', 'came', 'charg', 'batteri', 'power', 'okay', 'use', 'got', 'discharg', 'never', 'could', 'get', 'charg', 'therefor', 'could', 'never', 'turn', 'disappoint', 'even', 'toy', 'phone', 'work', 'day', 'phone', 'not', 'even', 'surviv', 'day', 'origin', 'batteri', 'charger', 'use'], ['love', 'got', 'today', 'still', 'figur'], ['great'], ['activ', 'tracfon', 'micro', 'sim', 'kit', 'work', 'like', 'charm', 'would', 'order', 'hesit'], ['malisimo'], ['phone', 'impress', 'price', 'must', 'say', 'impress'], ['love', 'cell', 'phone', 'far', 'great', 'phone', 'reason', 'price'], ['great', 'phone', 'price'], ['easi', 'fast', 'great', 'price'], ['price', 'paid', 'perform', 'excel', 'daughter', 'fascin', 'custom', 'servic', 'repli', 'polici', 'amazon', 'work', 'perfect', 'well', 'quick', 'take', 'case', 'life', 'well', 'done'], ['not', 'like', 'not', 'hold', 'charg', 'long', 'keep', 'turn', 'call', 'etc'], ['phone', 'got', 'case', 'not', 'match', 'togeth'], ['disappoint', 'phone', 'overheat', 'shut', 'time', 'need', 'reimburs'], ['phone', 'two', 'week', 'stop', 'work', 'reason', 'pleas', 'not', 'buy', 'item', 'bad'], ['well'], ['fair', 'price', 'not', 'high', 'perform'], ['not', 'gold'], ['excelent'], ['great', 'product', 'work', 'fine', 'movistar', 'venezuela'], ['met', 'expect', 'use', 'oversea', 'work', 'pertect'], ['fair', 'price', 'not', 'high', 'perform'], ['excel'], ['love'], ['mislead', 'advertis', 'spec', 'featur', 'word', 'differ', 'area', 'click', 'arrow', 'next', 'spec', 'featur', 'say', 'phone', 'ram', 'initi', 'spec', 'read', 'phone', 'use', 'ram', 'like', 'multipl', 'thing', 'phone', 'not', 'phone', 'go'], ['write', 'within', 'first', 'week', 'get', 'phone', 'i', 'would', 'given', 'star', 'phone', 'must', 'say', 'i', 'get', 'frustrat', 'gps', 'signal', 'rubbish', 'alway', 'search', 'gps', 'signal', 'leav', 'want', 'drive', 'especi', 'highway', 'not', 'sure', 'last', 'week', 'sd', 'card', 'seem', 'get', 'unmount', 'remount', 'random', 'cours', 'caus', 'app', 'disappear', 'organ', 'folder', 'home', 'screen', 'phone', 'provid', 'case', 'fell', 'lap', 'seat', 'chair', 'onto', 'tile', 'surfac', 'screen', 'crack', 'still', 'work', 'though', 'tell', 'cheaper', 'glass', 'advert', 'keyboard', 'place', 'make', 'easi', 'accid', 'tab', 'advert', 'one', 'not', 'want', 'serious', 'sad', 'bought', 'realiz', 'issu', 'recommend', 'pure', 'due', 'bad', 'gps', 'signal', 'unsteadi', 'sd', 'card'], ['phone', 'junk', 'not', 'even', 'one', 'month', 'not', 'go', 'past', 'bold', 'like', 'us', 'menu', 'tri', 'reset', 'amd', 'noth', 'work', 'wast', 'money', 'not', 'phone', 'weekend', 'lesson', 'learn', 'not', 'buy', 'one', 'phone'], ['good', 'product', 'perform', 'describ', 'buy', 'recommend', 'other'], ['happi'], ['love', 'phone'], ['not', 'samsung', 'money', 'solid', 'phone', 'came', 'android', 'upgrad', 'android', 'put', 'network', 'screen', 'clear', 'not', 'accur', 'big', 'name', 'brand', 'happi', 'day', 'day', 'use'], ['kid', 'great', 'success', 'lot', 'fun', 'use', 'blu', 'studio', 'ii', 'smartphon', 'global', 'gsm', 'gold', 'decid', 'final', 'upgrad', 'smartphon', 'use', 'trusti', 'samsung', 'galaxi', 'mini', 'phone', 'small', 'today', 'standard', 'got', 'less', 'serv', 'well', 'four', 'year', 'still', 'chug', 'along', 'decent', 'howev', 'signal', 'seem', 'weaken', 'time', 'complet', 'lose', 'signal', 'wife', 'iphon', 'still', 'maintain', 'full', 'signal', 'decid', 'upgrad', 'look', 'replac', 'last', 'long', 'not', 'disclosur', 'use', 'money', 'blu', 'version', 'well', 'like', 'famili', 'member', 'decid', 'look', 'anoth', 'offer', 'blu', 'gripe', 'lag', 'bit', 'game', 'never', 'bother', 'primari', 'user', 'know', 'start', 'not', 'buy', 'torn', 'blu', 'energi', 'x', 'plus', 'smartphon', 'mah', 'super', 'us', 'gsm', 'unlock', 'silver', 'blu', 'life', 'xl', 'smartphon', 'unlock', 'us', 'gsm', 'white', 'ponder', 'replac', 'began', 'priorit', 'need', 'must', 'support', 'current', 'mobil', 'carrier', 'must', 'least', 'screen', 'must', 'lollipop', 'oob', 'must', 'least', 'usabl', 'intern', 'must', 'beauti', 'decent', 'must', 'decent', 'batteri', 'life', 'day', 'usag', 'activ', 'use', 'must', 'sd', 'card', 'must', 'fm', 'must', 'abl', 'support', 'game', 'without', 'lag', 'disney', 'tsum', 'tsum', 'prefer', 'two', 'camera', 'front', 'rear', 'least', 'rear', 'prefer', 'dual', 'band', 'prefer', 'less', 'reason', 'know', 'minor', 'chose', 'life', 'life', 'phone', 'android', 'cours', 'amazon', 'say', 'phone', 'lollipop', 'upgrad', 'i', 'would', 'rather', 'not', 'wait', 'reason', 'came', 'studio', 'xl', 'choic', 'phone', 'spec', 'mediatek', 'mali', 'intern', 'memori', 'avail', 'ram', 'microsd', 'support', 'ppi', 'qhd', 'hspa', 'lte', 'mah', 'front', 'rear', 'includ', 'headphon', 'screen', 'protector', 'case', 'amp', 'charger', 'usb', 'great', 'valu', 'phone', 'tablet', 'phablet', 'android', 'lollipop', 'factori', 'unlock', 'bright', 'great', 'batteri', 'fluid', 'ui', 'expand', 'singl', 'accessori', 'yet', 'back', 'slot', 'cover', 'tight', 'resolut', 'low', 'even', 'higher', 'ppiimprov', 'requir', 'better', 'display', 'blu', 'great', 'reduc', 'sharp', 'video', 'pictur', 'display', 'phone', 'ram', 'least', 'support', 'lte', 'wifi', 'band', 'smaller', 'bezelverdict', 'like', 'phone', 'tri', 'love', 'gorgeous', 'great', 'batteri', 'life', 'perform', 'like', 'champ', 'game', 'even', 'better', 'blu', 'studio', 'ii', 'game', 'phone', 'perform', 'expet', 'speedtest', 'mobil', 'wifi', 'maintain', 'strong', 'signal', 'prepaid', 'even', 'area', 'samsung', 'complet', 'lose', 'signal', 'like', 'phone', 'feel', 'not', 'look', 'cheap', 'realli', 'like', 'phone', 'came', 'screen', 'protector', 'protect', 'biggest', 'issu', 'would', 'resolut', 'longer', 'use', 'notic', 'low', 'resolut', 'end', 'great', 'devic', 'main', 'phone', 'huge', 'screen', 'worth', 'money'], ['describ'], ['love', 'purchas', 'boyfriend', 'gift'], ['actual', 'blu', 'also', 'blu', 'xl', 'not', 'believ', 'amaz', 'satisfactori', 'phone'], ['got', 'phone', 'broke', 'old', 'phone', 'love', 'tennesse', 'straight', 'talk', 'use', 'verizon', 'tower', 'go', 'buy', 'new', 'sim', 'card', 'thought', 'went', 'att', 'gave', 'one', 'free', 'buckdont', 'updat', 'phone', 'not', 'turn', 'back'], ['vari', 'nice', 'phone', 'screen', 'size', 'good', 'feel', 'good', 'hand', 'overal', 'good', 'phone'], ['great', 'phone', 'problem', 'speaker'], ['exel', 'product', 'time', 'shipe', 'thank', 'lot'], ['good', 'screen', 'not', 'fast', 'enough', 'neywork', 'today', 'standard'], ['far', 'good', 'noth', 'like', 'upgrad', 'work', 'phone'], ['work', 'well', 'except', 'store', 'data', 'remov', 'sd', 'phone', 'cours', 'set', 'go', 'remov', 'blu', 'help', 'app', 'not', 'work'], ['big', 'fast'], ['good'], ['great', 'phone', 'especi', 'price', 'screen', 'big', 'color', 'qualiti', 'excel', 'cpu', 'gpu', 'seem', 'benchmark', 'phone', 'galaxi', 'tab', 'whose', 'spec', 'similar', 'phone', 'kept', 'mani', 'time', 'even', 'surpass', 'especi', 'graphic', 'test', 'reason', 'gave', 'four', 'star', 'scroll', 'screen', 'often', 'sluggish', 'respons', 'good', 'phone', 'addit', 'android', 'also', 'nice', 'addit'], ['happi'], ['awesom', 'third', 'blu', 'phone', 'due', 'sever', 'accid', 'would', 'damag', 'phone', 'buy'], ['told', 'item', 'unlock', 'phone', 'not', 'unlock', 'work', 'verizon', 'us', 'go', 'tri', 'return', 'shame', 'would', 'like', 'product', 'probabl', 'realli', 'fudg', 'birthday'], ['garbag', 'phone'], ['phone', 'amaz', 'made', 'switch', 'moto', 'x', 'phone', 'larg', 'not', 'larg', 'lol', 'screen', 'clear', 'sound', 'awsom', 'use', 'straight', 'talk', 'problem', 'insert', 'sim', 'work', 'smooth', 'not', 'even', 'set', 'anyth', 'thing', 'realli', 'notic', 'batteri', 'not', 'amaz', 'deal'], ['love', 'everi', 'need', 'smart', 'phone'], ['batteri', 'would', 'not', 'hold', 'charg'], ['enjoy', 'phone', 'receiv', 'numer', 'compliment', 'well', 'budget', 'phone', 'work', 'realli', 'well', 'definit', 'worth', 'money'], ['good', 'price'], ['great', 'phone', 'job'], ['beauti', 'phone', 'preload', 'googl', 'app', 'price', 'except', 'great', 'alreadi', 'purchas', 'anoth', 'one', 'plan', 'start', 'expens', 'contract'], ['seem', 'work', 'pretti', 'well', 'month', 'preload', 'apn', 'set', 'setup', 'major', 'gsm', 'mvno', 'carrier', 'breez', 'batteri', 'life', 'seem', 'work', 'pretti', 'well', 'also'], ['say', 'not', 'wast', 'time', 'horribl', 'pictur', 'video', 'qualiti', 'phone', 'space', 'even', 'sd', 'card', 'app', 'photo', 'screen', 'touch', 'horribl', 'liter', 'pound', 'phone', 'press', 'anyth', 'frozen', 'sinc', 'got', 'anywher', 'minut', 'day', 'deal', 'batteri', 'mess', 'reason', 'charg', 'goe', 'dead', 'wait', 'go', 'dead', 'charg', 'phone', 'month', 'not', 'wait', 'throw', 'trash'], ['put', 'sim', 'card', 'longer', 'pictur', 'messag'], ['wonder'], ['great', 'phone', 'money'], ['excel', 'product'], ['muy', 'bueno'], ['everyth', 'perfect', 'excel', 'product', 'recommend'], ['phone', 'like', 'price', 'cristal', 'clear', 'display', 'clear', 'call', 'dual', 'sim', 'bargain'], ['not', 'wast', 'money', 'like', 'basic', 'use', 'walmart', 'flip', 'phone', 'bought', 'suggest', 'simplic', 'howev', 'must', 'bluetooth', 'disconnect', 'time', 'hour', 'leav', 'disconnect', 'sim', 'card', 'not', 'accept', 'either', 'not', 'expect', 'load', 'number', 'volum', 'clariti', 'poor', 'radio', 'good', 'ear', 'bud', 'not', 'hear', 'otherwis', 'tv', 'joke', 'better', 'get', 'flip', 'would', 'good', 'use', 'go', 'errand', 'phone', 'put', 'sim', 'card', 'toss', 'phone', 'passeng', 'seat', 'worth', 'hard', 'earn', 'world', 'phone', 'even'], ['would', 'not', 'recogn', 'sim', 'either', 'port', 'would', 'not', 'recogn', 'whatev', 'port', 'sim', 'manual', 'help', 'end', 'return'], ['love'], ['good'], ['excel', 'product', 'excel', 'seller', 'fast', 'perfect', 'condit', 'reach', 'hand'], ['use', 'phone', 'cupl', 'day', 'stop', 'use', 'work', 'screen', 'say', 'sim'], ['work', 'cricket', 'consum', 'cellular', 'complaint', 'call', 'qualiti', 'batteri', 'last', 'week'], ['good', 'phone', 'perfect', 'condit'], ['product', 'arriv', 'perfect', 'condit', 'work', 'well', 'countri'], ['bought', 'father', 'need', 'basic', 'phone', 'love', 'work', 'well', 'problem', 'help', 'set', 'written', 'other', 'manual', 'fair', 'useless', 'written', 'not', 'manual', 'line', 'manag', 'find', 'one', 'close', 'enough', 'abl', 'email', 'use', 'overal', 'product', 'great', 'document', 'not', 'much'], ['well', 'perform', 'limit'], ['decent', 'phone', 'not', 'expect', 'much', 'everyth', 'claim', 'complaint', 'not', 'text'], ['father', 'love', 'phone', 'user', 'manual', 'ridicul', 'hard', 'read', 'miss', 'lot', 'inform', 'phone', 'function', 'fine', 'parent', 'need', 'simpler', 'phone', 'one', 'good', 'choic', 'larg', 'button', 'work', 'well', 'network', 'realli', 'great', 'not', 'want', 'get', 'stuck', 'plan', 'bought', 'father', 'one', 'use', 'one', 'backup', 'sinc', 'not', 'landlin', 'blu', 'need', 'littl', 'work', 'updat', 'manual', 'get', 'rid', 'sim', 'miss', 'home', 'screen', 'etc', 'otherwis', 'solid', 'product'], ['got', 'phone', 'work', 'well', 'held', 'charg', 'long', 'sat', 'phone', 'last', 'recommend'], ['nice', 'piec', 'yr', 'old', 'son'], ['bought', 'foreign', 'travel', 'work', 'like', 'charm', 'well', 'worth', 'price'], ['simpl', 'phone', 'excel', 'batteri', 'life', 'perfect', 'size'], ['not', 'expect', 'lot', 'low', 'cost', 'phone', 'text', 'manual', 'small', 'instruct', 'insert', 'sim', 'extrem', 'poor', 'batteri', 'hard', 'fit', 'phone', 'instruct', 'open', 'phone', 'chang', 'batteri', 'non', 'exist', 'sound', 'qualiti', 'okay', 'button', 'control', 'volum', 'navig', 'option', 'not', 'easili', 'found', 'accept', 'tmobil', 'sim', 'without', 'problem'], ['well'], ['awesom', 'phone'], ['phone', 'good', 'price', 'not', 'problem', 'cover', 'open', 'easili', 'batteri', 'instal', 'smooth'], ['good'], ['good'], ['excelent'], ['get', 'pay'], ['nice', 'look', 'phone', 'imposs', 'open', 'back', 'cover', 'terribl', 'instruct', 'return', 'mine', 'day'], ['good', 'phone', 'daughter'], ['travel', 'new', 'zealand', 'recent', 'read', 'somewher', 'free', 'tourist', 'sim', 'card', 'bought', 'blu', 'tank', 'ii', 'hope', 'use', 'not', 'find', 'free', 'card', 'instead', 'bought', 'sim', 'card', 'warehous', 'one', 'larg', 'chain', 'store', 'fit', 'not', 'recogn', 'phone', 'look', 'like', 'electr', 'contact', 'wrong', 'posit', 'fortun', 'skinni', 'zte', 'readi', 'go', 'one', 'month', 'free', 'phone', 'use', 'current', 'less', 'us', 'use', 'nice', 'go', 'new', 'zealand', 'either', 'get', 'intern', 'sim', 'card', 'first', 'assum', 'work', 'get', 'phone', 'far', 'blu', 'tank', 'ii', 'goe', 'not', 'tri', 'look', 'ok'], ['phone', 'suck', 'kind', 'figur', 'get', 'go', 'budget', 'dumb', 'phone', 'knew', 'purchas', 'need', 'knock', 'star', 'rate', 'sinc', 'met', 'expect'], ['excelent'], ['packag', 'advertis'], ['could', 'not', 'reach', 'find', 'carrier', 'boston', 'new', 'york', 'citi', 'watertown', 'ny', 'toronto', 'blame', 'iroam', 'sim', 'card', 'put', 'card', 'blackberri', 'everyth', 'work', 'return', 'phone', 'refund'], ['mayb', 'got', 'one', 'work', 'sometim', 'begin', 'impress', 'phone', 'thing', 'wrong', 'sound', 'could', 'live', 'soon', 'found', 'caller', 'could', 'bare', 'ear', 'respons', 'convers', 'not', 'make', 'sens', 'loos', 'lotsof', 'info', 'use', 'hand', 'free', 'mode', 'could', 'ear', 'caller', 'thing', 'would', 'ear', 'back', 'round', 'nois'], ['bueno'], ['good', 'product'], ['excelent'], ['bought', 'phone', 'mom', 'far', 'good'], ['excel', 'phone', 'work', 'venezuela', 'carrier', 'movilnet', 'movistar', 'digitel'], ['awesom', 'phone', 'come', 'first', 'spanish', 'languag', 'pain', 'figur', 'chang', 'english'], ['far', 'not', 'done', 'much', 'phone', 'skeptic', 'sometim', 'batteri', 'live', 'whatnot', 'got', 'phone', 'month', 'half', 'ago', 'said', 'day', 'standbi', 'cours', 'instant', 'call', 'bull', 'think', 'receiv', 'june', 'charg', 'night', 'full', 'charg', 'took', 'charger', 'turn', 'airplan', 'mode', 'bar', 'batteri', 'full', 'august', 'still', 'bar', 'batteri', 'left', 'yes', 'know', 'not', 'use', 'make', 'call', 'text', 'still', 'i', 'impress'], ['batteri', 'life', 'last', 'log', 'need', 'buy', 'sd', 'card', 'not', 'abl', 'take', 'photo'], ['pick', 'use', 'teen', 'not', 'readi', 'smartphon', 'exact', 'say', 'box', 'simpl', 'basic', 'phone', 'make', 'call', 'slow', 'teen', 'hand', 'not', 'often', 'appreci', 'came', 'not', 'qwerti', 'input', 'text', 'packag', 'readili', 'use', 'pay', 'go', 'plan', 'hard', 'go', 'wrong', 'need', 'someth', 'basic', 'make', 'call', 'emerg', 'last', 'forev'], ['excelent'], ['wonder'], ['great', 'phone', 'mom', 'still', 'work', 'yr', 'purchas'], ['satisfi', 'thank'], ['good'], ['excel', 'product'], ['good'], ['easi', 'oper', 'batteri', 'life', 'talk', 'text', 'frill', 'fuss', 'work', 'well'], ['conaid', 'price', 'phone', 'good'], ['came', 'expect', 'order', 'year', 'old', 'love'], ['muy', 'bueno'], ['veri', 'nice'], ['not', 'classifi', 'good', 'one', 'never', 'reach', 'product', 'sinc', 'solicit', 'wonder', 'past', 'need', 'answer', 'thank'], ['love', 'phone'], ['use', 'phone', 'moldova', 'eastern', 'europ', 'review', 'post', 'difficult', 'open', 'insert', 'sim', 'card', 'someon', 'cellular', 'store', 'instal', 'perfect', 'travel', 'phone', 'less', 'expens', 'avail', 'purchas', 'countri', 'radio', 'work', 'although', 'not', 'use', 'ring', 'volum', 'littl', 'bit', 'pain', 'price', 'exact', 'need'], ['simpl', 'meet', 'expect'], ['fast', 'servic', 'qualiti', 'stuff', 'guy', 'rock'], ['not', 'take', 'pictur', 'say', 'full', 'storag'], ['excelent'], ['not', 'work', 'tmobil'], ['excel'], ['excelent'], ['good'], ['good', 'littl', 'phone', 'gsm', 'work', 'great', 'sold', 'one', 'day'], ['horribl', 'servic', 'anywher', 'great', 'want', 'hand', 'held', 'fm', 'radio', 'could', 'not', 'store', 'anyth', 'could', 'not', 'chang', 'anyth', 'not', 'worth', 'money', 'would', 'return', 'toddler', 'not', 'gotten', 'hold'], ['not', 'like', 'phone', 'could', 'not', 'open', 'batteri', 'compart', 'phone', 'one', 'pictur', 'howev', 'light', 'almost', 'like', 'sampl', 'not', 'real', 'choos', 'purchas', 'phone', 'care', 'other', 'may', 'better', 'experi', 'mine', 'not'], ['not', 'easi', 'text', 'awesom', 'batteri', 'min', 'went', 'charg', 'full', 'fm', 'radio', 'better', 'soni', 'qualiti', 'incred'], ['tengo', 'queja'], ['excel'], ['basic', 'burner', 'phone', 'quad', 'band', 'dual', 'sim', 'great', 'intern', 'trave'], ['good'], ['excelent'], ['excelent'], ['excelent'], ['excelent'], ['nice', 'look', 'phone', 'imposs', 'open', 'back', 'cover', 'terribl', 'instruct', 'return', 'mine', 'day'], ['bought', 'phone', 'mom', 'took', 'pari', 'not', 'french', 'languag', 'english', 'work', 'fine', 'love', 'phone'], ['wast', 'money'], ['excelent'], ['excel'], ['bought', 'phone', 'brother', 'part', 'happi', 'seem', 'lot', 'customiz', 'set', 'low', 'cost', 'phone', 'problem', 'come', 'document', 'phone', 'poor', 'like', 'next', 'noth', 'go', 'menus', 'tinker', 'abl', 'set', 'unexplain', 'thing', 'happen', 'use', 'refer', 'materi', 'look', 'ask', 'not', 'know', 'either', 'without', 'good', 'manual', 'use', 'anoth', 'thing', 'instal', 'first', 'bottom', 'sim', 'card', 'look', 'like', 'would', 'destroy', 'phone', 'get', 'back', 'manual', 'look', 'player', 'song', 'limit', 'not', 'friend', 'use', 'issu', 'seem', 'work', 'great', 'phone', 'price', 'guess', 'would', 'hard', 'expect', 'much'], ['excelent'], ['excel', 'well', 'perfect'], ['not', 'buy', 'bad', 'poor', 'design', 'hard', 'open', 'batteri', 'broke', 'cheap', 'nonfunct'], ['great', 'price', 'qualiti', 'not', 'buy', 'though'], ['good'], ['not', 'happi', 'phone', 'button', 'stick', 'voicemail'], ['good', 'price', 'vs', 'qualiti'], ['batteri', 'awesom'], ['not', 'expect'], ['know', 'major', 'phone', 'carrier', 'start', 'januari', 'not', 'oper', 'phone', 'sim', 'look', 'phone', 'emerg', 'one', 'internet', 'access', 'one', 'great', 'get', 'pay', 'phone', 'lightweight', 'made', 'thin', 'not', 'appear', 'look', 'way', 'unless', 'hold', 'look', 'close', 'text', 'receiv', 'call', 'fine', 'time', 'pain', 'smartphon', 'send', 'icon', 'pictur', 'video', 'phone', 'not', 'receiv', 'pictur', 'qualiti', 'also', 'graini', 'howev', 'emerg', 'phone', 'want', 'call', 'text', 'plus', 'want', 'phone', 'internet', 'hard', 'find', 'model', 'trick', 'not', 'look', 'dorki', 'know', 'lack', 'bell', 'whistl', 'today', 'cell', 'phone', 'howev', 'great', 'qualiti', 'normal', 'phone', 'not', 'glu', 'also', 'suggest', 'yellow', 'coolest', 'look', 'opinion', 'model', 'phone'], ['excel'], ['bought', 'phone', 'nov', 'not', 'year', 'yet', 'screen', 'got', 'black', 'not', 'work', 'anymor', 'would', 'like', 'return', 'sinc', 'still', 'elig', 'year', 'guarante'], ['excel', 'good', 'product'], ['work', 'good', 'cheap', 'price', 'worth'], ['good'], ['exelent'], ['blu', 'phone', 'love', 'special', 'friend', 'thank'], ['i', 'happi', 'wth', 'phone', 'price', 'keyboard', 'auto', 'lock', 'almost', 'useless', 'sure', 'keep', 'make', 'accident', 'call', 'activ', 'return', 'home', 'page', 'activ', 'stick', 'pocket', 'button', 'get', 'push', 'instead', 'ignor', 'button', 'push', 'like', 'ought', 'phone', 'emit', 'annoy', 'beep', 'appar', 'think', 'actual', 'want', 'notifi', 'everi', 'accident', 'button', 'push', 'plus', 'powerdown', 'button', 'get', 'accident', 'push', 'requisit', 'amount', 'time', 'less', 'second', 'phone', 'shut', 'power', 'even', 'keyboard', 'lock', 'activ'], ['look', 'nice', 'decent', 'sound', 'qualiti', 'not', 'sync', 'phone', 'not', 'support', 'charact'], ['excel', 'good'], ['great', 'item', 'super', 'fast', 'ship', 'thank'], ['bought', 'receiv', 'week', 'ago', 'look', 'phone', 'unlock', 'phone', 'durabl', 'great', 'batteri', 'life', 'text', 'option', 'good', 'phone', 'call', 'qualiti', 'not', 'interest', 'internet', 'unlock', 'use', 'plan', 'gci', 'troubl', 'read', 'took', 'local', 'gci', 'store', 'got', 'work', 'made', 'nervous', 'far', 'look', 'like', 'durabl', 'job', 'kind', 'cheapli', 'made', 'work', 'great', 'great', 'batteri', 'life', 'well', 'text', 'work', 'difficult', 'text', 'multipl', 'peopl', 'figur', 'call', 'work', 'first', 'night', 'talk', 'wife', 'half', 'batteri', 'life', 'beat', 'iphon', 'phone', 'interest', 'advanc', 'issu', 'came', 'manual', 'found', 'odd', 'could', 'not', 'lock', 'phone', 'not', 'use', 'made', 'nervous', 'put', 'pocket', 'find', 'manual', 'onlin', 'get', 'password', 'chang', 'phone', 'abl', 'lock', 'interest', 'set', 'get', 'pay', 'work'], ['littl', 'tank', 'work', 'great', 'us', 'worldsim', 'sim', 'card', 'cruis', 'carniv', 'conquest', 'bahama', 'drop', 'time', 'count', 'thing', 'still', 'chug', 'along', 'perfect', 'never', 'need', 'verizon', 'back', 'state'], ['father', 'love', 'phone', 'user', 'manual', 'ridicul', 'hard', 'read', 'miss', 'lot', 'inform', 'phone', 'function', 'fine', 'parent', 'need', 'simpler', 'phone', 'one', 'good', 'choic', 'larg', 'button', 'work', 'well', 'network', 'realli', 'great', 'not', 'want', 'get', 'stuck', 'plan', 'bought', 'father', 'one', 'use', 'one', 'backup', 'sinc', 'not', 'landlin', 'blu', 'need', 'littl', 'work', 'updat', 'manual', 'get', 'rid', 'sim', 'miss', 'home', 'screen', 'etc', 'otherwis', 'solid', 'product'], ['neat', 'phone'], ['bought', 'back', 'phone', 'see', 'batteri', 'advertis', 'month', 'standbi', 'batteri', 'suck', 'hard', 'came', 'day', 'not', 'use', 'phone', 'day', 'standbi', 'big', 'phone'], ['well'], ['excel', 'recommend'], ['els', 'want'], ['excel', 'seller', 'recommend'], ['execelent', 'recomendado'], ['one', 'good'], ['recomendado'], ['bought', 'phone', 'use', 'oversea', 'work', 'perfect', 'insert', 'sim', 'card', 'work', 'like', 'charm', 'not', 'need', 'lot', 'app', 'work', 'basic', 'would', 'not', 'work', 'viber', 'whatsapp', 'app'], ['nice'], [], ['graciass'], ['take', 'sim', 'card', 'tight', 'cell', 'phone', 'not', 'display', 'chines', 'text', 'messag'], ['awsom', 'phone', 'great', 'valu'], ['excel'], ['done', 'littl', 'research', 'one', 'blame', 'current', 'went', 'use', 'soni', 'xperia', 'z', 'thought', 'enough', 'technolog', 'ipod', 'enough', 'play', 'game', 'save', 'date', 'text', 'use', 'internet', 'sometim', 'not', 'ipod', 'need', 'write', 'remind', 'take', 'pictur', 'send', 'would', 'think', 'even', 'simpl', 'phone', 'abl', 'pretti', 'basic', 'procedur', 'bewar', 'phone', 'incred', 'simpl', 'technolog', 'recommend', 'peopl', 'talk', 'text', 'phone', 'simpl', 'calcul', 'calendar', 'view', 'date', 'phone', 'book', 'music', 'player', 'play', 'music', 'sd', 'card', 'insert', 'realli', 'not', 'think', 'enough', 'storag', 'intern', 'even', 'one', 'song', 'fm', 'radio', 'low', 'resolut', 'not', 'send', 'pictur', 'except', 'via', 'bluetooth', 'receiv', 'pictur', 'add', 'event', 'calendar', 'take', 'note', 'save', 'remind', 'also', 'call', 'qualiti', 'question', 'time', 'hear', 'person', 'fine', 'time', 'bare', 'hear', 'understand', 'warn', 'not', 'good', 'phone', 'not', 'even', 'simpl', 'thing', 'need', 'like', 'review', 'said', 'good', 'travel', 'phone', 'mayb', 'even', 'emerg', 'phone', 'keep', 'hand', 'case', 'current', 'phone', 'break'], ['excel', 'product'], ['nice', 'bigger', 'thant', 'look', 'price', 'nice'], ['travel', 'new', 'zealand', 'recent', 'read', 'somewher', 'free', 'tourist', 'sim', 'card', 'bought', 'blu', 'tank', 'ii', 'hope', 'use', 'not', 'find', 'free', 'card', 'instead', 'bought', 'sim', 'card', 'warehous', 'one', 'larg', 'chain', 'store', 'fit', 'not', 'recogn', 'phone', 'look', 'like', 'electr', 'contact', 'wrong', 'posit', 'fortun', 'skinni', 'zte', 'readi', 'go', 'one', 'month', 'free', 'phone', 'use', 'current', 'less', 'us', 'use', 'nice', 'go', 'new', 'zealand', 'either', 'get', 'intern', 'sim', 'card', 'first', 'assum', 'work', 'get', 'phone', 'far', 'blu', 'tank', 'ii', 'goe', 'not', 'tri', 'look', 'ok'], ['great', 'travel', 'oversea', 'dad', 'love', 'sinc', 'bought', 'one', 'last', 'time', 'went', 'haiti', 'time', 'bought', 'famili', 'member', 'friend', 'function', 'good', 'even', 'better', 'expens', 'phone'], ['reason', 'feel', 'give', 'low', 'score', 'phone', 'clear', 'state', 'talk', 'text', 'want', 'howev', 'not', 'truli', 'sort', 'good', 'text', 'interfac', 'predict', 'text', 'want', 'letter', 'push', 'four', 'time', 'move', 'next', 'letter', 'want', 'punctuat', 'open', 'new', 'window', 'go', 'get', 'want', 'capit', 'letter', 'flounder', 'bit', 'multipl', 'differ', 'text', 'set', 'one', 'four', 'thing', 'number', 'cap', 'cap', 'mix', 'cap', 'small', 'letter', 'not', 'help', 'kind', 'hate', 'give', 'low', 'rate', 'buck', 'realli', 'think', 'way', 'effici', 'text', 'make', 'phone', 'not', 'work', 'suggest', 'retail', 'even', 'disregard', 'predict', 'text', 'text', 'interfac', 'bad', 'would', 'given', 'start', 'money', 'good', 'text', 'interfac', 'predict', 'feel', 'phone', 'not', 'predict', 'text', 'need', 'qwerti', 'key', 'text', 'day', 'would', 'think', 'good', 'deal', 'still', 'think', 'good', 'backup', 'phone', 'hate', 'text', 'much', 'attract', 'light', 'weight', 'keypad', 'nice', 'big', 'not', 'someon', 'actual', 'want', 'text', 'purpos', 'backup', 'phone', 'someon', 'not', 'text', 'still', 'recommend', 'think', 'excel', 'choic', 'someon', 'want', 'call', 'someon', 'want', 'call', 'text', 'surpris', 'lack', 'function', 'honest', 'hope', 'never', 'use', 'backup', 'phone', 'happi', 'ever', 'get', 'strand', 'somewher', 'dead', 'main', 'also', 'back', 'hard', 'open', 'even', 'good', 'fingernail', 'found', 'easi', 'open', 'jam', 'corner', 'credit', 'card', 'access', 'point', 'pri', 'back', 'though', 'consid', 'phone', 'elder', 'person', 'challeng', 'eyesight', 'fine', 'motor', 'skill', 'would', 'look', 'elsewher'], ['good', 'basic', 'celphon'], ['good', 'price'], ['work', 'alright'], ['bought', 'grandma', 'work', 'well', 'day', 'button', 'stop', 'work'], ['bad', 'phone', 'automat', 'shut', 'not', 'activ', 'use', 'back', 'plate', 'not', 'stay', 'one', 'back', 'plate', 'slight'], ['take', 'sim', 'card', 'tight', 'cell', 'phone', 'not', 'display', 'chines', 'text', 'messag'], ['phone', 'mom', 'great', 'phone', 'dual', 'sim', 'stay', 'charg', 'long'], ['bien'], ['got', 'mom', 'love'], ['cool'], ['good'], ['bought', 'phone', 'use', 'oversea', 'work', 'perfect', 'insert', 'sim', 'card', 'work', 'like', 'charm', 'not', 'need', 'lot', 'app', 'work', 'basic', 'would', 'not', 'work', 'viber', 'whatsapp', 'app'], ['great', 'littl', 'phone', 'got', 'teenag', 'son', 'first', 'phone', 'job', 'unlock', 'use', 'prepaid', 'issu', 'set', 'dual', 'sim', 'least', 'blue', 'one', 'use', 'busi', 'number', 'one', 'sim', 'person', 'number', 'sim', 'not', 'fit', 'need', 'thought', 'i', 'would', 'mention', 'batteri', 'nice', 'long', 'decent', 'instruct', 'come', 'take', 'time', 'figur', 'everyth', 'lock', 'keypad', 'press', 'top', 'left', 'corner', 'control', 'button', 'key', 'howev', 'not', 'prevent', 'phone', 'shut', 'power', 'button', 'held', 'not', 'like', 'fact', 'real', 'complaint', 'j', 'radio', 'work', 'well', 'son', 'manag', 'get', 'music', 'mini', 'sd', 'card', 'load', 'phone', 'act', 'camera', 'not', 'believ', 'send', 'receiv', 'photo', 'least', 'not', 'abl', 'durabl', 'littl', 'phone', 'son', 'clumsi', 'drop', 'thing', 'lot', 'one', 'held', 'month', 'far', 'issu', 'internet', 'access', 'phone', 'whole', 'reason', 'purchas', 'not', 'feel', 'yr', 'old', 'access', 'entir', 'world', 'palm', 'hand', 'lot', 'respons', 'generat', 'focus', 'valid', 'self', 'social', 'media', 'wane', 'keep', 'focus', 'real', 'life', 'accomplish', 'face', 'face', 'interact', 'friend', 'go', 'motion', 'teen', 'push', 'freedom', 'experi', 'still', 'younger', 'side', 'teenag', 'year', 'phone', 'work', 'wonder', 'us', 'son', 'taken', 'encourag', 'fun', 'outdat', 'type', 'phone', 'school', 'often', 'make', 'remark', 'stone', 'age', 'phone', 'entic', 'humor', 'amongst', 'peer', 'say', 'not', 'mind', 'outdat', 'even', 'like', 'littl', 'sturdier', 'friend', 'cours', 'dream', 'iphon', 'thought', 'i', 'would', 'mention', 'case', 'parent', 'place', 'worri', 'child', 'might', 'hate', 'outdat', 'phone', 'not', 'know', 'love', 'think', 'best', 'interest', 'show', 'hope', 'review', 'detail', 'enough', 'type', 'futur', 'buyer'], ['excelent'], ['bought', 'two', 'two', 'year', 'ago', 'one', 'fell', 'sea', 'quit', 'work', 'year', 'bought', 'two', 'use', 'emerg', 'phone', 'lot', 'featur', 'cheap', 'phone', 'sound', 'clear', 'camera', 'work', 'fine', 'fun', 'pic', 'also', 'take', 'video', 'fm', 'radio', 'slot', 'sd', 'card', 'not', 'think', 'last', 'long', 'friend', 'mind', 'got', 'one', 'not', 'work', 'box', 'price', 'right', 'feel', 'bit', 'like', 'child', 'toy', 'old', 'one', 'two', 'year', 'fell', 'ocean', 'happi', 'not', 'realli', 'want', 'smart', 'phone'], ['algo', 'caro'], ['phone', 'better', 'review', 'say', 'not', 'buy', 'anymor', 'price', 'big', 'name', 'smartphon', 'best', 'buy', 'money'], ['bought', 'phone', 'grandpar', 'begin', 'april', 'phone', 'check', 'box', 'want', 'get', 'someth', 'use', 'everyday', 'life', 'end', 'may', 'phone', 'broke', 'simpli', 'boot', 'blu', 'vivo', 'intro', 'screen', 'restart', 'cycl', 'like', 'poor', 'qualiti', 'disappoint', 'never', 'buy', 'anyth', 'brand'], ['phone', 'ok', 'soft', 'ware', 'updat', 'bad', 'keep', 'lie', 'custom', 'post', 'upgrad', 'softwar', 'still', 'not', 'yet', 'keep', 'say', 'work'], ['got', 'phone', 'gold', 'color', 'soo', 'far', 'love'], ['high', 'qualiti'], ['ok'], ['phone', 'play', 'samsung', 'iphon', 'come', 'spec', 'kid', 'absolut', 'love', 'phone'], ['everyth', 'met', 'expect', 'phone', 'great', 'not', 'slow', 'almost', 'month', 'awesom', 'product'], ['amaz', 'phone', 'sold', 'amazon', 'bestbuy', 'show', 'good', 'phone', 'realli', 'love', 'phone', 'perform', 'screen', 'like', 'charm', 'mobil'], ['best', 'phone', 'i', 'go', 'love', 'everi', 'featur', 'phone'], ['far', 'i', 'impress', 'look', 'feel', 'function', 'phone', 'phone', 'lightweight', 'graphic', 'clear', 'app', 'speed', 'noteworthi', 'truli', 'match', 'size', 'graphic', 'pictur', 'take', 'function', 'expens', 'phone', 'took', 'one', 'star', 'screen', 'protector', 'come', 'phone', 'garbag', 'i', 'still', 'tri', 'figur', 'bubbl', 'come', 'lint', 'phone', 'clean', 'repeat', 'applic', 'screen', 'protector', 'end', 'take', 'protector', 'hour', 'interrupt', 'beauti', 'qualiti', 'graphic', 'tip', 'manufactur', 'design', 'better', 'screen', 'protector', 'not', 'send', 'one', 'phone', 'applic', 'protector', 'wast', 'consum', 'time', 'phone', 'case', 'not', 'phone', 'two', 'month', 'enjoy', 'part', 'blu', 'could', 'better', 'keep', 'android', 'os', 'upgrad', 'phone', 'still', 'lollipop', 'talk', 'upgrad', 'marshmallow', 'nougat', 'near', 'futur', 'matter', 'biggest', 'drawback', 'phone', 'keep', 'default', 'apn', 'set', 'i', 'add', 'set', 'remov', 'phone', 'stop', 'got', 'good', 'concept', 'would', 'nice', 'see', 'give', 'consider', 'custom', 'need'], ['excel', 'product'], ['fast', 'problem', 'like'], ['front', 'camera', 'flaw', 'phone'], ['honest', 'bigger', 'thought', 'love', 'i', 'use', 'type'], ['better', 'nexus', 'review', 'paid', 'phone', 'let', 'win', 'hand', 'downscreen', 'nexus', 'not', 'say', 'screen', 'bad', 'vivo', 'realli', 'good', 'tell', 'not', 'good', 'hold', 'side', 'side', 'extra', 'gig', 'ram', 'mediatek', 'processor', 'realli', 'shine', 'compar', 'snapdragon', 'bass', 'not', 'quit', 'good', 'clariti', 'much', 'better', 'high', 'midscal', 'qualityi', 'person', 'live', 'europ', 'gsm', 'band', 'close', 'phone', 'actual', 'prl', 'area', 'better', 'vivo', 'call', 'made', 'wife', 'europ', 'one', 'could', 'tell', 'either', 'end', 'phone', 'lifevivo', 'not', 'batteri', 'size', 'though', 'everyth', 'phone', 'paper', 'less', 'batteri', 'hog', 'root', 'everi', 'tweak', 'think', 'turn', 'gps', 'anyth', 'els', 'lucki', 'get', 'hour', 'screen', 'time', 'sot', 'vivo', 'not', 'doze', 'yet', 'come', 'newest', 'version', 'android', 'yet', 'easili', 'get', 'hour', 'sot', 'without', 'babi', 'everyth', 'full', 'throttl', 'babi', 'love', 'pro', 'tip', 'batteri', 'life', 'phone', 'tablet', 'uninstal', 'chrome', 'chromium', 'base', 'browser', 'go', 'firefox', 'featur', 'speed', 'also', 'gain', 'notic', 'bit', 'extra', 'batteri', 'life', 'uninstal', 'facebook', 'use', 'browser', 'access', 'gain', 'extra', 'batteri', 'life', 'day', 'promis', 'long', 'stori', 'want', 'spend', 'less', 'phone', 'blow', 'away', 'competit', 'hand', 'better', 'lg', 'asus', 'zenfon', 'own', 'three', 'gave', 'replac', 'zenfon', 'kept', 'blu'], ['stop', 'charg', 'day', 'unabl', 'return', 'live', 'caribbean', 'go', 'cost', 'time', 'amount', 'paid', 'phone', 'ship', 'back'], ['phone', 'piec', 'not', 'buy', 'reason', 'bought', 'phone', 'first', 'becam', 'restart', 'without', 'explan', 'month', 'got', 'warranti', 'fix', 'problem', 'microphon', 'not', 'work', 'ahh', 'way', 'blu', 'locat', 'miami', 'two', 'block', 'offic', 'pay', 'deliveri', 'not', 'receiv', 'phone', 'direct', 'custom', 'discuss', 'problem', 'also', 'pay', 'deliveri', 'fix', 'problem', 'conclus', 'phone', 'work', 'first', 'two', 'month', 'month', 'phone', 'still', 'want', 'buy', 'not', 'buy'], ['good', 'afternoon', 'sinc', 'bought', 'phone', 'behavior', 'slow', 'unload', 'app', 'use', 'system', 'stop', 'would', 'like', 'communic', 'chang', 'equip', 'review', 'thank'], ['love', 'phone', 'first', 'day', 'stop', 'work', 'not', 'get', 'even', 'turn', 'issu', 'tri', 'get', 'custom', 'servic', 'help', 'i', 'not', 'sure', 'next', 'step', 'like', 'phone', 'fix', 'replac'], ['wife', 'absolut', 'love', 'phone', 'thing', 'would', 'say', 'anyth', 'negat', 'power', 'button', 'volum', 'button', 'side', 'laid', 'quit', 'odd', 'say', 'sometim', 'put', 'phone', 'asleep', 'tri', 'volum', 'sinc', 'gotten', 'use', 'recommend', 'phone', 'anyon', 'budget', 'great', 'display', 'sound', 'fast', 'enough', 'everyth', 'thrown'], ['best', 'android', 'phone', 'ever', 'purchas', 'price', 'qualiti', 'dollar', 'phone', 'feel', 'great', 'ton', 'memori', 'storag', 'not', 'sorri', 'blu', 'compani', 'got', 'togeth'], ['best', 'phone', 'anyon', 'look', 'buy', 'phone', 'plz', 'buy', 'build', 'qualiti', 'like', 'iphon', 'feel', 'good', 'hand', 'love'], ['let', 'us', 'get', 'deep', 'video', 'review', 'blu', 'vivo', 'excel', 'usd', 'unlock', 'phone', 'right', 'network', 'usag', 'come', 'color', 'look', 'gold', 'version', 'phone', 'look', 'amaz', 'like', 'high', 'end', 'phone', 'mani', 'peopl', 'ask', 'version', 'iphon', 'galaxi', 'test', 'around', 'spec', 'excel', 'phone', 'dual', 'sim', 'card', 'one', 'sim', 'one', 'micro', 'sd', 'card', 'gorilla', 'glass', 'inch', 'amlo', 'ghz', 'octacor', 'board', 'intern', 'storag', 'use', 'slot', 'dual', 'sim', 'tray', 'rear', 'front', 'face', 'camera', 'good', 'qualiti', 'batteri', 'non', 'remov', 'cover', 'spec', 'let', 'dig', 'overal', 'anoth', 'great', 'qualiti', 'phone', 'blu', 'previous', 'review', 'studio', 'bit', 'bloatwar', 'android', 'os', 'alway', 'stay', 'close', 'stock', 'softwar', 'load', 'look', 'android', 'updat', 'marshmallow', 'get', 'unlock', 'get', 'sim', 'lot', 'network', 'keep', 'mind', 'miss', 'two', 'band', 'us', 'lte', 'network', 'get', 'much', 'better', 'coverag', 'metro', 'urban', 'area', 'way', 'limit', 'issu', 'call', 'drop', 'connect', 'first', 'tri', 'much', 'phone', 'phone', 'use', 'new', 'usb', 'c', 'type', 'adapt', 'includ', 'make', 'sure', 'anyth', 'get', 'add', 'well', 'even', 'extra', 'charger', 'wish', 'phone', 'qi', 'charg', 'abil', 'count', 'wish', 'toggl', 'button', 'side', 'easi', 'feel', 'work', 'headphon', 'jack', 'work', 'well', 'took', 'everi', 'headphon', 'fire', 'bluetooth', 'wifi', 'gps', 'issu', 'nfc', 'not', 'present', 'vivo', 'howev', 'tap', 'pay', 'abil', 'mode', 'hidden', 'featur', 'allow', 'hand', 'phone', 'protect', 'person', 'data', 'think', 'need', 'promot', 'lot', 'mani', 'phone', 'not', 'dig', 'featur', 'ui', 'like', 'theme', 'fli', 'fake', 'call', 'numer', 'secur', 'lock', 'anoth', 'good', 'qualiti', 'knock', 'dual', 'sim', 'phone', 'blu', 'price', 'point', 'bodi', 'gut', 'insid', 'phone', 'heck', 'deal'], ['order', 'phone', 'husband', 'previous', 'blu', 'life', 'xl', 'look', 'upgrad', 'blu', 'vivo', 'super', 'slim', 'look', 'classi', 'work', 'pretti', 'fast', 'take', 'great', 'pictur'], ['got', 'blu', 'today', 'excit', 'love', 'price', 'amaaz', 'android', 'girl', 'major', 'long', 'time', 'got', 'iphon', 'plus', 'twin', 'sister', 'gift', 'truli', 'not', 'go', 'tri', 'see', 'give', 'anoth', 'review', 'daysso', 'updat', 'phone', 'great', 'phone', 'wish', 'littl', 'research', 'compani', 'blu', 'make', 'whole', 'bunch', 'phone', 'may', 'lil', 'better', 'especi', 'not', 'look', 'break', 'bank', 'phone', 'saw', 'phone', 'list', 'amazon', 'less', 'look', 'extra', 'phone', 'instead', 'iphon', 'state', 'earlier', 'not', 'big', 'taken', 'quit', 'bit', 'photo', 'phone', 'love', 'crisp', 'clear', 'true', 'color', 'video', 'amaz', 'captur', 'pimpl', 'freckl', 'look', 'moder', 'price', 'phone', 'great', 'buy', 'android', 'user', 'not', 'tri', 'give', 'phone', 'compani', 'bill', 'money', 'video', 'qualiti', 'also', 'great', 'person', 'like', 'qualiti', 'better', 'iphon', 'not', 'bash', 'iphon', 'ppl', 'think', 'read', 'not', 'case', 'simpli', 'state', 'ask', 'son', 'daughter', 'qualiti', 'like', 'cours', 'chose', 'iphon', 'husband', 'chose', 'blu', 'said', 'video', 'pictur', 'qualiti', 'much', 'better', 'may', 'someth', 'mega', 'pixel', 'not', 'tech', 'savi', 'like', 'ppl', 'come', 'give', 'technic', 'give', 'opinion', 'great', 'phone', 'think', 'phone', 'stand', 'phone', 'market', 'purchas', 'not', 'paid', 'promis', 'payment', 'free', 'item', 'help', 'futur', 'purchas', 'item'], ['excit', 'impress', 'told', 'peopl', 'done', 'buy', 'expens', 'phone', 'littl', 'number', 'look', 'like', 'wife', 'expens', 'edg', 'perform', 'last', 'week', 'start', 'becom', 'increas', 'difficult', 'charg', 'watch', 'within', 'second', 'charg', 'go', 'plug', 'phone', 'realli', 'call', 'would', 'not', 'charg', 'almost', 'hrs', 'later', 'grant', 'phone', 'stay', 'plug', 'refus', 'charg', 'happen', 'return', 'window', 'close', 'feel', 'trick', 'know', 'terribl', 'product', 'fortun', 'guess', 'work', 'radio', 'station', 'petti'], ['bought', 'phone', 'month', 'ago', 'would', 'not', 'write', 'review', 'till', 'got', 'good', 'use', 'like', 'phone', 'see', 'use', 'long', 'camerastoragereli', 'durabl', 'drop', 'time', 'twice', 'day', 'still', 'work', 'like', 'charm', 'damag', 'noth', 'softwar', 'run', 'fine', 'love', 'quick', 'set', 'hasbatteri', 'batteri', 'awesom', 'fast', 'chargingkeyboardbeauti', 'screen', 'resolutionpackag', 'shippingcon', 'app', 'distort', 'mani', 'accessori', 'case', 'quick', 'set', 'slide', 'bottom', 'hard', 'pull', 'sometim', 'use', 'background', 'thing', 'sometim', 'not', 'pull', 'especi', 'youtub', 'gold', 'color', 'phone', 'like', 'peach', 'pinkish', 'headphon', 'come', 'phone', 'not', 'reliabl', 'hear', 'one', 'monthsal', 'con', 'not', 'outweigh', 'pros', 'except', 'speaker', 'mayb', 'i', 'look', 'buy', 'phone', 'white', 'great', 'phone'], ['phone', 'garbag', 'phone', 'stop', 'work', 'day', 'use', 'took', 'carribean', 'use', 'cost', 'allot', 'vet', 'back', 'return'], ['realli', 'seem', 'like', 'great', 'devic', 'first', 'smartphon', 'bit', 'learn', 'curv', 'bit', 'frustrat', 'time', 'tri', 'find', 'system', 'set', 'buri', 'menus', 'submenus', 'take', 'figur', 'thing', 'not', 'blu', 'fault', 'android', 'issu', 'i', 'sure', 'second', 'natur', 'real', 'critic', 'answer', 'phone', 'seem', 'like', 'hardest', 'thing', 'i', 'drive', 'hard', 'time', 'answer', 'without', 'get', 'distract', 'old', 'flip', 'easi', 'ridicul', 'not', 'even', 'need', 'take', 'eye', 'road', 'small', 'critic', 'purchas', 'silver', 'look', 'bit', 'subdu', 'compar', 'gold', 'color', 'open', 'box', 'discov', 'front', 'phone', 'white', 'side', 'back', 'fact', 'hard', 'tell', 'photo', 'devic', 'amazon', 'biggi', 'fyi'], ['best', 'phone', 'i', 'ever', 'complain', 'say', 'ram', 'actual', 'free', 'use', 'use', 'phone', 'around', 'month', 'love', 'samsung', 'past', 'tri', 'blu', 'absolut', 'sure', 'chang', 'brand', 'best', 'decis', 'ever'], ['not', 'work', 'boost', 'sprint', 'network'], ['phone', 'blew', 'away', 'best', 'deal', 'around', 'high', 'qualiti', 'phone', 'amaz', 'price', 'almost', 'seem', 'like', 'cheat', 'good'], ['fast', 'problem', 'like'], ['incred', 'phone', 'price', 'pay', 'would', 'kind', 'recommend', 'comment', 'pros', 'excel', 'price', 'fast', 'processornic', 'size', 'screen', 'incred', 'intern', 'memori', 'use', 'sd', 'memori', 'find', 'imposs', 'run', 'interfac', 'easi', 'camera', 'resolutionit', 'sim', 'card', 'use', 'sd', 'card', 'use', 'one', 'last', 'batteri', 'charg', 'extrem', 'fast', 'use', 'samsung', 'use', 'batteri', 'end', 'end', 'day', 'blu', 'phone', 'never', 'run', 'lte', 'work', 'perfect', 'embed', 'c', 'usb', 'cabl', 'not', 'common', 'least', 'yet', 'sure', 'buy', 'extra', 'app', 'shown', 'screen', 'unlik', 'samsung', 'could', 'leav', 'menu', 'not', 'show', 'mani', 'accessori', 'case', 'avail', 'yet'], ['awesom', 'solid', 'phone', 'screen', 'nice', 'chang', 'launcher', 'googl', 'launcher', 'instant', 'got', 'give', 'stock', 'feel', 'batteri', 'life', 'awesom'], ['work', 'great', 'good', 'product'], ['screen', 'okay', 'digit', 'underneath', 'broke', 'week'], ['love'], ['far', 'good', 'month', 'annoy', 'extens', 'micro', 'sd', 'fit', 'fat', 'format', 'i', 'not', 'got', 'time', 'find', 'card', 'size', 'yet', 'i', 'use', 'extens'], ['fianc', 'phone', 'say', 'mine', 'work', 'great', 'everi', 'pay', 'go', 'sim', 'put', 'work', 'hand', 'fianc', 'not', 'screen', 'b', 'extrem', 'bright', 'realli', 'dark', 'nice', 'two', 'speaker', 'hole', 'thought', 'sound', 'would', 'come', 'instal', 'one', 'speaker', 'not', 'two', 'i', 'kind', 'disappoint', 'phone', 'respond', 'quick', 'run', 'tsf', 'homescreen', 'tsf', 'give', 'lot', 'interact', 'option', 'home', 'screen', 'phone', 'work', 'fianc'], ['bought', 'blus', 'past', 'cheap', 'feel', 'screen', 'resolut', 'terribl', 'saw', 'good', 'review', 'new', 'model', 'bought', 'one', 'love', 'metal', 'feel', 'like', 'iphon', 'screen', 'look', 'good'], ['nice', 'phone'], ['love', 'phone'], ['good', 'cell', 'excel', 'design', 'offer', 'lot', 'right', 'price', 'camera', 'rate', 'first', 'daylight', 'night', 'not', 'good', 'still', 'not', 'disappoint', 'not', 'find', 'much', 'differ', 'qualiti', 'compar', 'samsung', 'appl', 'work', 'well', 'appal', 'network', 'argentina', 'critic', 'would', 'make', 'case', 'tast', 'particular', 'belief', 'wish', 'protect', 'cover', 'smartphon', 'soft', 'better', 'protect', 'silicon', 'grip', 'effect', 'screen', 'saver', 'difficult', 'instal', 'still', 'blu', 'give', 'us', 'complet', 'team', 'highest', 'qualiti', 'plus', 'accessori', 'absolut', 'logic', 'price', 'success', 'blu', 'brand'], ['receiv', 'phone', 'today', 'get', 'readi', 'set', 'realiz', 'i', 'miss', 'sim', 'card', 'open', 'tool', 'without', 'i', 'not', 'sure', 'i', 'suppos', 'instal', 'sim', 'sd', 'card', 'realli', 'excit', 'phone', 'not', 'even', 'use', 'spent', 'noth'], ['well', 'fellow', 'amazon', 'user', 'phone', 'exceed', 'expect'], ['noth', 'problem', 'phone', 'not', 'receiv', 'phone', 'order', 'phone', 'voicemail', 'messag', 'came', 'phone', 'even', 'technician', 'not', 'make', 'messag', 'portion', 'phone', 'oper', 'refer', 'advanc', 'depart', 'phone', 'came', 'sever', 'messag', 'alreadi', 'would', 'not', 'suggest', 'product', 'worth', 'own', 'alreadi', 'return', 'two', 'phone', 'one'], ['say', 'i', 'impress', 'truli', 'attract', 'phone', 'well', 'built', 'sleek', 'reminisc', 'iphon', 'consid', 'one', 'best', 'look', 'phone', 'ever', 'except', 'appropri', 'size', 'concern', 'lower', 'resolut', 'screen', 'panel', 'high', 'qualiti', 'would', 'hard', 'press', 'notic', 'normal', 'perform', 'fast', 'without', 'lag', 'even', 'graphic', 'intens', 'game', 'stutter', 'menus', 'anim', 'till', 'lot', 'game', 'app', 'run', 'camera', 'decent', 'camera', 'disabl', 'work', 'anyway', 'not', 'factor', 'use', 'case', 'limit', 'time', 'prove', 'excel', 'shooter', 'well', 'lit', 'area', 'accur', 'color', 'reproduct', 'sharp', 'detail', 'unfortun', 'suffer', 'low', 'light', 'mani', 'cell', 'phone', 'camera', 'batteri', 'life', 'amaz', 'sometim', 'get', 'screen', 'time', 'lower', 'resolut', 'panel', 'realli', 'come', 'play', 'allow', 'processor', 'push', 'less', 'pixel', 'thing', 'negat', 'say', 'not', 'like', 'stock', 'launcher', 'instal', 'easili', 'enough', 'not', 'take', 'star', 'i', 'would', 'say', 'price', 'perform', 'build', 'best', 'budget', 'phone', 'market'], ['nice', 'phone', 'peopl', 'spend', 'phone', 'get', 'good', 'qualiti', 'phone', 'car', 'payment'], ['phone', 'amaz', 'good', 'camera', 'fast', 'run', 'smooth', 'great', 'buy'], ['phone', 'meet', 'everi', 'expect', 'i', 'total', 'enjoy', 'experi', 'flagship', 'perform'], ['everyth', 'promis', 'not', 'know', 'way', 'configur', 'shortcut', 'wifi', 'bluethoot', 'plane', 'mode', 'use', 'nokia', 'thing'], ['excel', 'product', 'troubl', 'understand', 'os', 'not', 'common', 'android', 'feel', 'like', 'io', 'noth', 'not', 'get', 'use', 'feel', 'like', 'batteri', 'last', 'longer', 'first', 'two', 'week', 'like', 'hour', 'even', 'though', 'still', 'last', 'day', 'like', 'hour'], ['fast', 'deliveri', 'great', 'phone', 'compar', 'top', 'line', 'phone'], ['lot', 'phone', 'money', 'love', 'iphon'], ['phone', 'great', 'special', 'low', 'price', 'wish', 'screen', 'full', 'hd', 'phone', 'nice', 'deal'], ['great', 'phone', 'price', 'drop', 'screen', 'stop', 'work', 'buy', 'new', 'one', 'cours', 'love', 'much', 'bought', 'new', 'one', 'could', 'upgrad', 'like', 'design', 'one', 'best'], ['better', 'nexus', 'review', 'paid', 'phone', 'let', 'win', 'hand', 'downscreen', 'nexus', 'not', 'say', 'screen', 'bad', 'vivo', 'realli', 'good', 'tell', 'not', 'good', 'hold', 'side', 'side', 'extra', 'gig', 'ram', 'mediatek', 'processor', 'realli', 'shine', 'compar', 'snapdragon', 'bass', 'not', 'quit', 'good', 'clariti', 'much', 'better', 'high', 'midscal', 'qualityi', 'person', 'live', 'europ', 'gsm', 'band', 'close', 'phone', 'actual', 'prl', 'area', 'better', 'vivo', 'call', 'made', 'wife', 'europ', 'one', 'could', 'tell', 'either', 'end', 'phone', 'lifevivo', 'not', 'batteri', 'size', 'though', 'everyth', 'phone', 'paper', 'less', 'batteri', 'hog', 'root', 'everi', 'tweak', 'think', 'turn', 'gps', 'anyth', 'els', 'lucki', 'get', 'hour', 'screen', 'time', 'sot', 'vivo', 'not', 'doze', 'yet', 'come', 'newest', 'version', 'android', 'yet', 'easili', 'get', 'hour', 'sot', 'without', 'babi', 'everyth', 'full', 'throttl', 'babi', 'love', 'pro', 'tip', 'batteri', 'life', 'phone', 'tablet', 'uninstal', 'chrome', 'chromium', 'base', 'browser', 'go', 'firefox', 'featur', 'speed', 'also', 'gain', 'notic', 'bit', 'extra', 'batteri', 'life', 'uninstal', 'facebook', 'use', 'browser', 'access', 'gain', 'extra', 'batteri', 'life', 'day', 'promis', 'long', 'stori', 'want', 'spend', 'less', 'phone', 'blow', 'away', 'competit', 'hand', 'better', 'lg', 'asus', 'zenfon', 'own', 'three', 'gave', 'replac', 'zenfon', 'kept', 'blu'], ['beauti', 'phone', 'connect', 'issu', 'bluetooth', 'not', 'great', 'not', 'even', 'show', 'song', 'lyric', 'car', 'dashboard', 'led', 'light', 'not', 'work', 'third', 'parti', 'applic', 'disappoint', 'not', 'let', 'look', 'fool'], ['great', 'phone', 'featur', 'realli', 'good', 'price'], ['work', 'run', 'app'], ['nice', 'size', 'weight', 'look', 'feel'], ['great', 'smartphon', 'price', 'beauti', 'made', 'need', 'pay', 'plus', 'expens', 'high', 'end', 'one', 'month', 'later', 'appal', 'custom', 'servic', 'ever', 'experienc', 'complet', 'communic', 'languag', 'week', 'call', 'get', 'rma', 'number', 'blu', 'say', 'could', 'day', 'repairand', 'forget', 'email', 'complet', 'price', 'vivo', 'pretti', 'good', 'blu', 'initi', 'upgrad', 'phone', 'went', 'endless', 'boot', 'cycl', 'sent', 'warranti', 'upon', 'see', 'blu', 'expect', 'surpris', 'week', 'sent', 'new', 'vivo', 'without', 'comment', 'work', 'greatthank', 'blu'], ['updat', 'recent', 'receiv', 'ota', 'updat', 'fm', 'radio', 'basic', 'ad', 'differ', 'app', 'radio', 'not', 'fan', 'ad', 'bloatwar', 'app', 'purchas', 'gps', 'spotti', 'best', 'past', 'week', 'not', 'stay', 'connect', 'i', 'tri', 'glass', 'screen', 'protector', 'not', 'one', 'stay', 'seal', 'two', 'diagon', 'corner', 'i', 'begin', 'think', 'phone', 'also', 'bar', 'seem', 'real', 'i', 'bar', 'miss', 'phone', 'call', 'way', 'know', 'someon', 'call', 'voicemail', 'i', 'get', 'lost', 'star', 'reason', 'review', 'make', 'brief', 'phone', 'build', 'excel', 'feel', 'great', 'screen', 'good', 'bright', 'crisp', 'color', 'pop', 'good', 'touch', 'life', 'great', 'hour', 'screen', 'time', 'easili', 'snappi', 'lag', 'not', 'mind', 'blu', 'ui', 'chang', 'recept', 'excel', 'bar', 'got', 'last', 'phone', 'lte', 'onlydraw', 'back', 'not', 'connect', 'lte', 'area', 'last', 'phone', 'would', 'connect', 'adequ', 'work', 'not', 'bad', 'price', 'work', 'fine', 'cabl', 'instead', 'micro', 'usb', 'come', 'otg', 'cabl', 'work', 'okay', 'not', 'real', 'gripe', 'phone', 'lack', 'accessori', 'buy', 'case', 'screen', 'protector', 'skin', 'problem', 'blu', 'phone', 'although', 'thisphon', 'may', 'upgrad', 'marshmallow', 'hold', 'breath', 'knew', 'buy', 'phone', 'meant', 'probabl', 'okay', 'noth', 'promis', 'updat', 'love', 'phone', 'far', 'problem', 'switch', 'frommi', 'lg', 'vivo', 'glad'], ['look', 'lte', 'phone', 'not', 'correct', 'not', 'work', 'even', 'lte', 'say', 'lte', 'phone', 'batteri', 'not', 'last', 'day', 'take', 'long', 'time', 'charg'], ['phone', 'real', 'deal', 'thing', 'samsung', 'phone', 'not', 'let', 'like', 'tether', 'tablet'], ['freez', 'alot', 'compar', 'vivo', 'xl', 'take', 'aw', 'pictur', 'front', 'cam', 'fone', 'beauti', 'work', 'well'], ['bought', 'phone', 'son', 'impress', 'beauti', 'solid', 'lightweight', 'great', 'spec', 'wonder', 'price', 'read', 'review', 'elsewher', 'regard', 'screen', 'resolut', 'bright', 'look', 'beauti', 'us', 'want', 'spend', 'iphon', 'samsung', 'fine', 'less', 'damn', 'good', 'phone', 'blu', 'keep', 'get', 'better', 'releas', 'new', 'phone', 'somewhat', 'regular', 'basi', 'impress', 'phine'], ['like', 'much', 'better', 'samsung', 'phone', 'own'], ['great', 'phone', 'fast', 'great', 'size', 'woudl', 'high', 'recommend'], ['ok'], ['mobil', 'perfect', 'condit', 'star', 'due', 'lack', 'accessori', 'like', 'charger', 'headset'], ['phone', 'piec', 'junk', 'less', 'month', 'shut', 'not', 'abl', 'turn', 'back', 'hour', 'sudden', 'turn', 'back', 'also', 'freez'], ['nice', 'phone', 'thin', 'love'], ['phone', 'exceed', 'expect', 'mani', 'posit', 'review', 'accur', 'short', 'would', 'anoth'], ['excel', 'phone', 'samsung', 'galaxi', 'need', 'unlock', 'phone', 'oversea', 'use', 'first', 'time', 'china', 'israel', 'sinc', 'dual', 'sim', 'card', 'phone', 'simpl', 'chang', 'one', 'countri', 'next', 'googl', 'item', 'switch', 'without', 'problem', 'similar', 'samsung', 'batteri', 'last', 'longer', 'phone', 'love'], ['take', 'long', 'ring', 'batteri', 'take', 'hour', 'charg'], ['phone', 'not', 'charg', 'past'], ['hour', 'playtim', 'add', 'review', 'time', 'goe', 'googl', 'allow', 'transfer', 'ap', 'previous', 'phone', 'alcatel', 'nice', 'snappi', 'great', 'display', 'fast', 'charg', 'love', 'new', 'featur', 'phone', 'not', 'exampl', 'gestur', 'swipe', 'featur', 'open', 'camera', 'whenev', 'make', 'c', 'motion', 'screen', 'favorit', 'far', 'make', 'arrow', 'screen', 'program', 'turn', 'light', 'toggl', 'featur', 'alon', 'open', 'possibl', 'tasker', 'pebbl', 'tasker', 'ap', 'make', 'basic', 'advanc', 'program', 'task', 'phone', 'wife', 'watch', 'youtub', 'video', 'alongsid', 'new', 'samsung', 'galaxi', 'edg', 'not', 'big', 'differ', 'would', 'glad', 'take', 'save', 'batteri', 'anyday', 'not', 'main', 'video', 'still', 'go', 'strong', 'awesom', 'not', 'drop', 'call', 'bluetooth', 'good', 'excel', 'batteri', 'get', 'hang', 'take', 'pictur', 'steadi', 'hand', 'come', 'real', 'nice', 'would', 'like', 'know', 'phone', 'get', 'marshmallow', 'updat', 'would', 'nice', 'phone', 'batteri', 'last', 'day', 'quick', 'charg', 'get', 'juic', 'batteri', 'last', 'work', 'way', 'gym', 'restaur', 'phone', 'ultra', 'thin', 'light', 'weight', 'solid', 'feel', 'great', 'qualiti', 'speaker', 'loud', 'two', 'enjoy', 'watch', 'youtub', 'hulu', 'netflix', 'watch', 'crunchyrol', 'without', 'tire', 'eye', 'not', 'mani', 'case', 'found', 'basic', 'black', 'case', 'open', 'doubl', 'stand', 'not', 'case', 'view', 'window', 'sold', 'amazon', 'sold', 'ebay', 'took', 'long', 'time', 'get', 'worth', 'continu', 'use', 'black', 'screen', 'smart', 'gestur', 'come', 'handi', 'dark', 'take', 'pictur'], ['awesom', 'best', 'ever', 'spent'], ['great', 'phone', 'give', 'everyth', 'need', 'need', 'spend', 'big', 'buck', 'one', 'work', 'well', 'complain', 'volum', 'wonder', 'ever', 'peel', 'sticker', 'back', 'cover', 'speakerphon'], ['qualiti', 'build', 'nice', 'cool', 'featur'], ['good', 'phone', 'love'], ['look', 'sleek', 'lot', 'not', 'happi', 'volum', 'ringer', 'consequ', 'miss', 'call', 'call', 'pathway', 'feat', 'not', 'easi', 'find', 'experienc', 'phone'], ['love', 'new', 'phone'], ['buy', 'phone', 'work', 'good', 'espeak', 'work', 'good', 'thay', 'san', 'replac', 'problem', 'not', 'recomen', 'product'], ['receiv', 'phone', 'today', 'like', 'far', 'problem', 'i', 'sound', 'text', 'notif'], ['gracia'], ['around', 'great', 'phone', 'especi'], ['star', 'day', 'upgrad', 'hit', 'sweet', 'spot', 'yes', 'not', 'amol', 'screen', 'screen', 'sharp', 'clear', 'not', 'miss', 'amol', 'use', 'display', 'look', 'lot', 'better', 'previous', 'gen', 'flash', 'front', 'phone', 'selfi', 'cool', 'never', 'seen', 'special', 'phone', 'buck', 'feel', 'like', 'dollar', 'phone', 'easi', 'promis', 'compani'], ['state', 'art', 'qualiti', 'without', 'outrag', 'price', 'tag'], ['third', 'blu', 'differ', 'model', 'get', 'better', 'issu', 'phone', 'volum', 'power', 'button', 'wrong', 'place', 'right', 'hand', 'screen', 'protector', 'not', 'par', 'peel', 'easili', 'one', 'thing', 'would', 'like', 'seen', 'model', 'mirror', 'like', 'back', 'enjoy', 'use', 'much', 'phone', 'i'], ['good'], ['previous', 'own', 'oneplus', 'one', 'batteri', 'not', 'hold', 'charg', 'anymor', 'need', 'compar', 'replac', 'blu', 'vivo', 'worthi', 'replac', 'love', 'screen', 'resolut', 'replac', 'stock', 'launcher', 'nova', 'launcher', 'felt', 'familiar', 'batteri', 'hold', 'decent', 'charg', 'fingerprint', 'sensor', 'great', 'featur', 'easi', 'program', 'work', 'thing', 'wish', 'improv', 'model', 'speaker', 'fact', 'not', 'seem', 'group', 'mms', 'text', 'i', 'use', 'wifi', 'anyon', 'els', 'encount', 'problem', 'still', 'worth', 'high', 'recommend', 'anyth', 'chang', 'i', 'provid', 'updat', 'thank', 'blu', 'make', 'afford', 'flagship', 'qualiti', 'phone'], ['look', 'great'], ['return', 'replac', 'hangout', 'crash', 'static', 'voip', 'base', 'call', 'devic', 'heat'], ['worthless', 'phone', 'not', 'even', 'hear', 'speaker', 'not', 'work'], ['bought', 'warehous', 'use', 'accept', 'phone', 'save', 'money', 'not', 'get', 'case', 'screen', 'saver', 'buy', 'separ', 'phone', 'realli', 'good', 'condit', 'sign', 'wear', 'damag', 'manual', 'idea', 'benefit', 'dts', 'sound', 'sim', 'card', 'not', 'recogn', 'phone', 'kept', 'say', 'damag', 'sim', 'card', 'reformat', 'end', 'use', 'gb', 'lay', 'around', 'gb', 'work', 'fine', 'issu', 'volum', 'not', 'loud', 'head', 'phone', 'like', 'phone', 'would', 'buy', 'initi', 'opinion', 'batteri', 'drain', 'fast', 'side', 'finger', 'print', 'scanner', 'work', 'realli', 'well', 'hand', 'fingerprint', 'save', 'touch', 'either', 'hand', 'index', 'finger', 'not', 'know', 'warranti', 'phone', 'come', 'discount', 'warehous', 'phone', 'even', 'warranti', 'find', 'thing', 'not', 'need', 'warranti', 'not', 'worri', 'warranti', 'like', 'phone', 'glad', 'purchas', 'phone', 'one', 'galaxi', 'nokia'], ['total', 'not', 'pleas', 'volum', 'hear', 'call', 'hear', 'caller', 'even', 'use', 'speaker', 'not', 'help', 'disappoint', 'blu', 'phone'], ['blown', 'away', 'light', 'thin', 'phone', 'great', 'phone', 'use', 'secondari', 'devic', 'still', 'decent', 'daili', 'driver'], ['realli', 'good', 'light'], ['thin', 'far', 'thinner', 'iphon', 'android', 'i', 'seen', 'also', 'light', 'almost', 'half', 'heavi', 'similar', 'size', 'smartphon', 'without', 'feel', 'cheap', 'vivid', 'color', 'like', 'stare', 'sun', 'full', 'bright', 'ridicul', 'bright', 'great', 'outdoor', 'use', 'keep', 'bright', 'slighter', 'mayb', 'bright', 'old', 'smartphon', 'max', 'audio', 'qualiti', 'hear', 'other', 'clear', 'ampl', 'volum', 'one', 'yet', 'complain', 'i', 'hard', 'respons', 'open', 'app', 'brows', 'etc', 'bug', 'android', 'version', 'i', 'experienc', 'camera', 'app', 'crash', 'scroll', 'bottom', 'option', 'menu', 'otherwis', 'solid', 'not', 'come', 'mani', 'app', 'need', 'delet', 'not', 'delet', 'disabl', 'good', 'wifi', 'strength', 'pick', 'signal', 'router', 'part', 'home', 'phone', 'conk', 'life', 'seem', 'impress', 'far', 'full', 'day', 'use', 'still', 'rang', 'downsid', 'microsd', 'guess', 'due', 'size', 'limit', 'leav', 'almost', 'avail', 'beyond', 'os', 'stock', 'app', 'ship', 'not', 'case', 'phone', 'ship', 'chintzi', 'not', 'offer', 'much', 'protect', 'drop', 'make', 'phone', 'uncomfort', 'hold', 'sinc', 'sharp', 'edg', 'run', 'along', 'bottom', 'cut', 'pinki', 'rest', 'phone', 'talk', 'would', 'not', 'issu', 'not', 'case', 'version', 'yet', 'camera', 'speaker', 'layout', 'chang', 'not', 'use', 'old', 'air', 'case', 'would', 'prefer', 'ship', 'case', 'like', 'two', 'blu', 'phone', 'happi', 'phone', 'would', 'buy', 'alreadi', 'recommend', 'sever', 'friend'], ['say', 'phone', 'not', 'look', 'like', 'past', 'blu', 'phone', 'seen', 'charg', 'first', 'impress', 'great', 'slim', 'feel', 'good', 'hand', 'expens', 'look', 'unbeliev', 'build', 'qualiti', 'hat', 'blu', 'continu'], ['pros', 'light', 'weight', 'thin', 'great', 'size', 'sharp', 'screen', 'good', 'cameracon', 'bad', 'gps', 'receiv', 'weak', 'wifi', 'receiv', 'mani', 'softwar', 'glitch', 'get', 'stuck', 'frequent', 'auto', 'restart', 'chang', 'set', 'automat', 'fail', 'resiz', 'wall', 'paper', 'etc', 'not', 'support', 'main', 'thing', 'took', 'star', 'gps', 'mani', 'time', 'phone', 'get', 'signal', 'one', 'not', 'critic', 'featur', 'softwar', 'glitch', 'also', 'annoy', 'work', 'look', 'feel', 'chang', 'star', 'asid', 'problem', 'describ', 'phone', 'not', 'flat', 'anymor', 'get', 'extrem', 'hot', 'sometim', 'contact', 'blu', 'custom', 'servic', 'email', 'phone', 'call', 'long', 'wait', 'time', 'total', 'un', 'help', 'ask', 'tell', 'call', 'differ', 'time', 'alreadi', 'sent', 'photo', 'video', 'show', 'problem'], ['blu', 'becom', 'one', 'best', 'android', 'manufactur', 'middl', 'top', 'class', 'air', 'amaz', 'super', 'thin', 'super', 'good', 'small', 'awesom', 'featur', 'cool', 'camera', 'realli', 'good', 'dlsr', 'expect', 'camera', 'perform', 'well', 'condit', 'except', 'dark', 'expect', 'mobil', 'devic', 'super', 'os', 'great', 'clean', 'clutter', 'except', 'blu', 'support', 'app', 'recommend', 'yes', 'would', 'use', 'daili', 'phone', 'yes', 'good', 'back', 'phone', 'heck', 'price', 'beat', 'phone'], ['good', 'phone', 'blu', 'thin', 'light', 'not', 'feel', 'cheap', 'fast', 'latest', 'technolog', 'nfc', 'howev', 'minor', 'compar', 'featur', 'get', 'price', 'camera', 'good', 'front', 'sd', 'card', 'capabl', 'though', 'work', 'well', 'reliabl'], ['receiv', 'monday', 'third', 'phone', 'purchas', 'blu', 'not', 'understand', 'these', 'complaint', 'not', 'enough', 'storag', 'gb', 'not', 'purchas', 'anoth', 'user', 'wifi', 'not', 'connect', 'three', 'phone', 'user', 'phone', 'world', 'not', 'flagship', 'phone', 'close', 'price', 'point', 'avail', 'option', 'receiv', 'not', 'get', 'anyth', 'closer'], ['phone', 'great', 'except', 'color', 'want', 'white', 'stalk', 'two', 'issu', 'though', 'one', 'phone', 'case', 'sent', 'phone', 'scratch', 'paint', 'corner', 'within', 'first', 'coupl', 'wks', 'second', 'speaker', 'blown', 'one', 'day', 'awesom', 'coupl', 'day', 'ago', 'notic', 'crackl', 'rington', 'blu', 'rington', 'use', 'yea', 'kind', 'cheap', 'defect', 'anyway', 'said', 'i', 'ok', 'consid', 'throw', 'away', 'price', 'phone'], ['perfect'], ['great', 'super', 'sexi', 'look', 'issu', 'not', 'receiv', 'phone', 'call', 'end', 'phone', 'call', 'middl', 'convers', 'not', 'built', 'well', 'speaker', 'blow', 'right', 'day', 'return', 'polici', 'never', 'use', 'cellphon', 'speaker', 'use', 'bluetooth', 'gorilla', 'glass', 'ass', 'glass', 'fabric', 'insid', 'bluejean', 'pocket', 'scratch', 'glass', 'not', 'buy', 'grante', 'regret'], ['love', 'phone', 'thin', 'light', 'not', 'huge', 'repeat', 'not', 'huge', 'phone', 'light', 'not', 'tell', 'shirt', 'pocket', 'blow', 'mind', 'fast', 'enough', 'run', 'near', 'stock', 'android', 'blu', 'great', 'product', 'great', 'price'], ['everyth', 'expect', 'except', 'written', 'manual', 'expect', 'descript', 'need', 'written', 'not', 'phone', 'manual', 'elder', 'need', 'read', 'time', 'direct'], ['expect', 'realli', 'nice', 'phone', 'slim', 'enough', 'memori', 'download', 'favorit', 'app', 'downsid', 'break', 'crack', 'screen', 'not', 'replac', 'blu', 'not', 'produc', 'replac', 'part', 'yet', 'downsid', 'great', 'phone', 'realli'], ['excel', 'product'], ['amaz'], ['good', 'option', 'price'], ['thought', 'day', 'use', 'batteri', 'batteri', 'life', 'batteri', 'doctor', 'greenifi', 'great', 'improv', 'batteri', 'life', 'first', 'hour', 'first', 'two', 'day', 'moder', 'usag', 'minut', 'call', 'time', 'phone', 'averag', 'batteri', 'life', 'full', 'day', 'hour', 'work', 'day', 'charg', 'taken', 'charger', 'moder', 'use', 'includ', 'minut', 'talk', 'time', 'phone', 'batteri', 'life', 'also', 'leav', 'wifi', 'data', 'bluetooth', 'locat', 'time', 'android', 'smart', 'watch', 'pair', 'almost', 'time', 'go', 'hour', 'day', 'pretti', 'dang', 'good', 'not', 'good', 'luck', 'blu', 'phone', 'batteri', 'life', 'past', 'thought', 'batteri', 'would', 'pose', 'small', 'issu', 'look', 'like', 'not', 'far', 'look', 'beauti', 'phone', 'appar', 'first', 'glanc', 'look', 'similar', 'newer', 'iphon', 'close', 'easili', 'see', 'differ', 'clean', 'sleek', 'aluminum', 'trim', 'around', 'edg', 'nice', 'provid', 'case', 'still', 'look', 'great', 'would', 'say', 'slight', 'need', 'gorilla', 'glass', 'front', 'back', 'make', 'phone', 'slight', 'inclin', 'slide', 'around', 'incred', 'thin', 'come', 'galaxi', 'phone', 'case', 'look', 'like', 'half', 'thick', 'light', 'almost', 'feel', 'like', 'display', 'model', 'handl', 'well', 'absolut', 'love', 'perform', 'come', 'stock', 'android', 'lollipop', 'phone', 'not', 'latest', 'processor', 'ram', 'greatest', 'display', 'not', 'disappoint', 'way', 'fast', 'respons', 'multitask', 'well', 'work', 'exact', 'way', 'want', 'call', 'volum', 'could', 'louder', 'speaker', 'volum', 'excel', 'get', 'borderlin', 'loud', 'get', 'littl', 'tinni', 'sound', 'impress', 'start', 'quick', 'app', 'snap', 'open', 'good', 'experi', 'lte', 'may', 'not', 'support', 'area', 'not', 'right', 'band', 'look', 'detail', 'lte', 'work', 'not', 'not', 'issu', 'sinc', 'great', 'wifi', 'home', 'overal', 'not', 'seem', 'go', 'wrong', 'contract', 'unlock', 'stock', 'android', 'littl', 'bloatwar', 'run', 'like', 'champ', 'potenti', 'get', 'great', 'batteri', 'life', 'get', 'right', 'manag', 'app', 'give', 'tri', 'like', 'not', 'let'], ['sim', 'card', 'error', 'tri', 'sim', 'card', 'result', 'wast'], ['love', 'phone', 'way', 'featur', 'expect', 'awesom', 'valu', 'i', 'recommend', 'friend'], ['ohh', 'phone', 'amazin', 'like', 'year', 'peopl', 'alway', 'say', 'look', 'amaz'], ['awesom', 'phone', 'great', 'price', 'coupl', 'blu', 'phone', 'past', 'never', 'disappoint', 'top', 'qualiti', 'devic', 'fraction', 'big', 'brand', 'devic', 'lot', 'goodi', 'like', 'case', 'bluetooth', 'selfi', 'stick', 'screen', 'protector', 'android', 'softwar', 'make', 'devic', 'run', 'smooth', 'without', 'bunch', 'stuff', 'get', 'way', 'android', 'version', 'big', 'brand', 'devic', 'cool', 'glam', 'flash', 'front', 'camera', 'give', 'right', 'amount', 'light', 'need', 'get', 'selfi', 'not', 'power', 'illumin', 'would', 'get', 'back', 'camera', 'flash', 'still', 'featur', 'phone', 'fast', 'respons', 'process', 'power', 'amaz', 'bright', 'detail', 'color', 'deliv', 'super', 'hd', 'amol', 'screen'], ['best', 'smart', 'phone', 'bought', 'far', 'also', 'third', 'blu', 'phone', 'bought', 'two', 'studio', 'seri', 'worth', 'money', 'not', 'great', 'most', 'compar', 'studio', 'hd', 'sinc', 'still', 'one', 'could', 'compar', 'side', 'side', 'cost', 'origin', 'display', 'size', 'never', 'own', 'ole', 'display', 'devic', 'differ', 'huge', 'far', 'better', 'own', 'contrast', 'fantast', 'not', 'even', 'realli', 'see', 'display', 'end', 'surround', 'start', 'view', 'black', 'edg', 'ip', 'screen', 'studio', 'hd', 'although', 'pretti', 'good', 'alway', 'see', 'dark', 'black', 'imag', 'not', 'size', 'nice', 'lot', 'thinner', 'lighter', 'slight', 'smaller', 'studio', 'hd', 'provid', 'resolut', 'higher', 'pixel', 'densiti', 'processor', 'speed', 'descent', 'also', 'better', 'studio', 'mayb', 'ram', 'someth', 'els', 'respons', 'load', 'web', 'page', 'quicker', 'etc'], ['phone', 'work', 'fine', 'complet', 'crap', 'without', 'warn', 'absolut', 'pos', 'high', 'recommend', 'pay', 'bit', 'get', 'product', 'suck', 'compani', 'not', 'aw', 'buyer', 'bewar', 'phone', 'work', 'stop'], ['realli', 'good', 'first', 'month', 'issu', 'charger', 'connector', 'charg', 'random', 'not', 'good'], ['second', 'blu', 'phone', 'great', 'bang', 'buck', 'even', 'come', 'perfect', 'fit', 'silicon', 'case', 'would', 'pay', 'bloatwar', 'laden', 'bomb', 'phone', 'buy', 'reliabl', 'classi', 'phone', 'not', 'go', 'get', 'techi', 'revu', 'leav', 'other', 'work', 'love', 'enough', 'said'], ['good', 'phone', 'camera', 'good', 'not', 'hesit', 'buy'], ['best', 'android', 'phone', 'i', 'own', 'hand', 'price', 'perform', 'come', 'play', 'noth', 'els', 'beat', 'batteri', 'life', 'perform', 'profession', 'camera', 'mode', 'camera', 'great', 'lag', 'free', 'understand', 'use', 'custom', 'gestur', 'make', 'phone', 'everyth', 'i', 'love', 'flagship', 'i', 'person', 'own', 'one', 'neat', 'packag', 'beauti', 'satur', 'display', 'includ', 'accessori', 'boot', 'make', 'even', 'better', 'buy', 'not', 'wait', 'repackag', 'phone', 'gione', 'much', 'superior', 'kernel', 'cost', 'ram', 'sold', 'probabl', 'stay', 'sold', 'wow', 'great', 'job', 'blu', 'hate', 'code', 'not', 'open', 'sourc', 'promis', 'upgrad', 'not', 'bad', 'shame', 'get', 'price', 'still', 'kudo', 'turn', 'gione', 'pile', 'crap', 'geekbench', 'singl', 'multi', 'not', 'plan', 'play', 'world', 'tank', 'blitz', 'blow', 'anyth', 'els', 'popular', 'somewhat'], ['awsom'], ['great', 'phone', 'real', 'downsid', 'hard', 'thing', 'find', 'smart', 'case', 'phone', 'howev', 'come', 'free', 'clear', 'silicon', 'case', 'screen', 'respons', 'time', 'phone', 'quit', 'fast', 'use', 'person', 'busi', 'phone', 'lag', 'time', 'transit', 'app', 'not', 'tri', 'game', 'process', 'phone', 'past', 'review', 'said', 'lag'], ['not', 'work', 'box', 'screen', 'crack', 'tri', 'put', 'case', 'could', 'not', 'send', 'back'], ['bad'], ['excel', 'busi', 'phone', 'travel', 'lot', 'sea', 'happi', 'far', 'two', 'sim', 'one', 'phone', 'great'], ['nice', 'phone', 'although', 'blu', 'product', 'someth', 'aw', 'almost', 'non', 'existantcustom', 'servic', 'repres', 'i', 'blu', 'win', 'hd', 'successor', 'lte', 'edit', 'bothar', 'pretti', 'good', 'phone', 'know', 'time', 'hard', 'job', 'difficult', 'come', 'hire', 'worst', 'worst', 'i', 'contact', 'withblu', 'rep', 'time', 'complet', 'useless', 'answer', 'came', 'email', 'url', 'link', 'tosit', 'noth', 'problem', 'hassl', 'blu', 'i', 'would', 'suggest', 'anoth', 'devic', 'keep', 'finger', 'cross'], ['updat', 'review', 'origin', 'gave', 'one', 'star', 'phone', 'broke', 'less', 'month', 'thing', 'amazon', 'conveni', 'return', 'virtual', 'anyth', 'reason', 'miss', 'day', 'return', 'window', 'blu', 'win', 'complet', 'forgot', 'phone', 'turn', 'howev', 'manufactur', 'warranti', 'obvious', 'call', 'blu', 'custom', 'servic', 'three', 'month', 'origin', 'purchas', 'long', 'stori', 'short', 'custom', 'servic', 'superb', 'think', 'locat', 'florida', 'not', 'somewher', 'offshor', 'although', 'i', 'not', 'entir', 'sure', 'simpli', 'replac', 'phone', 'new', 'one', 'upload', 'invoic', 'imag', 'amazon', 'websit', 'took', 'two', 'phone', 'call', 'coupl', 'week', 'wait', 'total', 'worth', 'got', 'brand', 'new', 'phone', 'free', 'use', 'new', 'phone', 'littl', 'month', 'must', 'say', 'i', 'happi', 'not', 'dollar', 'phone', 'consid', 'price', 'realli', 'deserv', 'five', 'star', 'also', 'window', 'realli', 'grow', 'window', 'not', 'window', 'suppos', 'releas', 'window', 'updat', 'end', 'never', 'happen', 'reason', 'took', 'away', 'one', 'star', 'minor', 'problem', 'charg', 'other', 'point', 'not', 'sure', 'phone', 'not', 'charg', 'could', 'bad', 'contact', 'port', 'i', 'not', 'sure', 'not', 'major', 'problem', 'far', 'also', 'linger', 'feel', 'phone', 'might', 'die', 'time', 'sinc', 'happen', 'guess', 'i', 'paranoid', 'case', 'i', 'use', 'phone', 'phone', 'android', 'look', 'forward', 'window', 'old', 'review', 'die', 'less', 'month', 'first', 'must', 'say', 'rather', 'happi', 'phone', 'least', 'littl', 'bit', 'nervous', 'buy', 'phone', 'name', 'brand', 'turn', 'pretti', 'decent', 'phone', 'price', 'notic', 'small', 'problem', 'touch', 'noth', 'major', 'even', 'start', 'use', 'secondari', 'primari', 'phone', 'phone', 'most', 'android', 'start', 'love', 'window', 'phone', 'one', 'nice', 'thing', 'particular', 'model', 'dual', 'sim', 'rare', 'week', 'later', 'howev', 'phone', 'die', 'one', 'morn', 'earlier', 'last', 'week', 'woke', 'realiz', 'phone', 'would', 'not', 'turn', 'i', 'own', 'mani', 'differ', 'phone', 'year', 'dozen', 'not', 'first', 'time', 'phone', 'hardwar', 'fail', 'absolut', 'reason', 'disappoint', 'manufactur', 'qualiti', 'devic', 'btw', 'funni', 'thing', 'notic', 'return', 'window', 'product', 'amazon', 'close', 'yesterday', 'indic', 'phone', 'actual', 'broke', 'less', 'month', 'anyway', 'alway', 'mind', 'buy', 'phone', 'like'], ['far', 'phone', 'work', 'well', 'not', 'updat', 'window', 'though', 'window'], ['money', 'great', 'app', 'comparison', 'anyth', 'els'], ['perfect', 'came', 'everyth', 'need', 'want', 'like', 'case', 'screen', 'protector', 'fantast', 'phone', 'lightn', 'fast', 'could', 'not', 'ask', 'better', 'phone'], ['look', 'easi', 'set', 'use', 'micro', 'sd', 'sim', 'use', 'europ', 'need', 'sim', 'card', 'phone', 'call', 'hope', 'problem', 'arriv', 'prompt', 'good', 'condit', 'bought', 'yellow', 'quick', 'find', 'bag'], ['bought', 'phone', 'tire', 'android', 'note', 'dual', 'sim', 'phone', 'could', 'great', 'phone', 'ok', 'though', 'want', 'phone', 'make', 'call', 'plus', 'offer', 'basic', 'featur', 'howev', 'even', 'call', 'lack', 'crucial', 'function', 'not', 'hide', 'caller', 'id', 'exampl', 'save', 'number', 'call', 'first', 'time', 'much', 'annoy', 'not', 'block', 'caller', 'also', 'manag', 'network', 'roam', 'leav', 'border', 'two', 'countri', 'imagin', 'phone', 'done', 'bill', 'realli', 'suck', 'android', 'phone', 'either', 'offer', 'featur', 'app', 'avail', 'offer', 'major', 'drawback', 'bold', 'like', 'us', 'not', 'bold', 'perhap', 'lack'], ['like', 'product', 'lot'], ['good', 'phone'], ['good', 'phone', 'money', 'bad', 'thing', 'batteri', 'built', 'phone'], ['product', 'receiv', 'time', 'realli', 'love'], ['phone', 'got', 'one', 'not', 'hold', 'charg', 'two', 'went', 'updat', 'phone', 'froze', 'not', 'turn', 'respond', 'three', 'look', 'like', 'mess', 'back', 'batteri', 'realli', 'would', 'like', 'also', 'give', 'bad', 'review', 'seller', 'order', 'phone', 'not', 'even', 'ship', 'tell', 'think', 'realli', 'compens', 'not', 'buy'], ['realli', 'cool', 'sleek', 'not', 'even', 'tell', 'expect', 'look', 'thicker', 'screen', 'work', 'perfect'], ['best', 'cell', 'ever', 'previous', 'version', 'decid', 'upgrad', 'far', 'best', 'thing', 'ever'], ['great', 'phone'], ['work', 'well', 'price', 'wonder'], ['great', 'starter', 'phone', 'not', 'realli', 'download', 'anyth', 'not', 'get', 'best', 'social', 'media', 'app', 'facebook', 'kik', 'instagram', 'not', 'get', 'video', 'anyth', 'not', 'text'], ['excel', 'product'], ['good', 'product', 'everyth', 'work', 'smooth', 'ship', 'fast', 'trusti'], ['excelent'], ['excel'], ['problem', 'set', 'reset', 'phone', 'work', 'pefect'], ['pretti', 'cool', 'phone'], ['batteri', 'not', 'good', 'normal', 'would', 'better', 'extra', 'gig', 'ram', 'phone', 'good'], ['overal', 'like', 'phone', 'i', 'nokia', 'gophon', 'i', 'android', 'phone', 'well', 'prefer', 'window', 'phone', 'os', 'size', 'phone', 'look', 'i', 'pleas', 'like', 'clear', 'case', 'came', 'lower', 'end', 'phone', 'speaker', 'accept', 'camera', 'weak', 'i', 'not', 'person', 'take', 'photo', 'week', 'fine', 'take', 'pic', 'remind'], ['got', 'i', 'not', 'sure', 'kind', 'special', 'go', 'wow', 'amaz', 'price', 'let', 'know', 'i', 'come', 'iphon', 'plus', 'honest', 'not', 'realli', 'need', 'need', 'someth', 'practic', 'i', 'window', 'guy', 'iron', 'pick', 'thing', 'i', 'glad', 'load', 'way', 'featur', 'expect', 'get', 'excel', 'servic', 'super', 'snappi', 'almost', 'lag', 'time', 'i', 'come', 'use', 'plus', 'one', 'fastest', 'phone', 'current', 'debat', 'buy', 'thing', 'owner', 'mani', 'high', 'low', 'end', 'phone', 'model', 'id', 'say', 'buy', 'i', 'not', 'much', 'fan', 'lower', 'end', 'android', 'super', 'buggi', 'laggi', 'thing', 'run', 'like', 'comput', 'nextbook', 'awesom', 'buy'], ['good', 'phone', 'run', 'smooth', 'window', 'phone', 'upgrad', 'avail', 'good', 'back', 'front', 'camera', 'display', 'good', 'hd', 'video', 'price', 'big', 'deal', 'offer', 'hope', 'phone', 'still', 'work', 'much', 'time', 'hope', 'well', 'xd'], ['bought', 'phone', 'father', 'father', 'day', 'three', 'week', 'ago', 'use', 'sudden', 'rainbow', 'screen', 'i', 'not', 'even', 'sure', 'warranti', 'phone', 'messag', 'seller', 'unabl', 'give', 'proper', 'feedback', 'said', 'phone', 'work', 'first', 'not', 'fall', 'anyth', 'sort', 'enjoy', 'phone', 'not', 'know', 'happen', 'need', 'get', 'help'], ['phone', 'amaz', 'purchas', 'year', 'old', 'son', 'work', 'perfect', 'not', 'beat', 'price'], ['great', 'phone', 'camera', 'lack', 'littl', 'speaker', 'lack', 'littl', 'pay', 'littl', 'get'], ['love', 'cell', 'phone', 'great', 'phone', 'great', 'recommend'], ['phone', 'got', 'one', 'not', 'hold', 'charg', 'two', 'went', 'updat', 'phone', 'froze', 'not', 'turn', 'respond', 'three', 'look', 'like', 'mess', 'back', 'batteri', 'realli', 'would', 'like', 'also', 'give', 'bad', 'review', 'seller', 'order', 'phone', 'not', 'even', 'ship', 'tell', 'think', 'realli', 'compens', 'not', 'buy'], ['far', 'phone', 'work', 'well', 'not', 'updat', 'window', 'though', 'window'], ['got', 'phone', 'wife', 'said', 'great', 'phone', 'ship', 'fast', 'good', 'price'], ['hard', 'work'], ['buen', 'producto', 'good'], ['upgrad', 'window', 'ago', 'current', 'use', 'two', 'sim', 'busi', 'person', 'everyth', 'work', 'fine', 'voic', 'text', 'sms', 'mms', 'wifi', 'hotspot', 'laptop', 'dc', 'area', 'speediest', 'show', 'stream', 'mbps', 'consist', 'cellular', 'data', 'not', 'wifi', 'connect'], ['love', 'phone', 'best', 'one', 'price', 'bug', 'issu', 'not', 'major', 'one'], ['love', 'phone', 'kind', 'hard', 'keep', 'servic', 'home', 'though'], ['thank', 'cell', 'good'], ['general', 'like', 'much', 'believ', 'relat', 'price', 'good', 'product', 'recommend'], ['excel', 'product', 'recommend', 'happi'], ['phone', 'screen', 'stop', 'work', 'day', 'bad', 'buy', 'return', 'day', 'not', 'buy', 'phone', 'zero', 'star', 'ever', 'buy', 'blu', 'one', 'good'], ['not', 'buy', 'extrem', 'slow', 'not', 'get', 'lot', 'app', 'speaker', 'stunk', 'bad', 'everyth', 'phone', 'joke', 'except', 'style', 'appeal', 'top', 'plug', 'charg', 'one', 'day', 'month', 'buy', 'boom', 'got', 'big', 'blu', 'screen', 'yes', 'frowni', 'face', 'still', 'bought', 'late', 'may', 'malfunct', 'august', 'late', 'return', 'disappoint'], ['good', 'product', 'take', 'account', 'think', 'better', 'earphon', 'improv', 'perform', 'cel'], ['terribl', 'instruct', 'not', 'list', 'icon', 'might', 'tri', 'write', 'booklet', 'beginn', 'tj'], ['phone', 'unexpect', 'limit', 'not', 'open', 'attach', 'view', 'group', 'messag', 'phone', 'app', 'not', 'quit', 'android'], ['good', 'phone', 'afford', 'price'], ['recent', 'upgrad', 'window', 'phone', 'one', 'love', 'phone', 'speaker', 'could', 'made', 'louder', 'though', 'lot', 'search', 'afford', 'yet', 'power', 'smartphon'], ['not', 'review', 'warranti', 'claim', 'batteri', 'stop', 'charg', 'notic', 'burn', 'send', 'replac'], ['love', 'phone', 'favorit', 'phone', 'ever', 'especi', 'enjoy', 'window', 'osbad', 'thing', 'not', 'even', 'own', 'phone', 'month', 'keep', 'turn', 'not', 'turn', 'back', 'turn', 'phone', 'not', 'turn', 'back', 'hourscurr', 'hour', 'sinc', 'high', 'not', 'know', 'normal', 'phone', 'not', 'still', 'make', 'mad'], ['great', 'offer', 'not', 'beat', 'buck', 'love'], ['want', 'like', 'could', 'not', 'get', 'updat', 'devic', 'ship', 'version', 'window', 'mobil', 'connect', 'internet', 'told', 'releas', 'version', 'window', 'avail', 'download', 'devic', 'would', 'download', 'give', 'error', 'could', 'not', 'instal', 'updat', 'contact', 'blu', 'support', 'via', 'also', 'bought', 'second', 'win', 'jr', 'best', 'buy', 'told', 'releas', 'version', 'window', 'avail', 'download', 'second', 'devic', 'would', 'download', 'give', 'error', 'could', 'not', 'instal', 'email', 'instruct', 'hard', 'reset', 'phone', 'everyth', 'would', 'not', 'ok', 'email', 'email', 'hard', 'reset', 'email', 'yes', 'correct', 'problem', 'not', 'get', 'solv', 'hard', 'reset', 'phone', 'total', 'time', 'updat', 'attempt', 'made', 'hard', 'reset', 'tri', 'not', 'log', 'microsoft', 'account', 'log', 'microsoft', 'account', 'mount', 'sd', 'card', 'without', 'noth', 'work', 'even', 'download', 'microsoft', 'updat', 'email', 'would', 'look', 'problem', 'septemb', 'not', 'almost', 'februari', 'not', 'heard', 'back', 'day', 'would', 'get', 'messag', 'blu', 'win', 'jr', 'phone', 'screen', 'import', 'instal', 'updat', 'would', 'fail', 'attempt', 'use', 'data', 'either', 'cellular', 'final', 'gave', 'got', 'lumia', 'head', 'shoulder', 'phone', 'featur', 'specif', 'best', 'lumia', 'came', 'ship', 'microsoft', 'store', 'latest', 'updat', 'littl', 'phone', 'much', 'promis', 'love', 'support', 'insid', 'blu', 'compani', 'choic', 'put'], ['good', 'phone', 'price', 'complain', 'front', 'camera', 'know', 'vga', 'cam', 'seem', 'littl', 'bellow', 'qualiti', 'compar', 'other', 'type'], ['not', 'abl', 'download', 'updat'], ['good', 'phone', 'price', 'got', 'two', 'great', 'problem', 'come', 'protect', 'shield', 'one', 'alreadi', 'phone', 'one', 'protect', 'case', 'headphon'], ['good'], ['craoy', 'phone'], ['glitchi', 'hard', 'set', 'get', 'pay'], ['realli', 'nice', 'phone', 'money', 'blu', 'c', 'hd', 'nice', 'phone', 'also', 'half', 'price', 'not', 'beat', 'phone', 'realli', 'prefer', 'window', 'phone', 'android', 'io', 'screen', 'sharp', 'smooth', 'consid', 'mb', 'ram', 'run', 'much', 'smoother', 'android', 'phone', 'ram', 'miss', 'coupl', 'thing', 'nokia', 'plus', 'smaller', 'screen', 'build', 'qualiti', 'not', 'polish', 'nokia', 'not', 'phone', 'high', 'graphic', 'game', 'would', 'want', 'play', 'game', 'inch', 'screen', 'use', 'phone', 'call', 'text', 'email', 'great', 'color', 'phone', 'realli', 'neon', 'kind', 'shock', 'open', 'box', 'nice', 'clean', 'look', 'get', 'use', 'color'], ['awesom'], ['suck', 'ass'], ['great', 'basic', 'phone', 'price', 'sell', 'friend', 'doubl', 'price', 'love', 'phone', 'expens'], ['ok'], ['work', 'realli', 'good', 'phone'], ['phone', 'damag', 'lost', 'signal', 'constant', 'time', 'restart', 'alon', 'one', 'day', 'week', 'connect', 'get', 'charg', 'never', 'start', 'lost', 'money'], ['work', 'need'], ['want', 'like', 'could', 'not', 'get', 'updat', 'devic', 'ship', 'version', 'window', 'mobil', 'connect', 'internet', 'told', 'releas', 'version', 'window', 'avail', 'download', 'devic', 'would', 'download', 'give', 'error', 'could', 'not', 'instal', 'updat', 'contact', 'blu', 'support', 'via', 'also', 'bought', 'second', 'win', 'jr', 'best', 'buy', 'told', 'releas', 'version', 'window', 'avail', 'download', 'second', 'devic', 'would', 'download', 'give', 'error', 'could', 'not', 'instal', 'email', 'instruct', 'hard', 'reset', 'phone', 'everyth', 'would', 'not', 'ok', 'email', 'email', 'hard', 'reset', 'email', 'yes', 'correct', 'problem', 'not', 'get', 'solv', 'hard', 'reset', 'phone', 'total', 'time', 'updat', 'attempt', 'made', 'hard', 'reset', 'tri', 'not', 'log', 'microsoft', 'account', 'log', 'microsoft', 'account', 'mount', 'sd', 'card', 'without', 'noth', 'work', 'even', 'download', 'microsoft', 'updat', 'email', 'would', 'look', 'problem', 'septemb', 'not', 'almost', 'februari', 'not', 'heard', 'back', 'day', 'would', 'get', 'messag', 'blu', 'win', 'jr', 'phone', 'screen', 'import', 'instal', 'updat', 'would', 'fail', 'attempt', 'use', 'data', 'either', 'cellular', 'final', 'gave', 'got', 'lumia', 'head', 'shoulder', 'phone', 'featur', 'specif', 'best', 'lumia', 'came', 'ship', 'microsoft', 'store', 'latest', 'updat', 'littl', 'phone', 'much', 'promis', 'love', 'support', 'insid', 'blu', 'compani', 'choic', 'put'], ['great', 'work', 'phone', 'window', 'phone', 'softwar', 'bit', 'differ', 'iphon', 'use', 'everyday', 'got', 'use', 'work', 'well', 'like', 'use', 'oversea', 'easi', 'instal', 'dual', 'sim', 'card', 'well', 'get', 'phone', 'set', 'beforehand', 'would', 'buy', 'product', 'call', 'text', 'messeng', 'app', 'definit', 'instal', 'screen', 'protector', 'right', 'away', 'not', 'end', 'small', 'scratch', 'first', 'day'], ['great', 'phone', 'speaker', 'leav', 'bit', 'desir', 'could', 'louder', 'not', 'charg', 'first', 'use', 'fulli', 'never', 'hold', 'charg', 'serious', 'second', 'ran', 'first', 'wash', 'charg', 'hour', 'use', 'lucki', 'get', 'hold', 'charg', 'four', 'hour', 'window', 'app', 'store', 'leav', 'bit', 'desir', 'phone', 'not', 'come', 'waterproof', 'case', 'care', 'love', 'work', 'feel', 'much', 'easier', 'navig', 'android', 'appl', 'phone', 'not', 'care', 'wast', 'heard', 'window', 'phone', 'one', 'worth', 'way', 'better', 'nokia', 'one'], ['good', 'phone', 'price', 'complain', 'front', 'camera', 'know', 'vga', 'cam', 'seem', 'littl', 'bellow', 'qualiti', 'compar', 'other', 'type'], ['great', 'phone', 'nice', 'phone', 'almost', 'exact', 'like', 'window', 'phone'], ['realli', 'good', 'phone', 'respons', 'pictur', 'qualiti', 'great', 'lightweight', 'sleekdid', 'know', 'i', 'would', 'like', 'window', 'phone', 'good', 'purchas'], ['ok', 'first', 'phone', 'work', 'amaz', 'well', 'quick', 'fair', 'easi', 'figur', 'everyth', 'set', 'slight', 'differ', 'use', 'android', 'phone', 'know', 'not', 'realiz', 'afterward', 'window', 'phone', 'mean', 'abl', 'use', 'window', 'app', 'i', 'sure', 'lot', 'peopl', 'know', 'i', 'kind', 'loop', 'come', 'purchas', 'old', 'android', 'save', 'app', 'like', 'instal', 'window', 'blu', 'phone', 'none', 'would', 'transfer', 'abl', 'find', 'window', 'store', 'sad', 'not', 'abl', 'transfer', 'pictur', 'video', 'need', 'sim', 'card', 'whichev', 'phone', 'compani', 'use', 'get', 'send', 'sim', 'card', 'one', 'cent', 'everyth', 'went', 'fine', 'littl', 'shock', 'not', 'would', 'give', 'star', 'realli', 'work', 'fantast', 'not', 'beat', 'price', 'took', 'away', 'one', 'star', 'ignor', 'suppos', 'need', 'put', 'info', 'us', 'not', 'realli', 'know', 'go', 'nice', 'screen', 'size', 'nice', 'video', 'resolut', 'front', 'rear', 'camera', 'even', 'come', 'coupl', 'screen', 'protector', 'basic', 'case', 'headphon', 'not', 'know', 'use', 'may', 'go', 'read', 'book', 'point', 'much', 'much', 'nicer', 'expect', 'less', 'sure'], ['great'], ['work', 'great', 'got', 'servic', 'anoth', 'carrier', 'use', 'player', 'watch', 'movi', 'netflix', 'use', 'like', 'mini', 'tablet', 'microsd', 'card', 'work', 'better', 'ipod'], ['blu', 'thank', 'daughter', 'happi'], ['ok'], ['window', 'phone', 'like', 'alot', 'not', 'like', 'wlan', 'hotspot', 'though'], ['like', 'understand', 'warranti', 'refund'], ['suck', 'ass'], ['bought', 'phone', 'unlock', 'need', 'use', 'differ', 'countri', 'howev', 'phone', 'stop', 'work', 'week', 'use', 'show', 'sad', 'face', 'switch', 'not', 'go', 'past', 'step'], ['muy', 'buen', 'producto'], ['good'], ['great', 'work', 'phone', 'window', 'phone', 'softwar', 'bit', 'differ', 'iphon', 'use', 'everyday', 'got', 'use', 'work', 'well', 'like', 'use', 'oversea', 'easi', 'instal', 'dual', 'sim', 'card', 'well', 'get', 'phone', 'set', 'beforehand', 'would', 'buy', 'product', 'call', 'text', 'messeng', 'app', 'definit', 'instal', 'screen', 'protector', 'right', 'away', 'not', 'end', 'small', 'scratch', 'first', 'day'], ['buyer', 'crook', 'phone', 'not', 'even', 'charg'], ['internet', 'not', 'pick', 'good', 'not', 'download', 'anyth'], ['good'], ['great', 'valu', 'money'], ['item', 'bought', 'gift', 'friend', 'live', 'instrument'], ['garbag', 'phone', 'not', 'wast', 'time', 'money', 'even', 'though', 'relat', 'inexpens', 'not', 'connect', 'internet', 'instant', 'shut', 'not', 'receiv', 'text', 'messag', 'time', 'fashion', 'not', 'preview', 'rington', 'real', 'piec', 'junk', 'not', 'buy', 'want', 'window', 'phone', 'get', 'lumia'], ['nice', 'upgrad', 'lumia', 'smash', 'accid', 'seem', 'run', 'window', 'phone', 'fine', 'nice', 'camera', 'come', 'clear', 'gel', 'case', 'snap', 'fine', 'make', 'power', 'button', 'littl', 'harder', 'regular', 'size', 'sim', 'card', 'slot', 'not', 'tri', 'use', 'micro', 'sim', 'lose', 'sim', 'slot', 'abl', 'retriev', 'care', 'take', 'phone', 'apart', 'sim', 'card', 'slip', 'back', 'need', 'sim', 'adapt', 'use', 'simdevil', 'adapt', 'work', 'great', 'us', 'http', 'tl', 'dr', 'good', 'cheap', 'window', 'phone', 'upgrad', 'lumia', 'love', 'pair', 'wireless', 'cheap', 'prepaid', 'provid', 'got', 'deal'], ['excel'], ['alot', 'glitch', 'batteri', 'went', 'month', 'got'], ['realli', 'like', 'phone', 'size', 'weight', 'shape', 'perfect', 'pleasur', 'carri', 'use', 'window', 'phone', 'underr', 'softwar', 'pretti', 'cool', 'like', 'wake', 'watch', 'littl', 'tile', 'start', 'flip', 'updat', 'neat', 'see', 'everyth', 'right', 'home', 'screen', 'get', 'phone', 'good', 'dual', 'sim', 'support', 'microsd', 'card', 'support', 'lte', 'tmobil', 'servic', 'superb', 'deal', 'phone', 'coupl', 'con', 'though', 'camera', 'par', 'take', 'graini', 'lacklust', 'pictur', 'not', 'good', 'camera', 'camera', 'lumia', 'much', 'better', 'even', 'though', 'also', 'curios', 'compar', 'photo', 'taken', 'phone', 'verizon', 'samsung', 'gusto', 'flip', 'phone', 'samsung', 'photo', 'sharper', 'fill', 'detail', 'produc', 'better', 'color', 'short', 'old', 'flip', 'phone', 'make', 'better', 'photo', 'also', 'coat', 'screen', 'could', 'improv', 'not', 'handl', 'dirt', 'well', 'need', 'clean', 'constant', 'review', 'address', 'problem', 'clear', 'updat', 'screen', 'phone', 'continu', 'bother', 'strang', 'coat', 'catch', 'thing', 'way', 'read', 'outdoor', 'glare', 'protect', 'disappoint'], ['nice', 'phone'], ['great', 'product', 'lot', 'money', 'i', 'still', 'find', 'app', 'use'], ['bought', 'phone', 'last', 'month', 'today', 'speaker', 'stop', 'work', 'phone', 'not', 'drop', 'ir', 'expos', 'water', 'type', 'thing', 'common', 'phone', 'peopl', 'call', 'not', 'hear', 'talk', 'upset'], ['black', 'brick'], ['good', 'good'], ['bought', 'take', 'trip', 'took', 'howev', 'not', 'know', 'well', 'would', 'work', 'broke', 'left', 'hous', 'charg', 'set', 'softwar', 'updat', 'ad', 'memori', 'card', 'never', 'came', 'back', 'unfortun', 'could', 'not', 'call', 'anyon', 'help', 'readi', 'leav', 'not', 'time', 'mess', 'i', 'back', 'trip', 'see', 'anyth', 'custom', 'servic', 'follow'], ['ap', 'phone', 'sent', 'line', 'across', 'screen'], ['enjoy', 'thank'], ['practic', 'simpl', 'basic', 'fuction'], ['not', 'bad', 'price', 'pay', 'two', 'issu', 'speaker', 'not', 'loud', 'enough', 'mic', 'bad'], ['uno', 'con', 'la', 'bateria', 'muerta'], ['not', 'bad', 'price', 'pay', 'two', 'issu', 'speaker', 'not', 'loud', 'enough', 'mic', 'bad'], ['need', 'dumb', 'phone', 'philippin', 'found', 'exact', 'need', 'phone', 'left', 'behind', 'peopl', 'will', 'give', 'back'], ['excel', 'product', 'good', 'fast', 'attent'], ['good', 'basic', 'need', 'comun', 'not', 'whatsapp', 'support'], ['like'], ['came', 'brand', 'new', 'mini', 'stylus', 'phone', 'accessori', 'believ', 'wrap', 'headphon', 'around', 'phone', 'pretti', 'decent', 'i', 'problem', 'volum', 'button', 'sometim', 'not', 'work', 'watch', 'video', 'screen', 'flicker', 'differ', 'hue', 'color', 'screen', 'happen', 'video', 'plus', 'i', 'call', 'person', 'end', 'alway', 'hear', 'echo', 'strang', 'nois', 'mic', 'type', 'hear', 'sound', 'vibrat', 'touch', 'keyboard', 'still', 'not', 'figur', 'turn', 'go', 'buy', 'bluetooth', 'annoy', 'point', 'phone', 'pretti', 'good', 'bought', 'need', 'phone', 'better', 'app', 'store', 'window', 'realli', 'like', 'look', 'abd', 'spec', 'wish', 'not', 'annoy', 'problem'], ['excel', 'product'], ['ugh'], ['like', 'phone', 'boost', 'mobil', 'discontinu', 'model', 'could', 'not', 'activ'], ['use', 'hour', 'full', 'charg'], ['love', 'work', 'phone', 'game', 'consl'], ['hope', 'would', 'work', 'ipad', 'not'], ['phone', 'look', 'new', 'even', 'extend', 'life', 'new', 'batteri', 'not', 'hold', 'charg', 'hour', 'oper', 'slight', 'pressur', 'place', 'hous', 'case', 'phone', 'goe', 'compass', 'voic', 'command', 'sever', 'undesir', 'mode', 'i', 'alreadi', 'look', 'anoth', 'phone', 'would', 'like', 'money', 'back', 'replac', 'week', 'servic', 'phone', 'refurbish', 'not', 'rebuilt', 'correct', 'necessari', 'profession', 'care'], ['good', 'phone', 'take', 'lot', 'abus', 'phone', 'reason', 'price', 'work', 'well', 'specif', 'rough', 'type', 'profess', 'phone'], ['phone', 'deliv', 'time', 'work', 'great', 'big', 'fan', 'rug', 'flip', 'phone', 'louder', 'ringer', 'better', 'viborat', 'iphon', 'thank', 'good', 'deal'], ['phone', 'work', 'fine', 'vendor', 'five', 'star', 'also', 'shipment', 'time', 'chang', 'old', 'phone', 'new', 'one', 'problem', 'charg', 'phone', 'first', 'chang', 'take', 'less', 'sec'], ['turn', 'day', 'got', 'wet', 'not', 'work', 'suppos', 'water', 'tight', 'abl', 'handl', 'littl', 'water', 'piec', 'crap', 'got', 'littl', 'wet', 'not', 'work', 'wish', 'save', 'pack', 'receipt', 'could', 'send', 'back'], ['order', 'phone', 'bad', 'shape', 'look', 'like', 'beat', 'pretti', 'bad', 'would', 'recommend', 'spend', 'extra', 'money', 'get', 'new', 'one', 'use', 'phone', 'two', 'week', 'alreadi', 'die', 'need', 'replac'], ['obvious', 'chines', 'knockoff', 'origin', 'casio', 'gzone', 'phone', 'recept', 'basement', 'offic', 'backyard', 'terribl', 'folk', 'call', 'not', 'hear', 'engag', 'origin', 'phone', 'none', 'problem', 'local', 'cell', 'tower', 'less', 'mile', 'bewar', 'i', 'not', 'happi', 'camper', 'not', 'buy', 'phone', 'junk'], ['not', 'know', 'peopl', 'get', 'paid', 'negat', 'comment', 'perfect', 'set', 'constant', 'gone', 'day', 'featur', 'flashlight', 'good', 'not', 'super', 'bright', 'like', 'today', 'phone', 'need', 'not', 'need', 'text', 'call', 'not', 'need', 'web', 'go', 'drive', 'weekend'], ['got', 'not', 'know', 'batteri', 'phone', 'not', 'hold', 'charg', 'charg', 'proper', 'i', 'tri', 'sever', 'charger', 'happen', 'not', 'charg', 'anymor', 'past', 'batteri', 'plug', 'upset', 'go', 'troubl', 'tri', 'return', 'get', 'new', 'one', 'not', 'order', 'compani', 'would', 'not', 'recommend'], ['got', 'birthday', 'gift', 'husband', 'love', 'use', 'waterproof', 'phone', 'love', 'switch', 'verizon', 'could', 'not', 'use', 'anymor', 'one', 'take', 'phone', 'bath', 'tub', 'hold', 'great', 'speedi', 'esn'], ['love', 'thank', 'sissi', 'brother', 'say', 'one', 'need', 'time', 'fanci', 'phone'], ['replac', 'alreadi', 'day', 'batterey', 'phone', 'stop', 'work', 'replac', 'batteri', 'still', 'phone', 'not', 'thing'], ['servic', 'outstand', 'never', 'say', 'slight', 'error', 'correct', 'minut', 'submittingand', 'expedit', 'fast', 'thank'], ['great', 'phone', 'realli', 'sturdi', 'built', 'well', 'easi', 'use', 'hard', 'lose', 'break'], ['first', 'one', 'bought', 'new', 'upon', 'receiv', 'item', 'microphon', 'not', 'work', 'second', 'one', 'refurbish', 'new', 'one', 'sold', 'second', 'phone', 'refurbish', 'one', 'problem', 'microphon', 'one', 'could', 'hear', 'say', 'phone', 'look', 'excel', 'like', 'new', 'time', 'came', 'nice', 'box', 'batteri', 'charger', 'high', 'disappoint', 'two', 'phone', 'row', 'dead', 'arriv', 'due', 'microphon', 'not', 'work', 'bought', 'gift', 'father', 'christma', 'sort', 'f', 'embarrass', 'tri', 'one', 'time', 'phone', 'dead', 'arriv', 'stop', 'warn', 'obvious', 'problem', 'phone', 'microphon', 'import', 'part', 'phone'], ['not', 'problem', 'phone'], ['husband', 'heard', 'phone', 'word', 'mouth', 'said', 'go', 'transit', 'smart', 'phone', 'final', 'one', 'extens', 'research', 'compar', 'older', 'model', 'decid', 'give', 'tri', 'camera', 'shutter', 'bit', 'delay', 'not', 'gotten', 'wet', 'enough', 'issu', 'sim', 'card', 'love', 'phone', 'happi', 'i', 'happi'], ['cool'], ['uniqu'], ['excel'], ['excelent'], ['good', 'phone', 'came', 'product', 'problem', 'batteri', 'last', 'hour', 'take', 'long', 'charg', 'batteri', 'softwar', 'slow', 'download', 'applic', 'problem', 'memori', 'wrote', 'seller', 'ignor', 'complaint', 'buy', 'new', 'batteri', 'phone', 'still', 'problem', 'batteri', 'three', 'hour', 'phone', 'cost', 'high', 'littl', 'serv', 'use', 'import', 'note', 'seller', 'littl', 'attent', 'thank'], ['great', 'devic'], ['nice', 'phone', 'work', 'great', 'well', 'made'], ['love', 'n', 'got', 'n', 'day', 'awesom', 'thank'], ['absolut', 'love', 'phone', 'sleek', 'fun', 'love'], ['i', 'un', 'happi', 'phone', 'not', 'compat', 'fault', 'realli', 'camera', 'not', 'focus', 'take', 'clear', 'pictur', 'one', 'main', 'reason', 'upgrad', 'phone', 'not', 'take', 'clear', 'pictur', 'babi', 'problem', 'recommend', 'anyth', 'pictur', 'taken', 'buy', 'phone', 'anyon', 'read'], ['i', 'sorri', 'product', 'not', 'meet', 'expect'], ['oh', 'get', 'instal', 'complet', 'worth', 'money', 'see', 'messag', 'without', 'check', 'phone', 'time', 'instal', 'challeng', 'i', 'pretti', 'tech', 'savvi', 'took', 'get', 'app', 'instal', 'proper', 'featur', 'work', 'honest', 'i', 'not', 'sure', 'could', 'well', 'worth', 'end', 'paid', 'less', 'happi'], ['nice', 'work', 'advertis'], ['product', 'wast', 'money', 'thing', 'work', 'half', 'day', 'direct', 'make', 'sens', 'written', 'attempt', 'english', 'pedomet', 'not', 'accur', 'save', 'money', 'not', 'buy', 'product'], ['watch', 'ok', 'work', 'perfect', 'fine', 'mobil', 'sim', 'buy', 'one', 'someon', 'gift'], ['bought', 'item', 'father', 'father', 'day', 'gadget', 'guy', 'thought', 'would', 'perfect', 'gift', 'open', 'gift', 'start', 'play', 'find', 'qualiti', 'item', 'terribl', 'not', 'mention', 'fact', 'box', 'rip', 'item', 'alreadi', 'tamper', 'descript', 'site', 'mislead', 'not', 'wast', 'money'], ['display', 'fade', 'away', 'second', 'use', 'not', 'know', 'usual', 'happen', 'chang', 'bare', 'see', 'go'], ['send', 'back', 'twice', 'day', 'pin', 'hole', 'watch', 'kept', 'come'], ['want', 'cheap', 'fit', 'tracker', 'bad', 'pedomet', 'said', 'unavail', 'sleep', 'tracker', 'said', 'unavail', 'could', 'find', 'sedentari', 'alert', 'not', 'know', 'middl', 'band', 'huge', 'i', 'big', 'girl', 'usual', 'use', 'extra', 'link', 'watch', 'second', 'last', 'hole', 'thicker', 'heavier', 'expect', 'think', 'would', 'get', 'use', 'good', 'even', 'though', 'not', 'want', 'connect', 'phone', 'connect', 'easili', 'iphon', 'could', 'get', 'music', 'even', 'though', 'not', 'loud', 'like', 'idea', 'fm', 'radio', 'even', 'though', 'headphon', 'not', 'fit', 'good', 'sound', 'qualiti'], ['speaker', 'sound', 'phone', 'make', 'call', 'not', 'good'], ['excelent'], ['work', 'great'], ['cuz', 'not', 'come', 'sim', 'card', 'not', 'use', 'useless', 'not', 'good'], ['stop', 'work'], ['watch', 'joke', 'not', 'buy', 'pleas', 'save', 'money', 'buy', 'someth', 'els'], ['not', 'realli', 'find', 'use', 'applic', 'preinstal', 'watch', 'n', 'chines', 'way', 'chang', 'english', 'bluetooth', 'connect', 'not', 'work', 'well', 'headset', 'came', 'watch', 'sound', 'horribl', 'wast', 'time', 'effort', 'money'], ['love', 'love', 'love'], ['pretti', 'good', 'item', 'bought', 'one', 'differ', 'brand', 'like', 'one', 'better', 'use', 'wireless', 'sim', 'come', 'right'], ['janki', 'not', 'worth', 'buy', 'real', 'thing'], ['watch', 'realli', 'good', 'downfal', 'download', 'app', 'buy', 'last', 'atleast', 'month', 'devic', 'far'], ['love', 'money'], ['not', 'work', 'screen', 'stay', 'white', 'whole', 'time'], ['nice', 'watch', 'charg', 'min', 'headphon', 'suck', 'get', 'adapt', 'got', 'work', 'chromecast', 'remot'], ['got', 'empti', 'box'], ['not', 'work', 'not', 'even', 'come', 'readi', 'use', 'need', 'sim', 'card', 'also', 'sd', 'card'], ['not', 'work', 'galaxi', 'without', 'bluetooth', 'notifi'], ['bought', 'son', 'job'], ['watch', 'far', 'fantast', 'valu', 'price', 'year', 'old', 'use', 'cell', 'phone', 'wish', 'band', 'could', 'smaller', 'mention', 'wrist', 'sweat', 'bit', 'not', 'over', 'bothersom', 'though', 'absolut', 'love', 'also', 'learn', 'curv', 'sinc', 'detail', 'manual', 'could', 'onlin'], ['not', 'worth', 'much', 'though'], ['not', 'product', 'advertis', 'not', 'work', 'appl', 'product', 'requir', 'sim', 'work'], ['not', 'recognis', 'sim', 'card', 'indiano', 'voic', 'diall', 'featur', 'even', 'though', 'advertis', 'vijay', 'magapu'], ['junk'], ['start', 'look', 'nice', 'thought', 'would', 'great', 'get', 'cheap', 'smart', 'watch', 'not', 'want', 'spend', 'hundr', 'one', 'start', 'get', 'bad', 'got', 'stuck', 'three', 'clock', 'option', 'not', 'chang', 'ugli', 'function', 'watch', 'slow', 'never', 'click', 'want', 'direct', 'mine', 'googl', 'setit', 'descript', 'say', 'cool', 'stuff', 'like', 'stream', 'music', 'phone', 'watch', 'not', 'true', 'say', 'need', 'insert', 'separ', 'sim', 'card', 'watch', 'intern', 'storag', 'want', 'store', 'anyth', 'micro', 'sd', 'not', 'delet', 'add', 'app', 'watch', 'not', 'put', 'sim', 'card', 'bunch', 'app', 'not', 'use', 'get', 'notif', 'phone', 'watch', 'terribl', 'set', 'would', 'expect', 'would', 'ring', 'vibrat', 'vibrat', 'ring', 'silent', 'put', 'idiot', 'name', 'exampl', 'outsid', 'ring', 'vibrat', 'meet', 'vibrat', 'speak', 'vibrat', 'terribl', 'swear', 'louder', 'sound', 'much', 'stuff', 'move', 'around', 'sit', 'class', 'meet', 'went', 'everyon', 'look', 'watch', 'garbag', 'return', 'mine', 'look', 'somewher', 'els', 'smart', 'watch'], ['found', 'watch', 'bit', 'difficult', 'set', 'program', 'think', 'use', 'test', 'futur', 'purchas'], ['watch', 'excel', 'present', 'someon', 'gadget', 'nut', 'simpl', 'use', 'told', 'watch', 'look', 'like', 'watch', 'design', 'done', 'well', 'wearer', 'wear', 'without', 'selfconci'], ['work', 'good', 'keep', 'cut', 'keep', 'turn', 'back', 'return', 'number', 'small', 'bit', 'bulki'], ['hard', 'find', 'app'], ['differ', 'flashi', 'talk', 'friend', 'not', 'expens', 'like', 'rate', 'galaxi', 'cellphon', 'watch', 'real', 'good', 'choos'], ['rather', 'larg', 'comfort', 'look', 'nice', 'featur', 'not', 'work', 'browser', 'virtual', 'imposs', 'type', 'tini', 'screen', 'access', 'music', 'i', 'connect', 'wifi', 'overal', 'give', 'notif', 'answer', 'call', 'sound', 'person', 'hear', 'not', 'lot', 'break', 'headset', 'arriv', 'watch', 'cheap', 'imposs', 'fit', 'hard', 'plastic', 'ear', 'said', 'good', 'price', 'arriv', 'earli', 'good', 'help'], ['super', 'cool', 'qaud', 'band', 'watch', 'touch', 'screen', 'cell', 'phone', 'whitei', 'chose', 'star', 'main', 'not', 'come', 'way', 'advertis', 'cool', 'quad', 'band', 'touch', 'screen', 'watch', 'icon', 'screen', 'instead', 'like', 'advertis', 'guess', 'not', 'get', 'featur', 'advertis', 'ad', 'saw', 'ad', 'saw', 'advertis', 'internet', 'java', 'game', 'fm', 'featur', 'got', 'purchas', 'prepaid', 'tmobil', 'sim', 'micro', 'sd', 'card', 'work', 'right', 'away', 'got', 'homm', 'load', 'sd', 'card', 'music', 'work', 'well', 'think', 'load', 'music', 'phone', 'sd', 'card', 'work', 'charg', 'bluetooth', 'connect', 'right', 'away', 'camera', 'video', 'camera', 'work', 'surpris', 'well', 'text', 'okay', 'use', 'tini', 'stylus', 'think', 'size', 'would', 'perfect', 'kid', 'side', 'note', 'not', 'young', 'kid', 'cell', 'phone', 'definit', 'someth', 'would', 'give', 'year', 'old', 'kid', 'discreet', 'enough', 'school', 'offici', 'would', 'not', 'take', 'base', 'look', 'not', 'game', 'distract', 'enough', 'keep', 'entertain', 'parent', 'contact', 'case', 'text', 'bluetooth', 'said', 'i', 'would', 'recommend', 'product', 'person', 'want', 'freedom', 'take', 'phone', 'anywher', 'without', 'feel', 'lug', 'around', 'bulki', 'phone', 'may', 'may', 'not', 'want', 'use', 'bluetooth', 'enjoy', 'music', 'not', 'mind', 'text', 'tini', 'stylus', 'note', 'find', 'anyth', 'els', 'like', 'dislik', 'definit', 'add', 'post', 'possibl', 'creat', 'anoth', 'enjoy'], ['nice', 'handi', 'watch', 'fun', 'ad', 'attract', 'bluetooth', 'handl', 'good', 'movi', 'go'], ['sturdi', 'build', 'great', 'function', 'inexpens', 'unlik', 'competitor', 'best', 'featur', 'abl', 'respond', 'text', 'bluetooth'], ['work', 'great', 'busi'], ['nice', 'product', 'featur', 'describ', 'custom', 'correct', 'work', 'perfect', 'thing', 'not', 'realli', 'take', 'account', 'icon', 'number', 'dial', 'small', 'difficult', 'touch', 'use', 'pen', 'palm'], ['first', 'thing', 'broke', 'power', 'cord', 'order', 'anoth', 'phone', 'power', 'cord', 'plug', 'broke', 'demon', 'watch', 'run'], ['ok'], ['complet', 'not', 'buy', 'unless', 'want', 'toy'], ['got', 'pull', 'box', 'band', 'broke', 'husband', 'hate', 'use', 'call', 'said', 'sound', 'like', 'box', 'nightmar', 'get', 'connect', 'phone', 'sent', 'back', 'horribl', 'return', 'thing'], ['reason', 'not', 'get', 'internet', 'get', 'micro', 'sd', 'card', 'sync', 'watch', 'need', 'help'], ['big', 'problem', 'receiv', 'box', 'cabl', 'charg', 'batteri', 'not', 'receiv', 'smart', 'watch', 'happen'], ['husband', 'realli', 'like', 'seem', 'work', 'well', 'iphon', 'plus', 'except', 'text', 'featur', 'knew', 'like', 'not', 'avail'], ['miss', 'sim', 'card', 'not', 'abl', 'find', 'one', 'anywher'], ['work', 'great', 'smart', 'phone', 'well', 'worth', 'buy'], ['wast', 'money', 'back', 'not', 'stay', 'shut', 'not', 'work'], ['thank'], ['exelent'], ['smart', 'watch', 'not', 'worth', 'money', 'not', 'function', 'not', 'work', 'proper', 'app', 'need', 'connect', 'iphon', 'not', 'work', 'built', 'app', 'scan', 'fail', 'sinc', 'instruct', 'lack', 'search', 'similar', 'app', 'noth', 'luckili', 'bought', 'old', 'see', 'could', 'respons', 'enough', 'smart', 'watch', 'within', 'hour', 'accident', 'submerg', 'water', 'gave', 'quick', 'death', 'wast', 'money'], ['good', 'fabric', 'origin', 'love', 'recomiento'], ['cool', 'cool'], ['good'], ['bluetooth', 'kept', 'disconnect', 'not', 'happi', 'number', 'button', 'click', 'need', 'simpl', 'thing', 'like', 'review', 'text', 'return', 'got', 'quick', 'refund'], ['bulki', 'women'], ['piti', 'excus', 'anyth', 'use'], ['make', 'phone', 'call', 'receiv'], ['fake', 'qualiti', 'poor'], ['excelent'], ['not', 'sink', 'phone'], ['good', 'tank'], ['good'], ['christoph'], ['bueno'], ['not', 'great', 'definit', 'neat', 'iphon', 'appl', 'not', 'exact', 'cooper', 'product', 'spent', 'million', 'develop', 'speaker', 'not', 'loud', 'cord', 'headset', 'awkward', 'earbud', 'hard', 'use', 'phone', 'call', 'work', 'put', 'watch', 'ear', 'hear', 'clear', 'one', 'point', 'bluetooth', 'rang', 'short', 'approxim', 'feet', 'work', 'great', 'phone', 'via', 'bluetooth', 'music', 'talk', 'bluetooth', 'speaker', 'also', 'sync', 'phone', 'got', 'micro', 'sd', 'card', 'put', 'music', 'play', 'file', 'manag', 'hook', 'bluetooth', 'speaker', 'skip', 'sound', 'qualiti', 'poor', 'bad', 'want', 'return', 'make', 'worst', 'player', 'i', 'ever', 'consid', 'wire', 'headphon', 'uncomfort', 'not', 'tri', 'pair', 'newer', 'toyota', 'yet', 'bought', 'see', 'smart', 'watch', 'someth', 'would', 'like', 'cheap', 'enough', 'consid', 'i', 'go', 'spend', 'nice', 'watch', 'help', 'figur', 'want', 'i', 'alreadi', 'seen', 'lot', 'better', 'watch', 'amazon', 'w', 'camera', 'paid', 'watch', 'much', 'price', 'went', 'sinc', 'bought', 'pair', 'play', 'music', 'better', 'would', 'happier'], ['edit', 'earlier', 'review', 'made', 'anoth', 'consum', 'think', 'point', 'use', 'differ', 'network', 'verizon', 'done', 'research', 'well', 'mayb', 'not', 'know', 'i', 'consum', 'even', 'though', 'agre', 'consum', 'inde', 'homework', 'major', 'read', 'super', 'cool', 'quad', 'band', 'watch', 'sinc', 'disclaim', 'specif', 'would', 'probabl', 'buy', 'mean', 'i', 'not', 'expert', 'mani', 'peopl', 'realli', 'know', 'gsm', 'cmda', 'mean', 'verizon', 'guy', 'could', 'not', 'figur', 'bought', 'product', 'took', 'cell', 'phone', 'carrier', 'verizon', 'could', 'not', 'get', 'work', 'not', 'will', 'abl', 'search', 'cell', 'phone', 'carrier', 'find', 'one', 'get', 'work', 'fact', 'way', 'bulkier', 'thought', 'return', 'know', 'fair', 'i', 'upgrad', 'rate', 'not', 'speak', 'work', 'got', 'white', 'one', 'watch', 'band', 'notic', 'differ', 'shade', 'white', 'compar', 'watch', 'get', 'kid', 'like', 'know', 'bulki', 'look', 'like', 'someon', 'grab', 'nokia', 'trim', 'key', 'pad', 'slap', 'onto', 'wristband', 'opinion', 'might', 'work', 'look', 'threw'], ['love', 'money'], ['bf', 'love', 'technic', 'peopl', 'said', 'prefer', 'could', 'custom', 'download', 'app'], ['not', 'expect'], ['not', 'even', 'star', 'not', 'work', 'not', 'call', 'text', 'not', 'realli', 'answer', 'call', 'day', 'return', 'not', 'get', 'save', 'time', 'money'], ['well', 'said', 'messag', 'compat', 'lg', 'g', 'vista', 'not', 'i', 'tri', 'everyth'], ['fake', 'version', 'not', 'support', 'watch', 'face', 'imag', 'sync', 'softwar', 'avail', 'rate', 'best', 'watch', 'get', 'hot', 'use'], ['not', 'connect', 'internet', 'call', 'qualiti', 'great'], ['great', 'watch', 'money', 'batteri', 'last', 'day', 'charg', 'would', 'like', 'abl', 'convert', 'metric', 'us', 'measur', 'water', 'resist'], ['good'], ['right', 'box', 'insert', 'sim', 'card', 'say', 'stupid', 'bought', 'second', 'pink', 'one', 'think', 'differ', 'brand', 'not', 'work', 'either'], ['item', 'terribl'], ['good', 'product', 'not', 'realli', 'ask', 'amount', 'money', 'pay', 'good', 'buy', 'simpl', 'tech'], ['watch', 'last', 'two', 'day', 'not', 'ship', 'fee', 'send', 'back', 'would'], ['nope'], ['work', 'realli', 'well', 'husband', 'said', 'best', 'father', 'day', 'gift'], ['work', 'expect', 'thank'], ['bueno'], ['third', 'type', 'kind', 'phone', 'purchas', 'one', 'last', 'one', 'week', 'stop', 'work', 'reason', 'never', 'buy', 'one', 'cheap', 'phone', 'watch', 'junk', 'not', 'wast', 'money', 'spend', 'extra', 'money', 'get', 'good', 'one'], ['great', 'product'], ['excel'], ['awesom', 'job', 'busi'], ['not', 'quit', 'expect', 'thought', 'smartwatch', 'like', 'basic', 'phone', 'not', 'smart', 'capabl', 'fun', 'play', 'would', 'not', 'use', 'regular', 'phone', 'call', 'qualiti', 'quiet', 'headphon', 'came', 'low', 'qualiti', 'quiet', 'search', 'long', 'time', 'find', 'right', 'program', 'pair', 'phone', 'sorri', 'say', 'forgot', 'program', 'write', 'review'], ['love', 'cool'], ['suck'], ['excelent'], ['product', 'miss', 'lot', 'not', 'even', 'stop', 'watch', 'calcul', 'plus', 'pay', 'day', 'ship', 'got', 'day'], ['realli', 'nice', 'watch', 'work', 'well', 'pair', 'galaxi', 'avant', 'howev', 'got', 'yesterday', 'screen', 'crack', 'warranti'], ['good'], ['not', 'work', 'carrier', 'sim', 'card'], ['exelent', 'produto'], ['great', 'valu', 'job', 'work', 'wish', 'could', 'littl', 'custom', 'though'], ['impress', 'qualiti', 'consid', 'low', 'price', 'excel', 'qualiti', 'great', 'product'], ['rip'], ['not', 'even', 'star', 'not', 'work', 'not', 'call', 'text', 'not', 'realli', 'answer', 'call', 'day', 'return', 'not', 'get', 'save', 'time', 'money'], ['love', 'bt', 'watch', 'i', 'month', 'held', 'well', 'softwar', 'easi', 'use', 'may', 'not', 'nice', 'expens', 'counterpart', 'work', 'fine', 'good', 'way', 'see', 'bt', 'watch', 'someth', 'would', 'like', 'invest', 'money', 'road', 'not', 'get', 'wet', 'although', 'watch', 'still', 'technic', 'cell', 'phone'], ['hard', 'figur', 'littl', 'instruct'], ['love'], ['limit', 'compat', 'even', 'took', 'geek', 'squad', 'could', 'not', 'sync', 'not', 'recommend'], ['use', 'privet', 'inform', 'not', 'recov', 'pin'], ['work', 'great', 'easi', 'get', 'prepaid', 'card', 'switch', 'carrier', 'fuss', 'cool', 'watch'], ['happi'], ['order', 'phone', 'twice', 'process', 'make', 'second', 'return', 'want', 'much', 'like', 'phone', 'fact', 'love', 'featur', 'love', 'extern', 'keypad', 'stylus', 'need', 'accept', 'prepaid', 'sim', 'card', 'issu', 'howev', 'neither', 'two', 'phone', 'order', 'would', 'recogn', 'microsd', 'card', 'tri', 'two', 'differ', 'card', 'work', 'fine', 'devic', 'could', 'not', 'get', 'work', 'unfortun', 'issu', 'otherwis', 'pretti', 'cool', 'product'], ['not', 'use', 'sim'], ['nice', 'could', 'not', 'fiqur', 'work', 'sent', 'back'], ['use', 'daili', 'fool', 'friend', 'think', 'appl', 'work', 'great', 'use', 'differ', 'bt', 'notifi', 'app'], ['yes', 'work', 'great'], ['good', 'product', 'nice', 'servic'], ['good'], ['would', 'star', 'cdma', 'watch', 'not', 'gsm'], ['buy', 'watch', 'dozen', 'work', 'well', 'signal', 'area', 'wifi', 'keep', 'say', 'servic', 'place', 'go', 'ring', 'i', 'not', 'pleas', 'wit', 'watch', 'look', 'good', 'suck'], ['order', 'phone', 'twice', 'process', 'make', 'second', 'return', 'want', 'much', 'like', 'phone', 'fact', 'love', 'featur', 'love', 'extern', 'keypad', 'stylus', 'need', 'accept', 'prepaid', 'sim', 'card', 'issu', 'howev', 'neither', 'two', 'phone', 'order', 'would', 'recogn', 'microsd', 'card', 'tri', 'two', 'differ', 'card', 'work', 'fine', 'devic', 'could', 'not', 'get', 'work', 'unfortun', 'issu', 'otherwis', 'pretti', 'cool', 'product'], ['nice', 'littl', 'piec', 'equip', 'arriv', 'time', 'well', 'packag', 'everyth', 'work', 'like', 'instruct', 'say', 'camera', 'board', 'tri', 'might', 'unabl', 'find', 'one', 'anywher', 'guy', 'not', 'even', 'app', 'one', 'nice', 'easi', 'use', 'gadget', 'instal', 'memori', 'card', 'compart', 'sim', 'card', 'one', 'tf', 'card', 'slot', 'side', 'watch', 'next', 'port', 'realli', 'like', 'hundr', 'buck', 'realli', 'not', 'go', 'wrong', 'make', 'sure', 'read', 'instruct', 'thorough', 'fulli', 'charg', 'use', 'think', 'like', 'one'], ['love', 'watch', 'cell', 'phone', 'e', 'connect', 'cell', 'phone', 'without', 'itt'], ['love', 'item', 'got', 'work', 'well'], ['good', 'product', 'better', 'expect', 'need', 'sim', 'card', 'lot', 'featur', 'not', 'micro', 'sim', 'big', 'sim'], ['good'], ['better', 'smartwatch', 'order', 'not', 'know', 'set', 'wifi', 'internet', 'connect', 'watch'], ['bought', 'daughter', 'not', 'like', 'not', 'appear', 'function', 'like', 'smart', 'watch', 'return'], ['replac', 'band', 'wish', 'easier', 'use', 'better', 'instruct'], ['kind', 'huge', 'headach', 'bought', 'best', 'friend', 'christma', 'sinc', 'job', 'not', 'allow', 'phone', 'desk', 'allow', 'thing', 'like', 'smart', 'watch', 'want', 'abl', 'get', 'ahold', 'quick', 'emerg', 'home', 'open', 'play', 'minut', 'screen', 'began', 'blink', 'stop', 'respond', 'touch', 'screen', 'button', 'sent', 'back', 'expens', 'new', 'one', 'sent', 'send', 'extra', 'batteri', 'sort', 'reimburs', 'ship', 'cost', 'good', 'batteri', 'second', 'watch', 'got', 'explod', 'short', 'turn', 'thank', 'not', 'damag', 'watch', 'descript', 'item', 'littl', 'unclear', 'not', 'work', 'smart', 'phone', 'smart', 'phone', 'need', 'sim', 'card', 'abl', 'use', 'function', 'friend', 'almost', 'send', 'back', 'touch', 'screen', 'not', 'sensit', 'say', 'random', 'stop', 'respond', 'touch', 'use', 'regular', 'part', 'not', 'realli', 'use', 'frustrat', 'get', 'glitchi', 'time'], ['useless', 'smartwatch', 'would', 'consid', 'save', 'littl', 'buy', 'someth', 'like', 'real', 'smart', 'watch', 'use', 'week', 'decid', 'storag', 'forev', 'also', 'headset', 'wire', 'broken', 'think', 'twice', 'get'], ['bueno'], ['not', 'work', 'not', 'even', 'come', 'readi', 'use', 'need', 'sim', 'card', 'also', 'sd', 'card'], ['pleasant', 'surpris', 'qualiti', 'watch', 'describ', 'sound', 'qualiti', 'phone', 'call', 'crystal', 'clear', 'howev', 'volumn', 'could', 'tad', 'louder', 'far', 'not', 'found', 'volumn', 'control', 'littl', 'help', 'youtub', 'sync', 'bluetooth', 'fair', 'easi', 'instruct', 'not', 'help', 'technogeek', 'figur', 'overal', 'good', 'valu', 'money'], ['send', 'back', 'bc', 'not', 'work', 'say'], ['money', 'fun', 'watch', 'lot', 'featur', 'work', 'well', 'other', 'not', 'price', 'fun', 'play', 'around', 'i', 'purchas', 'watch', 'past', 'watch', 'cost', 'took', 'gsm', 'sim', 'card', 'problem', 'made', 'call', 'text', 'messag', 'not', 'think', 'browser', 'realli', 'work', 'i', 'still', 'work', 'money', 'not', 'galaxi'], ['bit', 'troubl', 'origin', 'one', 'help', 'custom', 'support', 'came', 'well', 'realli', 'impress', 'watch', 'not', 'data', 'plan', 'not', 'get', 'internet', 'small', 'face', 'lot', 'would', 'find', 'internet', 'would', 'small', 'chop', 'read', 'easi', 'use', 'instal', 'contact', 'phone', 'number', 'even', 'master', 'take', 'pictur', 'not', 'tri', 'video', 'got', 'safeti', 'sake', 'realli', 'feel', 'safe', 'abil', 'call', 'need', 'help', 'not', 'carri', 'big', 'smart', 'phone', 'smarter', 'not', 'feel', 'inadequ', 'not', 'work', 'get', 'work', 'cs', 'folk', 'figur', 'tri', 'question', 'help', 'return', 'one', 'not', 'seem', 'work', 'mail', 'anoth', 'got', 'lost', 'christma', 'rush', 'sent', 'anoth', 'work', 'well', 'even', 'understand', 'use', 'need', 'glad', 'persist', 'custom', 'servic', 'folk'], ['happi', 'watch'], ['stop', 'work', 'day', 'got', 'touch', 'mess', 'not', 'work', 'area', 'realli', 'excit', 'product', 'feel', 'like', 'scam', 'watch', 'not', 'even', 'work', 'anyway', 'could', 'get', 'new', 'one', 'send', 'old', 'one', 'back', 'would', 'perfect', 'fine', 'right', 'horribl', 'product'], ['love', 'bt', 'watch', 'i', 'month', 'held', 'well', 'softwar', 'easi', 'use', 'may', 'not', 'nice', 'expens', 'counterpart', 'work', 'fine', 'good', 'way', 'see', 'bt', 'watch', 'someth', 'would', 'like', 'invest', 'money', 'road', 'not', 'get', 'wet', 'although', 'watch', 'still', 'technic', 'cell', 'phone'], ['love'], ['not', 'quit', 'expect', 'thought', 'smartwatch', 'like', 'basic', 'phone', 'not', 'smart', 'capabl', 'fun', 'play', 'would', 'not', 'use', 'regular', 'phone', 'call', 'qualiti', 'quiet', 'headphon', 'came', 'low', 'qualiti', 'quiet', 'search', 'long', 'time', 'find', 'right', 'program', 'pair', 'phone', 'sorri', 'say', 'forgot', 'program', 'write', 'review'], ['order', 'watch', 'father', 'day', 'gift', 'husband', 'first', 'problem', 'compani', 'say', 'oh', 'yes', 'get', 'father', 'day', 'love', 'would', 'nice', 'chines', 'someth', 'thing', 'stuck', 'languag', 'make', 'matter', 'wors', 'watch', 'not', 'charg', 'come', 'b', 'european', 'charger', 'not', 'work', 'us', 'either', 'km', 'told', 'address', 'usa', 'deal', 'amazon', 'direct', 'amazon', 'parti', 'seller'], ['not', 'say', 'whether', 'not', 'good', 'smart', 'watch', 'mine', 'would', 'not', 'turn', 'return'], ['want', 'fast', 'geeki', 'gadget', 'ad', 'collect', 'tech', 'stuff', 'must', 'cheap', 'work', 'fine', 'realli', 'good', 'batteri', 'call', 'qualiti'], ['love', 'watch', 'need', 'not', 'take', 'phone', 'pocket', 'sse', 'call', 'listen', 'music', 'work', 'good', 'price', 'also'], ['item', 'question', 'not', 'issu', 'program', 'instal', 'could', 'not', 'get', 'accept', 'messag', 'instal', 'app', 'could', 'figur'], ['nice', 'easi', 'use'], ['not', 'expect'], ['drain', 'batteri', 'softwar', 'app', 'could', 'not', 'link', 'watch', 'frustrat'], ['work', 'dann', 'watch'], ['state', 'unlock', 'took', 'sever', 'phone', 'compani', 'said', 'thing', 'not', 'unlock'], ['chines', 'not', 'receiv', 'text', 'messag', 'spent', 'doubl', 'could', 'not', 'connect', 'correct'], ['son', 'go', 'love'], ['thank'], ['would', 'not', 'stay', 'synch', 'camera', 'not', 'work', 'apon', 'arriv', 'speaker', 'blown', 'plus', 'came', 'scratch', 'screen', 'believ', 'receiv', 'bad', 'one', 'mayb', 'not', 'like', 'overal', 'i', 'unsatisfi'], ['not', 'muchtuch', 'difficultand', 'bigshould', 'less', 'priceani', 'buttri', 'goodand', 'speaker', 'nice'], ['second', 'one', 'watch', 'brought', 'like', 'first', 'one', 'band', 'one', 'broken', 'also', 'two', 'one', 'watch', 'i', 'brought', 'band', 'broke', 'sent', 'first', 'one', 'back', 'guess', 'i', 'get', 'second', 'one', 'fix', 'problem', 'watch', 'band', 'pleas', 'correct', 'problem'], ['like', 'price', 'howev', 'could', 'not', 'get', 'multipl', 'clock', 'face', 'gold', 'finish', 'flack', 'month'], ['watch', 'amaz', 'technolog', 'not', 'get', 'better'], ['item', 'terribl'], ['basic', 'android', 'smart', 'watch', 'appl', 'watch', 'knockoff', 'design', 'featur', 'other', 'one', 'addit', 'advantag', 'crystal', 'crack', 'reason', 'look', 'crack', 'top', 'bottom', 'essenc', 'watch', 'turn', 'longer', 'interact', 'glad', 'made', 'purchas', 'recommend', 'interest', 'wast', 'money', 'buy', 'mani', 'definit', 'wise', 'invest'], ['hard', 'figur', 'littl', 'instruct'], ['nit', 'expect'], ['christoph'], ['great'], ['arriv', 'china', 'not', 'work'], ['pure', 'junk', 'someth', 'kid', 'whack', 'program', 'cheesi'], ['excel', 'articl', 'full', 'sheet', 'protect', 'screen', 'bring'], ['screen', 'not', 'big', 'enough', 'bare', 'hear'], ['realli', 'drop', 'watch', 'connect', 'issu', 'around', 'qualiti', 'phone', 'drop', 'signal', 'alot', 'wristband', 'small', 'give', 'girlfriend', 'could', 'bare', 'wear'], ['use', 'week', 'work', 'fine', 'even', 'surpris', 'see', 'thing', 'could', 'would', 'take', 'appl', 'iwatch', 'forgot', 'remov', 'one', 'morn', 'took', 'shower', 'not', 'problem', 'not', 'charg', 'not', 'watch'], ['not', 'play', 'video'], ['dosent', 'work', 'month'], ['not', 'even', 'compatu'], ['not', 'like', 'idea', 'watch', 'camera'], ['bought', 'watch', 'month', 'ago', 'alreadi', 'work', 'longer', 'disappoint', 'daughter'], ['could', 'not', 'get', 'thing', 'work', 'sim', 'card', 'i', 'write', 'one', 'loss', 'money', 'tri', 'coont', 'cting', 'compani', 'help'], ['thing', 'first', 'download', 'sever', 'manual', 'web', 'site', 'none', 'right', 'one', 'read', 'abl', 'make', 'progress', 'figur'], ['nice', 'easi', 'use'], ['good'], ['junk'], ['remind', 'old', 'flip', 'phone', 'work', 'basic', 'way', 'key', 'board', 'terribl', 'predict', 'keyboard', 'japanes', 'know', 'may', 'love'], ['bought', 'watch', 'arriv', 'yesterday', 'experi', 'watch', 'mani', 'function', 'mention', 'not', 'work', 'extern', 'speaker', 'phone', 'regular', 'samsung', 'similar', 'android', 'ear', 'bud', 'phone', 'suppli', 'terribl', 'hard', 'earbud', 'diamet', 'larg', 'not', 'place', 'not', 'yet', 'tri', 'sim', 'card', 'blue', 'tooth', 'connect', 'stop', 'intermitt', 'not', 'stabl'], ['watch', 'crap', 'not', 'find', 'al', 'bt', 'notif', 'app', 'let', 'use', 'half', 'featur', 'verizon', 'not', 'compat', 'get', 'sim', 'card', 'wast', 'money'], ['i', 'yet', 'allin', 'one', 'cnpgd', 'question', 'wish', 'want', 'get', 'chip', 'hope', 'download', 'pictur', 'video', 'music', 'mayb', 'radio', 'microsd', 'new', 'comput', 'chip', 'mesd', 'reason', 'not', 'would', 'sure', 'made', 'inform', 'decis'], ['watch', 'amaz', 'technolog', 'not', 'get', 'better'], ['terribl', 'purchas', 'not', 'worth', 'pay'], ['beauti', 'bud', 'bad', 'product', 'touch', 'screen', 'work', 'next', 'day', 'receiv'], ['face', 'come', 'band', 'feel', 'like', 'lose'], ['mention', 'bought', 'one', 'last', 'hour', 'servic', 'estra', 'simcard'], ['son', 'realli', 'want', 'devic', 'knew', 'risk', 'order', 'fearless', 'kid', 'admir', 'pluck', 'sad', 'howev', 'product', 'prove', 'one', 'get', 'one', 'pay', 'manual', 'laughabl', 'watch', 'oper', 'indecipher', 'may', 'work', 'way', 'tell', 'incomprehens', 'user', 'interfac', 'useless', 'instruct', 'honest', 'manual', 'not', 'entir', 'without', 'valu', 'move', 'tear', 'laughter', 'took', 'turn', 'read', 'aloud', 'obvious', 'price', 'translat', 'even', 'googl', 'free', 'translat', 'servic', 'beyond', 'budget', 'one', 'must', 'instal', 'app', 'phone', 'immedi', 'relentless', 'spawn', 'request', 'instal', 'addit', 'unnecessari', 'app', 'know', 'idea', 'inexpens', 'smart', 'watch', 'tempt', 'like', 'danger', 'yet', 'beauti', 'song', 'siren', 'must', 'resist', 'watch', 'see', 'hope', 'dash', 'upon', 'rock'], ['work', 'great'], ['everyth', 'fine'], ['love', 'new', 'wrist', 'watch', 'not', 'water', 'proof', 'everyth', 'seller', 'said', 'would'], ['work', 'fine', 'everyth', 'said', 'plus', 'littl', 'work', 'great', 'total', 'worth', 'price'], ['love', 'watch', 'cell', 'phone', 'e', 'connect', 'cell', 'phone', 'without', 'itt'], ['expect', 'watch', 'featur', 'android', 'devic', 'abl', 'sync', 'import', 'app', 'via', 'bluetooth', 'would', 'sync', 'app'], ['bueno'], ['excelent'], ['cellphon', 'insid', 'watch', 'thought', 'wow', 'great', 'watch', 'everi', 'featur', 'claim', 'amazon', 'product', 'descript', 'page', 'work', 'everyth', 'forti', 'buck', 'not', 'come', 'across', 'cheap', 'watch', 'not', 'even', 'connect', 'bluetooth', 'headphon', 'built', 'speaker', 'loud', 'enough', 'hear', 'person', 'talk', 'line', 'usb', 'charger', 'jack', 'differ', 'univers', 'mini', 'usb', 'not', 'swap', 'usb', 'charger', 'charger', 'pin', 'small', 'devic', 'charger', 'headphon', 'usabl', 'devic', 'overal', 'good'], ['great', 'husband', 'love'], ['product', 'wast', 'money', 'thing', 'work', 'half', 'day', 'direct', 'make', 'sens', 'written', 'attempt', 'english', 'pedomet', 'not', 'accur', 'save', 'money', 'not', 'buy', 'product'], ['price', 'watch', 'pack', 'featur', 'app', 'come', 'choic', 'digit', 'analog', 'watch', 'face', 'not', 'add', 'new', 'one', 'choic', 'hour', 'format', 'pedomet', 'not', 'chang', 'feet', 'inch', 'baromet', 'thermomet', 'centigrad', 'bt', 'dialer', 'phone', 'make', 'receiv', 'call', 'fair', 'good', 'qualiti', 'volum', 'control', 'phonebook', 'search', 'bluetooth', 'browser', 'not', 'work', 'sim', 'card', 'slot', 'standalon', 'cell', 'phone', 'not', 'depend', 'connect', 'phone', 'sd', 'storag', 'card', 'slot', 'call', 'log', 'app', 'smart', 'search', 'remot', 'camera', 'control', 'sleep', 'monitor', 'multimedia', 'player', 'fm', 'radio', 'not', 'work', 'calcul', 'alarm', 'file', 'manag', 'calendar', 'not', 'sync', 'audio', 'player', 'messag', 'sms', 'not', 'mms', 'email', 'not', 'work', 'remot', 'notifi', 'not', 'list', 'app', 'includ', 'comment', 'surpris', 'disappoint', 'mani', 'app', 'i', 'would', 'say', 'overal', 'deal', 'breaker', 'mayb', 'function', 'could', 'restor', 'custom', 'servic', 'technic', 'support', 'product', 'none', 'whatsoev', 'pgd', 'group', 'horribl', 'compani', 'not', 'respond', 'email', 'offer', 'support', 'addit', 'app', 'avail', 'batteri', 'life', 'leav', 'someth', 'desir', 'seem', 'two', 'three', 'day', 'maximum', 'depend', 'usag', 'charg', 'quick', 'use', 'micro', 'usb', 'tini', 'scrap', 'paper', 'suppos', 'pass', 'manual', 'written', 'worst', 'english', 'imagin', 'gibberish', 'rudimentari', 'product', 'not', 'allow', 'sold', 'amazon', 'unless', 'come', 'proper', 'found', 'frustrat', 'thing', 'smart', 'watch', 'continu', 'disconnect', 'bluetooth', 'link', 'phone', 'annoy', 'littl', 'tune', 'even', 'three', 'feet', 'look', 'fair', 'attract', 'smart', 'watch', 'tell', 'time', 'make', 'receiv', 'pretti', 'decent', 'phone', 'call', 'good', 'price', 'may', 'consid', 'model', 'featur', 'not', 'realli', 'recommend', 'lack', 'document', 'custom', 'support', 'total', 'negat', 'factor', 'amazon', 'not', 'allow', 'compani', 'like', 'pgb', 'sell', 'system', 'support', 'document', 'product', 'proper', 'custom', 'servic', 'virtual'], ['receiv', 'watch', 'yesterday', 'got', 'set', 'realli', 'enjoy', 'look', 'feel', 'watch', 'not', 'find', 'size', 'watch', 'least', 'yet', 'larg', 'not', 'imping', 'movement', 'light', 'hard', 'even', 'tell', 'i', 'wear', 'band', 'comfort', 'plenti', 'differ', 'wrist', 'size', 'set', 'make', 'sure', 'scan', 'bar', 'code', 'program', 'watch', 'pair', 'bluetooth', 'made', 'mistak', 'last', 'night', 'confus', 'bt', 'notifi', 'not', 'pair', 'turn', 'watch', 'scan', 'barcod', 'download', 'app', 'phone', 'pair', 'phone', 'watch', 'bluetooth', 'gotten', 'phone', 'call', 'text', 'camera', 'thing', 'right', 'bat', 'i', 'realli', 'disappoint', 'watch', 'fact', 'not', 'chang', 'clock', 'interfac', 'background', 'color', 'home', 'screen', 'realli', 'not', 'end', 'world', 'feel', 'like', 'not', 'difficult', 'allow', 'user', 'chang', 'oh', 'well', 'tri', 'use', 'sleep', 'monitor', 'last', 'night', 'told', 'slept', 'poor', 'not', 'believ', 'someth', 'play', 'agre', 'pedomet', 'probabl', 'not', 'accur', 'look', 'forward', 'get', 'extra', 'micro', 'card', 'memori', 'put', 'music', 'watch', 'hope', 'use', 'go', 'run', 'not', 'bring', 'definit', 'feel', 'like', 'cheap', 'price', 'watch', 'i', 'allow', 'realli', 'see', 'like', 'smart', 'watch', 'busi'], ['not', 'like', 'idea', 'watch', 'camera'], ['realli', 'good', 'phone', 'work', 'good', 'bluetooth'], ['good'], ['good'], ['band', 'ok', 'screen', 'ok', 'batteri', 'ok', 'user', 'manual', 'short', 'dos', 'not', 'support', 'arab'], ['great'], ['work', 'good', 'keep', 'cut', 'keep', 'turn', 'back', 'return', 'number', 'small', 'bit', 'bulki'], ['fake', 'version', 'not', 'support', 'watch', 'face', 'imag', 'sync', 'softwar', 'avail', 'rate', 'best', 'watch', 'get', 'hot', 'use'], ['item', 'came', 'handi', 'longer', 'leav', 'cellular', 'phone', 'anywher', 'watch', 'alert', 'phone', 'four', 'feet', 'reach'], ['not', 'unlock', 'use', 'featur', 'volum', 'poor', 'qualiti', 'wish', 'return'], ['not', 'work', 'carrier', 'sim', 'card'], ['mention', 'bought', 'one', 'last', 'hour', 'servic', 'estra', 'simcard'], ['terribl', 'purchas', 'not', 'worth', 'pay'], ['excelent'], ['meh', 'smartwatch', 'say', 'littl', 'cheap', 'work', 'describ', 'not', 'like', 'instal', 'non', 'verifi', 'apk', 'phone', 'need', 'compat', 'googl', 'wear', 'play', 'store'], ['like', 'far', 'work', 'well', 'moto', 'g', 'not', 'work', 'bluetooth', 'headset'], ['great', 'watch', 'simpl', 'effect'], ['great'], ['cellphon', 'insid', 'watch', 'thought', 'wow', 'great', 'watch', 'everi', 'featur', 'claim', 'amazon', 'product', 'descript', 'page', 'work', 'everyth', 'forti', 'buck', 'not', 'come', 'across', 'cheap', 'watch', 'not', 'even', 'connect', 'bluetooth', 'headphon', 'built', 'speaker', 'loud', 'enough', 'hear', 'person', 'talk', 'line', 'usb', 'charger', 'jack', 'differ', 'univers', 'mini', 'usb', 'not', 'swap', 'usb', 'charger', 'charger', 'pin', 'small', 'devic', 'charger', 'headphon', 'usabl', 'devic', 'overal', 'good'], ['not', 'work', 'galaxi', 'without', 'bluetooth', 'notifi'], ['not', 'realli', 'connect', 'appl'], ['item', 'came', 'chines', 'manual', 'not', 'find', 'one', 'onlin', 'speaker', 'not', 'good'], ['hard', 'sync', 'keep', 'disconnect', 'phone', 'manual', 'not', 'give', 'step', 'step', 'instruct', 'set', 'manual', 'tell', 'button'], ['excel', 'function'], ['like'], ['not', 'like', 'big'], ['face', 'littl', 'big', 'watch', 'cool', 'not', 'expect', 'servic', 'thick', 'cement', 'structur', 'like', 'casino', 'regular', 'work', 'great', 'not', 'practic', 'type', 'much'], ['watch', 'look', 'feel', 'lot', 'high', 'school', 'love', 'sinc', 'look', 'good', 'practic', 'girl', 'seem', 'pay', 'atent', 'gave', 'excus', 'aproach', 'view', 'video', 'kid', 'keep', 'tell', 'camera', 'record', 'video', 'play', 'card', 'insert', 'tri', 'work', 'well', 'xmas', 'gift', 'guy', 'lemfo', 'white', 'girl', 'one', 'review', 'list'], ['love'], ['great', 'watch'], ['send', 'back', 'twice', 'day', 'pin', 'hole', 'watch', 'kept', 'come'], ['cheap', 'knock'], ['excel'], ['nice', 'price'], ['not', 'good', 'not', 'last', 'long', 'month'], ['not', 'expect'], ['excelent'], ['good'], ['fake', 'version', 'not', 'support', 'watch', 'face', 'imag', 'sync', 'softwar', 'avail', 'rate', 'best', 'watch', 'get', 'hot', 'use'], ['quiero', 'otro', 'celu', 'asi'], ['great', 'watch', 'great', 'qualiti'], ['everyth', 'expect', 'troubl', 'figur', 'set'], ['poor', 'qualiti', 'not', 'work', 'function', 'mini', 'sd', 'card', 'insert', 'still', 'use', 'time', 'keep', 'otherwis', 'would', 'rather', 'not', 'buy'], ['not', 'like', 'way'], ['awesom', 'phone', 'love'], ['junk', 'band', 'tore', 'devic', 'week', 'purchas', 'save', 'money', 'buy', 'someth', 'qualiti'], ['stop', 'work', 'one', 'month', 'return', 'period', 'end', 'main', 'button', 'stop', 'work', 'essenti', 'useless', 'point'], ['ok'], ['excel'], ['satisfi', 'amazon', 'shipment', 'custom', 'servic', 'far', 'watch', 'purchas', 'son', 'use', 'iphon', 'also', 'like', 'fact', 'could', 'put', 'sim', 'card', 'use', 'phone', 'unfortun', 'put', 'sim', 'card', 'not', 'accept', 'servic', 'also', 'appl', 'system', 'not', 'realli', 'much', 'bluetooth', 'would', 'bought', 'samsung', 'gear', 'gear', 'everyth', 'expect'], ['complet', 'not', 'buy', 'unless', 'want', 'toy'], ['awesom', 'thank'], ['product', 'perfect', 'recommend', 'anyon', 'enjoy', 'technolog'], ['great', 'watch', 'price', 'look', 'bell', 'whistl', 'invest', 'money', 'test', 'run', 'smart', 'watch', 'market', 'watch', 'great', 'ship', 'day', 'hassl', 'thing', 'suggest', 'look', 'youtub', 'video', 'download', 'bt', 'notfif', 'softwar', 'would', 'suggest', 'use', 'barcod', 'scanner', 'download', 'softwar'], ['realli', 'like', 'smartwatch', 'problem', 'far', 'work', 'finei', 'would', 'like', 'know', 'could', 'get', 'extra', 'batteri'], ['janki', 'not', 'worth', 'buy', 'real', 'thing'], ['love', 'work', 'great', 'great', 'buy', 'money'], ['need'], ['great', 'husband', 'love'], ['use', 'almsot', 'day', 'not', 'encount', 'issu', 'kind', 'difficult', 'get', 'phone', 'connect', 'instal', 'app', 'softwar', 'sort', 'booklet'], ['purchas', 'smart', 'watch', 'watch', 'could', 'not', 'activ', 'not', 'good', 'buy'], ['not', 'work', 'not', 'even', 'come', 'readi', 'use', 'need', 'sim', 'card', 'also', 'sd', 'card'], ['bought', 'item', 'father', 'father', 'day', 'gadget', 'guy', 'thought', 'would', 'perfect', 'gift', 'open', 'gift', 'start', 'play', 'find', 'qualiti', 'item', 'terribl', 'not', 'mention', 'fact', 'box', 'rip', 'item', 'alreadi', 'tamper', 'descript', 'site', 'mislead', 'not', 'wast', 'money'], ['best', 'one', 'yet', 'perfect', 'buy', 'would', 'buy', 'good', 'qualiti', 'must', 'buy'], ['watch', 'look', 'feel', 'lot', 'high', 'school', 'love', 'sinc', 'look', 'good', 'practic', 'girl', 'seem', 'pay', 'atent', 'gave', 'excus', 'aproach', 'view', 'video', 'kid', 'keep', 'tell', 'camera', 'record', 'video', 'play', 'card', 'insert', 'tri', 'work', 'well', 'xmas', 'gift', 'guy', 'lemfo', 'white', 'girl', 'one', 'review', 'list'], ['pleas', 'not', 'get', 'watch', 'must', 'say', 'feel', 'look', 'make', 'fall', 'love', 'first', 'four', 'hour', 'touch', 'screen', 'unrespons', 'batteri', 'went', 'return', 'get', 'differ', 'brand'], ['not', 'like', 'big'], ['not', 'say', 'whether', 'not', 'good', 'smart', 'watch', 'mine', 'would', 'not', 'turn', 'return'], ['could', 'not', 'get', 'qualiti', 'price', 'worth', 'buy', 'regret', 'synchron', 'phone', 'easili', 'phone', 'call', 'qualiti', 'great'], ['love', 'bt', 'watch', 'i', 'month', 'held', 'well', 'softwar', 'easi', 'use', 'may', 'not', 'nice', 'expens', 'counterpart', 'work', 'fine', 'good', 'way', 'see', 'bt', 'watch', 'someth', 'would', 'like', 'invest', 'money', 'road', 'not', 'get', 'wet', 'although', 'watch', 'still', 'technic', 'cell', 'phone'], ['like', 'would', 'recommend', 'friend', 'famili', 'best', 'watch', 'phone', 'ever', 'seen'], ['excelent'], ['excel', 'articl', 'full', 'sheet', 'protect', 'screen', 'bring'], ['nice', 'price'], ['want', 'fast', 'geeki', 'gadget', 'ad', 'collect', 'tech', 'stuff', 'must', 'cheap', 'work', 'fine', 'realli', 'good', 'batteri', 'call', 'qualiti'], ['bought', 'yr', 'old', 'work', 'perfect', 'prepaid', 'sim', 'problem', 'big', 'take', 'lot', 'play', 'charger', 'cabl', 'uniqu', 'lost', 'phone', 'worthless', 'find', 'way', 'buy', 'anoth', 'cabl', 'not', 'standard', 'usb', 'speaker', 'phone', 'loud', 'enough', 'not', 'need', 'headphon', 'also', 'uniqu', 'adapt'], ['notifi', 'custom', 'let', 'know', 'need', 'buy', 'sim', 'card', 'memori', 'card', 'bewar', 'overal', 'good', 'watch', 'though'], ['cool', 'cool'], ['item', 'came', 'handi', 'longer', 'leav', 'cellular', 'phone', 'anywher', 'watch', 'alert', 'phone', 'four', 'feet', 'reach'], ['good'], ['great', 'custom', 'servic', 'product', 'arriv', 'exact', 'day', 'promis', 'work', 'far', 'not', 'realli', 'time', 'use', 'test', 'sim', 'card', 'far', 'tell', 'work'], ['love', 'time'], ['buenisimo'], ['good'], ['good', 'phone', 'watch', 'hous', 'big'], ['not', 'get', 'thing', 'sync', 'phone', 'even', 'watch', 'sever', 'youtub', 'video', 'still', 'not', 'figur', 'not', 'find', 'sound', 'turn', 'not', 'pull', 'app', 'section', 'time', 'send', 'back', 'not', 'wast', 'money'], ['watch', 'came', 'time', 'work', 'good', 'sim', 'card', 'internet', 'not', 'work', 'tho', 'headphon', 'come', 'suck', 'jus', 'use', 'bluetooth', 'speaker', 'loud', 'hear', 'good', 'not', 'use', 'headset'], ['nice'], ['someon', 'help', 'direct', 'poor', 'got', 'sim', 'tri', 'add', 'go', 'phone', 'watch', 'not', 'dial', 'say', 'bt', 'call', 'local', 'call'], ['work', 'realli', 'well', 'husband', 'said', 'best', 'father', 'day', 'gift'], ['dosent', 'work', 'month'], ['good'], ['item', 'allot', 'fun', 'not', 'go', 'get', 'rid', 'smart', 'phone', 'like', 'most', 'second', 'phone', 'play', 'nice', 'not', 'practic'], ['quiero', 'otro', 'celu', 'asi'], ['ok'], ['remind', 'old', 'flip', 'phone', 'work', 'basic', 'way', 'key', 'board', 'terribl', 'predict', 'keyboard', 'japanes', 'know', 'may', 'love'], ['not', 'good', 'not', 'last', 'long', 'month'], ['buy', 'product', 'saw', 'date', 'arriv', 'day', 'trip', 'turn', 'packag', 'arriv', 'thought', 'complet', 'not', 'good', 'product', 'deliv', 'front', 'apart', 'offic', 'offic', 'close', 'pm', 'crazi'], ['great', 'watch', 'easi', 'set', 'iphon', 'samsung', 'galaxi', 'clear', 'sound', 'qualiti', 'beauti', 'design', 'worth', 'buy', 'best', 'item', 'bought', 'amazon'], ['great', 'gift'], ['phone', 'watch', 'awesom', 'would', 'defin', 'recommend', 'buy', 'ship', 'long', 'worth', 'wait', 'babi', 'love'], ['product', 'miss', 'lot', 'not', 'even', 'stop', 'watch', 'calcul', 'plus', 'pay', 'day', 'ship', 'got', 'day'], ['love', 'work', 'great', 'great', 'buy', 'money'], ['worthless', 'i', 'not', 'satisfi', 'one', 'bit'], ['didnot', 'like', 'gave', 'away'], ['qualiti', 'actual', 'product', 'nice', 'sturdi', 'problem', 'product', 'bluetooth', 'kept', 'disconnect', 'everi', 'minut', 'step', 'counter', 'would', 'reset', 'everi', 'often', 'without', 'prompt'], ['instruct', 'not', 'clear', 'hard', 'set', 'never', 'got', 'set', 'return'], ['send', 'back', 'bc', 'not', 'work', 'say'], ['good', 'cheap', 'product', 'would', 'say', 'purchas', 'watch', 'use', 'decid', 'want', 'get', 'expens', 'one'], ['appear', 'good', 'product', 'need', 'research', 'program'], ['not', 'good', 'phone', 'whatch', 'like', 'look', 'whatch', 'bat', 'not', 'good', 'los', 'mani', 'usd'], ['cuz', 'not', 'come', 'sim', 'card', 'not', 'use', 'useless', 'not', 'good'], ['think', 'great', 'product', 'work', 'great', 'practic', 'find', 'function', 'clock', 'radio', 'phone', 'one'], ['state', 'unlock', 'took', 'sever', 'phone', 'compani', 'said', 'thing', 'not', 'unlock'], ['watch', 'came', 'time', 'work', 'good', 'sim', 'card', 'internet', 'not', 'work', 'tho', 'headphon', 'come', 'suck', 'jus', 'use', 'bluetooth', 'speaker', 'loud', 'hear', 'good', 'not', 'use', 'headset'], ['describ', 'not', 'tale', 'long', 'arriv'], ['order', 'watch', 'father', 'day', 'gift', 'husband', 'first', 'problem', 'compani', 'say', 'oh', 'yes', 'get', 'father', 'day', 'love', 'would', 'nice', 'chines', 'someth', 'thing', 'stuck', 'languag', 'make', 'matter', 'wors', 'watch', 'not', 'charg', 'come', 'b', 'european', 'charger', 'not', 'work', 'us', 'either', 'km', 'told', 'address', 'usa', 'deal', 'amazon', 'direct', 'amazon', 'parti', 'seller'], ['not', 'buy'], ['make', 'phone', 'call', 'receiv'], ['cheap', 'purchas', 'sim', 'card'], ['love', 'item', 'got', 'work', 'well'], ['dosent', 'work', 'month'], ['pleasant', 'surpris', 'qualiti', 'watch', 'describ', 'sound', 'qualiti', 'phone', 'call', 'crystal', 'clear', 'howev', 'volumn', 'could', 'tad', 'louder', 'far', 'not', 'found', 'volumn', 'control', 'littl', 'help', 'youtub', 'sync', 'bluetooth', 'fair', 'easi', 'instruct', 'not', 'help', 'technogeek', 'figur', 'overal', 'good', 'valu', 'money'], ['nope'], ['smart', 'watch', 'not', 'worth', 'money', 'not', 'function', 'not', 'work', 'proper', 'app', 'need', 'connect', 'iphon', 'not', 'work', 'built', 'app', 'scan', 'fail', 'sinc', 'instruct', 'lack', 'search', 'similar', 'app', 'noth', 'luckili', 'bought', 'old', 'see', 'could', 'respons', 'enough', 'smart', 'watch', 'within', 'hour', 'accident', 'submerg', 'water', 'gave', 'quick', 'death', 'wast', 'money'], ['nice', 'price'], ['good', 'novelti', 'item', 'not', 'good', 'phone', 'watch'], ['i', 'yet', 'allin', 'one', 'cnpgd', 'question', 'wish', 'want', 'get', 'chip', 'hope', 'download', 'pictur', 'video', 'music', 'mayb', 'radio', 'microsd', 'new', 'comput', 'chip', 'mesd', 'reason', 'not', 'would', 'sure', 'made', 'inform', 'decis'], ['told', 'watch', 'would', 'pair', 'window', 'phone', 'howev', 'not', 'not', 'download', 'app', 'watch', 'pretti', 'much', 'wrist', 'tell', 'time', 'anyon', 'info', 'download', 'app', 'would', 'great', 'appreci'], ['fast', 'ship', 'item', 'expect'], ['great'], ['good'], ['realli', 'good', 'watch', 'give', 'one', 'star', 'less', 'problem', 'product', 'descript', 'not', 'clear', 'term', 'whether', 'use', 'gsm', 'cdma', 'sim', 'card', 'first', 'went', 'verizon', 'buy', 'simcard', 'activ', 'card', 'minimum', 'amount', 'came', 'know', 'phone', 'not', 'support', 'verizon', 'sim', 'buy', 'sim', 'wish', 'instruct', 'could', 'upfront', 'provid', 'could', 'spare', 'troubl'], ['featur', 'not', 'work', 'unnecessari', 'app', 'need', 'instal', 'syn', 'phone', 'sure', 'phone', 'becom', 'donot', 'buy'], ['reason', 'not', 'get', 'internet', 'get', 'micro', 'sd', 'card', 'sync', 'watch', 'need', 'help'], ['like'], ['love'], ['love'], ['not', 'quit', 'expect', 'thought', 'smartwatch', 'like', 'basic', 'phone', 'not', 'smart', 'capabl', 'fun', 'play', 'would', 'not', 'use', 'regular', 'phone', 'call', 'qualiti', 'quiet', 'headphon', 'came', 'low', 'qualiti', 'quiet', 'search', 'long', 'time', 'find', 'right', 'program', 'pair', 'phone', 'sorri', 'say', 'forgot', 'program', 'write', 'review'], ['realli', 'nice', 'watch', 'work', 'well', 'pair', 'galaxi', 'avant', 'howev', 'got', 'yesterday', 'screen', 'crack', 'warranti'], ['stop', 'charg', 'week', 'wast', 'money'], ['like', 'radio'], ['not', 'recognis', 'sim', 'card', 'indiano', 'voic', 'diall', 'featur', 'even', 'though', 'advertis', 'vijay', 'magapu'], ['not', 'like', 'cudnt', 'power'], ['not', 'sink', 'phone'], ['want', 'fast', 'geeki', 'gadget', 'ad', 'collect', 'tech', 'stuff', 'must', 'cheap', 'work', 'fine', 'realli', 'good', 'batteri', 'call', 'qualiti'], ['not', 'recognis', 'sim', 'card', 'indiano', 'voic', 'diall', 'featur', 'even', 'though', 'advertis', 'vijay', 'magapu'], ['first', 'watch', 'phone', 'bought', 'unbeliev', 'awesom', 'littl', 'phone', 'halfway', 'year', 'manag', 'break', 'charger', 'not', 'hard', 'get', 'replac', 'not', 'abl', 'locat', 'one', 'yet', 'i', 'forc', 'buy', 'anoth', 'watch', 'fun', 'way', 'charg', 'watch', 'phone', 'one', 'best', 'definit', 'worth', 'money'], ['realli', 'like', 'easi', 'set'], ['nice', 'watch', 'good', 'busi'], ['not', 'work', 'screen', 'stay', 'white', 'whole', 'time'], ['work', 'littl', 'bit', 'recogn', 'phone', 'sync', 'call', 'husband', 'decent', 'not', 'great', 'audio', 'qualiti', 'took', 'littl', 'break', 'find', 'not', 'sync', 'would', 'not', 'dozen', 'tri', 'instruct', 'not', 'cover', 'sync', 'origin', 'figur', 'cell', 'phone', 'find', 'via', 'bluetooth', 'noth', 'troubleshoot', 'i', 'return', 'purchas', 'anoth', 'brand', 'love', 'idea', 'purchas', 'smart', 'watch', 'cheap', 'mysteri', 'drop', 'way', 'sync', 'dud'], ['realli', 'nice', 'watch', 'work', 'well', 'pair', 'galaxi', 'avant', 'howev', 'got', 'yesterday', 'screen', 'crack', 'warranti'], ['arriv', 'china', 'not', 'work'], ['love'], ['voic', 'clear', 'not', 'good', 'item'], ['muy', 'bueno'], ['smart', 'watch', 'not', 'worth', 'money', 'not', 'function', 'not', 'work', 'proper', 'app', 'need', 'connect', 'iphon', 'not', 'work', 'built', 'app', 'scan', 'fail', 'sinc', 'instruct', 'lack', 'search', 'similar', 'app', 'noth', 'luckili', 'bought', 'old', 'see', 'could', 'respons', 'enough', 'smart', 'watch', 'within', 'hour', 'accident', 'submerg', 'water', 'gave', 'quick', 'death', 'wast', 'money'], ['love', 'bt', 'watch', 'i', 'month', 'held', 'well', 'softwar', 'easi', 'use', 'may', 'not', 'nice', 'expens', 'counterpart', 'work', 'fine', 'good', 'way', 'see', 'bt', 'watch', 'someth', 'would', 'like', 'invest', 'money', 'road', 'not', 'get', 'wet', 'although', 'watch', 'still', 'technic', 'cell', 'phone'], ['hard', 'figur', 'littl', 'instruct'], ['not', 'great', 'work', 'better', 'buy', 'appl', 'samsung', 'r', 'better', 'not', 'want', 'anyth', 'fanci', 'would', 'good', 'keyboard', 'small', 'hard', 'text', 'say', 'download', 'app', 'not', 'worri', 'download', 'app', 'connect', 'bluetooth', 'text', 'call', 'work', 'think', 'hard', 'use'], ['describ', 'not', 'tale', 'long', 'arriv'], ['order', 'watch', 'father', 'day', 'gift', 'husband', 'first', 'problem', 'compani', 'say', 'oh', 'yes', 'get', 'father', 'day', 'love', 'would', 'nice', 'chines', 'someth', 'thing', 'stuck', 'languag', 'make', 'matter', 'wors', 'watch', 'not', 'charg', 'come', 'b', 'european', 'charger', 'not', 'work', 'us', 'either', 'km', 'told', 'address', 'usa', 'deal', 'amazon', 'direct', 'amazon', 'parti', 'seller'], ['cool', 'item', 'find', 'bluetooth', 'devic', 'easili', 'featur', 'not', 'figur', 'use', 'yet', 'hope', 'learn', 'dedic', 'forum', 'find', 'one', 'specif', 'want', 'abl', 'control', 'ipod', 'camera', 'watch', 'ipod', 'mount', 'bicycl', 'handl', 'bar'], ['exelent', 'produto'], ['receiv', 'watch', 'month', 'longer', 'return', 'work', 'well', 'bataria', 'not', 'charg', 'headset', 'not', 'work', 'time', 'useless'], ['nice', 'work', 'advertis'], ['remind', 'old', 'flip', 'phone', 'work', 'basic', 'way', 'key', 'board', 'terribl', 'predict', 'keyboard', 'japanes', 'know', 'may', 'love'], ['satisfi', 'amazon', 'shipment', 'custom', 'servic', 'far', 'watch', 'purchas', 'son', 'use', 'iphon', 'also', 'like', 'fact', 'could', 'put', 'sim', 'card', 'use', 'phone', 'unfortun', 'put', 'sim', 'card', 'not', 'accept', 'servic', 'also', 'appl', 'system', 'not', 'realli', 'much', 'bluetooth', 'would', 'bought', 'samsung', 'gear', 'gear', 'everyth', 'expect'], ['realli', 'good', 'phone', 'work', 'good', 'bluetooth'], ['excelent'], ['like', 'better', 'expect'], ['ok', 'could', 'better'], ['not', 'bad'], ['like', 'work', 'well', 'audibl', 'enough'], ['ok', 'watch', 'hour', 'found', 'thus', 'far', 'know', 'not', 'compar', 'iwatch', 'gear', 'moto', 'anyth', 'price', 'rang', 'get', 'pay', 'manufactur', 'must', 'think', 'user', 'vision', 'better', 'sheet', 'booklet', 'page', 'cover', 'size', 'standard', 'play', 'card', 'languag', 'english', 'look', 'like', 'run', 'cheap', 'translat', 'not', 'tone', 'abras', 'not', 'support', 'exampl', 'use', 'pleas', 'read', 'user', 'manual', 'care', 'support', 'standard', 'batteri', 'charger', 'accessori', 'approv', 'not', 'take', 'respons', 'consequ', 'use', 'third', 'parti', 'accessori', 'prohibit', 'unauthor', 'disassembl', 'watch', 'phone', 'mechan', 'vibrat', 'shake', 'kick', 'screen', 'tool', 'use', 'solut', 'clean', 'benzen', 'thinner', 'alcohol', 'touch', 'watch', 'phone', 'corros', 'chemic', 'clean', 'textil', 'clean', 'soft', 'expos', 'watch', 'phone', 'verbatim', 'get', 'pictur', 'not', 'get', 'charger', 'cover', 'later', 'cnpgd', 'glad', 'rewrit', 'manual', 'eval', 'small', 'fee', 'free', 'gear', 'realli', 'like', 'materi', 'previous', 'inexpens', 'mark', 'watch', 'felt', 'realli', 'cheap', 'worth', 'metal', 'side', 'case', 'thick', 'welcom', 'fit', 'larg', 'wrist', 'inch', 'circumfer', 'even', 'strike', 'similar', 'appl', 'watch', 'design', 'daughter', 'appl', 'watch', 'point', 'similar', 'watch', 'larger', 'appl', 'watch', 'like', 'larger', 'size', 'round', 'power', 'button', 'name', 'impli', 'rotat', 'effect', 'like', 'scroll', 'zoom', 'etc', 'oblong', 'look', 'button', 'not', 'button', 'micro', 'usb', 'cover', 'microphon', 'littl', 'hold', 'ub', 'slot', 'speaker', 'opposit', 'side', 'button', 'back', 'watch', 'phone', 'batteri', 'cover', 'made', 'plastic', 'heart', 'rate', 'monitor', 'wireless', 'charg', 'remov', 'cover', 'instal', 'suppli', 'batteri', 'option', 'micro', 'sd', 'card', 'micro', 'sim', 'card', 'would', 'not', 'recommend', 'remov', 'card', 'often', 'small', 'wire', 'damag', 'sd', 'card', 'remov', 'littl', 'tricki', 'insert', 'sim', 'card', 'slot', 'lay', 'slot', 'close', 'latch', 'slide', 'lock', 'small', 'gap', 'glass', 'crystal', 'bezel', 'top', 'right', 'camera', 'easili', 'slide', 'edg', 'three', 'sheet', 'standard', 'printer', 'paper', 'gap', 'would', 'afraid', 'wear', 'watch', 'rain', 'band', 'rubberi', 'plastic', 'metal', 'buckl', 'ant', 'two', 'free', 'loop', 'feel', 'secur', 'look', 'good', 'wear', 'look', 'like', 'not', 'chang', 'band', 'watch', 'avail', 'brown', 'blue', 'pink', 'band', 'addit', 'abl', 'pair', 'watch', 'blackberri', 'appl', 'iphon', 'samsung', 'galaxi', 'note', 'not', 'abl', 'download', 'apk', 'iphon', 'appl', 'not', 'allow', 'side', 'load', 'abl', 'download', 'apk', 'blackberri', 'note', 'instal', 'suggest', 'apk', 'file', 'bt', 'notif', 'app', 'present', 'two', 'reminderto', 'download', 'app', 'fundo', 'funddo', 'anim', 'motion', 'data', 'steward', 'watch', 'movement', 'data', 'synchron', 'messag', 'activ', 'tracker', 'health', 'app', 'look', 'littl', 'like', 'samsung', 'health', 'languag', 'not', 'translat', 'requir', 'creat', 'account', 'email', 'address', 'uninstal', 'enabl', 'accessibilitybtnotif', 'requir', 'send', 'notif', 'must', 'activ', 'access', 'app', 'open', 'access', 'set', 'option', 'activ', 'found', 'note', 'iphon', 'connect', 'via', 'bt', 'make', 'receiv', 'phone', 'call', 'not', 'abl', 'send', 'receiv', 'sms', 'text', 'messag', 'could', 'not', 'put', 'iphon', 'vibrat', 'even', 'meet', 'mode', 'iphon', 'still', 'ring', 'speaker', 'realli', 'loud', 'decent', 'control', 'volum', 'need', 'abl', 'place', 'phone', 'blackberri', 'connect', 'via', 'bt', 'make', 'receiv', 'phone', 'call', 'not', 'abl', 'send', 'receiv', 'sms', 'text', 'messag', 'abl', 'put', 'phone', 'vibrateth', 'note', 'connect', 'via', 'bt', 'make', 'receiv', 'phone', 'call', 'not', 'abl', 'send', 'receiv', 'sms', 'text', 'messag', 'suggest', 'apk', 'bt', 'notif', 'take', 'advantag', 'bt', 'featur', 'describ', 'web', 'previous', 'smart', 'watch', 'not', 'work', 'download', 'app', 'also', 'review', 'suggest', 'uninstal', 'app', 'run', 'clean', 'master', 'download', 'app', 'smartwear', 'galapad', 'smartwear', 'connect', 'send', 'receiv', 'sms', 'text', 'messag', 'get', 'notif', 'captur', 'pictur', 'listen', 'bt', 'music', 'note', 'lot', 'featur', 'watch', 'not', 'requir', 'bt', 'work', 'step', 'counter', 'work', 'calori', 'kcal', 'kilocalori', 'distanc', 'km', 'not', 'mile', 'batteri', 'seem', 'decent', 'not', 'test', 'insert', 'sim', 'card', 'note', 'watch', 'abl', 'make', 'phone', 'usb', 'cabl', 'connect', 'charger', 'not', 'includ', 'usb', 'earbud', 'listen', 'music', 'phone', 'call', 'serv', 'fm', 'radio', 'antenna', 'cabl', 'short', 'usb', 'earbud', 'cabl', 'inch', 'usb', 'cabl', 'charg', 'inch', 'one', 'ad', 'bonus', 'charg', 'cabl', 'micro', 'usb', 'end', 'connect', 'watch', 'need', 'get', 'around', 'usb', 'cover', 'watch', 'user', 'manual', 'call', 'smart', 'watch', 'flaw', 'recommend', 'compar', 'anoth', 'one', 'see', 'gap', 'present', 'watch', 'not', 'send', 'one', 'back', 'defect', 'cnpgd', 'not', 'list', 'watch', 'mark', 'get', 'paid'], ['good'], ['nice', 'watch', 'stop', 'accept', 'charg', 'slot', 'charger', 'goe', 'watch', 'batteri', 'becom', 'loos', 'less', 'two', 'week', 'buy'], ['receiv', 'item', 'time', 'not', 'charg'], ['hard', 'time', 'connect', 'stay', 'connect'], ['excel'], ['request', 'gift', 'year', 'old', 'nephew', 'watch', 'meant', 'wrist', 'adult', 'gave', 'dad', 'grandfath', 'insist', 'call', 'talk', 'watch'], ['work', 'describ'], ['hi', 'amazon', 'staff', 'good', 'day', 'thank', 'stuff', 'bought', 'ur', 'ship', 'actual', 'give', 'inform', 'regard', 'quadband', 'voic', 'dial', 'cellphon', 'i', 'goin', 'home', 'philippin', 'want', 'send', 'pictur', 'gift', 'special', 'life', 'thank', 'easi', 'purchas', 'happi', 'day', 'alway'], ['purchas', 'cell', 'phone', 'watch', 'yet', 'use', 'i', 'purchas', 'server', 'sim', 'card', 'phone', 'not', 'read', 'sim', 'everi', 'time', 'put', 'sim', 'card', 'phone', 'read', 'invalid', 'sim', 'go', 'week', 'not', 'return', 'item', 'past', 'day', 'howev', 'unabl', 'contact', 'anyon', 'assist', 'i', 'tri', 'get', 'contact', 'info', 'manufactur', 'unabl', 'someon', 'pleas', 'help', 'shop', 'amazon', 'alot', 'would', 'hate', 'cancel', 'account', 'lack', 'assist'], ['would', 'not', 'stay', 'sync', 'phone'], ['good'], ['not', 'buy', 'product', 'not', 'work', 'disappoint'], ['not', 'like', 'phone', 'phone', 'switch', 'pen', 'calibr', 'thing', 'pop', 'say', 'touch', 'pen', 'screen', 'reset', 'set', 'seller'], ['work', 'describ', 'although', 'print', 'tini', 'text', 'near', 'imposs', 'without', 'magnifi', 'glass', 'unless', 'vision', 'everi', 'time', 'want', 'write', 'text', 'messag', 'must', 'scroll', 'thru', 'like', 'input', 'mode', 'get', 'english', 'abc', 'not', 'keep', 'set', 'input', 'keypad', 'easiest', 'handwrit', 'mode', 'frustat', 'must', 'write', 'letter', 'understand', 'correct', 'rare', 'must', 'enter', 'number', 'text', 'go', 'manual', 'unless', 'repli', 'incom', 'messag', 'recent', 'menu', 'not', 'know', 'number', 'heart', 'write', 'start', 'text', 'make', 'take', 'call', 'easi', 'bluetooth', 'best', 'due', 'speaker', 'volum', 'posit', 'watch', 'akin', 'tri', 'put', 'elbow', 'ear', 'voic', 'dial', 'get', 'person', 'i', 'tri', 'dial', 'correct', 'mayb', 'time', 'may', 'troubl', 'understand', 'accent', 'born', 'rais', 'sf', 'bay', 'area', 'must', 'instal', 'sim', 'card', 'everi', 'time', 'use', 'time', 'correct', 'date', 'never', 'right', 'time', 'set', 'time', 'pain', 'make', 'mental', 'note', 'far', 'calcul', 'approx', 'time', 'work', 'fine', 'got', 'without', 'hold', 'phone', 'shop', 'pretti', 'amaz', 'realli', 'consid', 'year', 'ago', 'possibl', 'movi', 'tv'], ['nice', 'look', 'difficult', 'use', 'use', 'time', 'use', 'old', 'sim', 'card'], ['data', 'not', 'work', 'hour', 'talk', 'att', 'phone', 'apn', 'settingsclock', 'reset', 'chang', 'quit', 'not', 'hear', 'even', 'loud', 'headphon', 'notno', 'smart', 'sync', 'bluetooth', 'not', 'pair', 'headphon'], ['good', 'starter', 'smartwatch', 'basic', 'good'], ['poor', 'qualiti', 'watch', 'list', 'inform', 'onlin', 'not', 'work', 'iphon'], ['good', 'watch'], ['purchas', 'cell', 'phone', 'watch', 'yet', 'use', 'i', 'purchas', 'server', 'sim', 'card', 'phone', 'not', 'read', 'sim', 'everi', 'time', 'put', 'sim', 'card', 'phone', 'read', 'invalid', 'sim', 'go', 'week', 'not', 'return', 'item', 'past', 'day', 'howev', 'unabl', 'contact', 'anyon', 'assist', 'i', 'tri', 'get', 'contact', 'info', 'manufactur', 'unabl', 'someon', 'pleas', 'help', 'shop', 'amazon', 'alot', 'would', 'hate', 'cancel', 'account', 'lack', 'assist'], ['big'], ['bought', 'yr', 'old', 'work', 'perfect', 'prepaid', 'sim', 'problem', 'big', 'take', 'lot', 'play', 'charger', 'cabl', 'uniqu', 'lost', 'phone', 'worthless', 'find', 'way', 'buy', 'anoth', 'cabl', 'not', 'standard', 'usb', 'speaker', 'phone', 'loud', 'enough', 'not', 'need', 'headphon', 'also', 'uniqu', 'adapt'], ['love', 'item', 'got', 'work', 'well'], ['great', 'watch', 'great', 'gift'], ['excelent'], ['impress', 'qualiti', 'product', 'econom', 'smartwatch', 'mani', 'extra'], ['screen', 'not', 'big', 'enough', 'bare', 'hear'], ['love', 'love', 'love'], ['work', 'two', 'week', 'two', 'week', 'dead', 'not', 'work', 'blue', 'tooth', 'not', 'realli', 'recomend', 'wast', 'money'], ['nice'], ['great'], ['everyth', 'fine'], ['love', 'watch', 'sound', 'qualiti', 'terribl', 'even', 'volum', 'turn', 'still', 'extrem', 'low', 'problem'], ['not', 'like', 'big'], ['speaker', 'sound', 'phone', 'make', 'call', 'not', 'good'], ['awesom'], ['nice', 'look', 'like', 'jame', 'bond', 'movi', 'pretti', 'cool', 'watch', 'everybodi', 'like', 'watch', 'star', 'winn'], ['receiv', 'watch', 'howev', 'disappoint', 'not', 'not', 'know', 'want', 'return', 'get', 'anoth', 'bad', 'sim', 'card', 'screen', 'continu', 'flash', 'not', 'wast'], ['work', 'great', 'easi', 'get', 'prepaid', 'card', 'switch', 'carrier', 'fuss', 'cool', 'watch'], ['great', 'valu', 'job', 'work', 'wish', 'could', 'littl', 'custom', 'though'], ['not', 'realli', 'find', 'use', 'applic', 'preinstal', 'watch', 'n', 'chines', 'way', 'chang', 'english', 'bluetooth', 'connect', 'not', 'work', 'well', 'headset', 'came', 'watch', 'sound', 'horribl', 'wast', 'time', 'effort', 'money'], ['exelent'], ['watch', 'not', 'work', 'wast', 'good', 'money', 'feel', 'cheat', 'seller', 'not', 'sell', 'watch', 'phone', 'want', 'money', 'back', 'sap'], ['second', 'one', 'watch', 'brought', 'like', 'first', 'one', 'band', 'one', 'broken', 'also', 'two', 'one', 'watch', 'i', 'brought', 'band', 'broke', 'sent', 'first', 'one', 'back', 'guess', 'i', 'get', 'second', 'one', 'fix', 'problem', 'watch', 'band', 'pleas', 'correct', 'problem'], ['bueno'], ['impress', 'qualiti', 'consid', 'low', 'price', 'excel', 'qualiti', 'great', 'product'], ['work', 'littl', 'bit', 'recogn', 'phone', 'sync', 'call', 'husband', 'decent', 'not', 'great', 'audio', 'qualiti', 'took', 'littl', 'break', 'find', 'not', 'sync', 'would', 'not', 'dozen', 'tri', 'instruct', 'not', 'cover', 'sync', 'origin', 'figur', 'cell', 'phone', 'find', 'via', 'bluetooth', 'noth', 'troubleshoot', 'i', 'return', 'purchas', 'anoth', 'brand', 'love', 'idea', 'purchas', 'smart', 'watch', 'cheap', 'mysteri', 'drop', 'way', 'sync', 'dud'], ['not', 'good', 'phone', 'whatch', 'like', 'look', 'whatch', 'bat', 'not', 'good', 'los', 'mani', 'usd'], ['bought', 'xmas', 'gift', 'hubbi', 'hope', 'like', 'updat', 'xmas'], ['awesom', 'job', 'busi'], ['work', 'time', 'sometim', 'not', 'paid', 'buck', 'price', 'good', 'sometim', 'get', 'email', 'sometim', 'get', 'text', 'even', 'repli', 'sometim', 'watch', 'look', 'nice', 'arm', 'screen', 'respons', 'good', 'watch', 'tri', 'see', 'would', 'even', 'need', 'high', 'end', 'smart', 'watch'], ['nice', 'watch', 'easi', 'use', 'love', 'make', 'call', 'instead', 'alway', 'mani', 'awesom', 'featur'], ['good', 'work', 'perfect'], ['cheap', 'interfac', 'never', 'work', 'samsung', 'galaxi'], ['good', 'phone', 'watch', 'must'], ['everyth', 'advertis', 'pretti', 'amaz', 'someth', 'size', 'watch', 'alreadi', 'receiv', 'compliment', 'attract', 'look'], ['great', 'husband', 'love'], ['bueno'], ['husband', 'happi', 'gift', 'fun', 'stylish', 'packag', 'arriv', 'time', 'instruct', 'box', 'made', 'easi', 'activ'], ['not', 'work', 'cound', 'return', 'time', 'wast', 'money', 'bad', 'desit', 'regret'], ['love'], ['work', 'good', 'keep', 'cut', 'keep', 'turn', 'back', 'return', 'number', 'small', 'bit', 'bulki'], ['watch', 'amaz', 'technolog', 'not', 'get', 'better'], ['not', 'work', 'well', 'return'], ['could', 'not', 'use', 'sim', 'not', 'good', 'competitor', 'galaxi', 'gear', 'sound', 'like', 'kid', 'toy', 'start', 'not', 'tech', 'guy', 'toy'], ['not', 'buy'], ['not', 'say', 'whether', 'not', 'good', 'smart', 'watch', 'mine', 'would', 'not', 'turn', 'return'], ['worst', 'smart', 'wacht', 'ever', 'seen'], ['not', 'want', 'sync', 'not', 'fuction'], ['good'], ['work', 'great', 'busi'], ['great', 'custom', 'servic', 'product', 'arriv', 'exact', 'day', 'promis', 'work', 'far', 'not', 'realli', 'time', 'use', 'test', 'sim', 'card', 'far', 'tell', 'work'], ['bad', 'bad', 'contidion'], ['miss', 'sim', 'card', 'not', 'abl', 'find', 'one', 'anywher'], ['excel', 'valu', 'wish', 'camera', 'butoth', 'wish', 'instruct', 'chat', 'english', 'not', 'chines', 'not', 'use', 'en', 'would', 'five', 'mean', 'water', 'resist', 'not', 'even', 'light', 'rain'], ['item', 'terribl'], ['excel', 'watch', 'thank', 'work', 'great', 'phone', 'son', 'love', 'use', 'everyday', 'also', 'use', 'ipod'], ['good'], ['love'], ['replac', 'band', 'wish', 'easier', 'use', 'better', 'instruct'], ['work', 'great', 'easi', 'get', 'prepaid', 'card', 'switch', 'carrier', 'fuss', 'cool', 'watch'], ['excel', 'watch', 'price', 'perfect', 'fit', 'wrist', 'good', 'iphon', 'smooth', 'sync', 'call', 'surpris', 'clear', 'sound', 'qualiti', 'need', 'time', 'check', 'littl', 'time', 'connect', 'samsung', 'galaxi', 'watch', 'much', 'function', 'android', 'os', 'phone', 'need', 'download', 'apk', 'file', 'instal', 'cost', 'time', 'made', 'surpris', 'control', 'samsung', 'galaxi', 'test', 'function', 'watch', 'realli', 'great', 'price', 'star'], ['friend', 'gave', 'gift', 'love', 'go', 'recommend', 'friend', 'around'], ['use', 'would', 'best', 'among', 'item', 'i', 'purchas', 'return', 'refund', 'due', 'touch', 'recommend', 'friend'], ['phone', 'call', 'awesom'], ['best', 'say'], ['bueno'], ['dosent', 'work', 'month'], ['not', 'product', 'advertis', 'not', 'work', 'appl', 'product', 'requir', 'sim', 'work'], ['arriv', 'three', 'day', 'late', 'screen', 'quit', 'three', 'day'], ['hard', 'find', 'app'], ['bought', 'xmas', 'gift', 'hubbi', 'hope', 'like', 'updat', 'xmas'], ['data', 'not', 'work', 'hour', 'talk', 'att', 'phone', 'apn', 'settingsclock', 'reset', 'chang', 'quit', 'not', 'hear', 'even', 'loud', 'headphon', 'notno', 'smart', 'sync', 'bluetooth', 'not', 'pair', 'headphon'], ['good', 'starter', 'smartwatch', 'basic', 'good'], ['great', 'band', 'i', 'day', 'friend', 'fitbit', 'charg', 'could', 'not', 'believ', 'mine', 'work', 'well', 'use', 'dayday', 'band', 'app', 'suggest', 'iphon', 'work', 'great', 'sync', 'automat', 'bluetooth', 'keep', 'accur', 'track', 'test', 'time', 'friend', 'fitbit', 'charg', 'also', 'alert', 'call', 'mms', 'notif', 'definit', 'plus', 'not', 'carri', 'phone', 'time', 'would', 'like', 'order', 'color'], ['hi', 'amazon', 'staff', 'good', 'day', 'thank', 'stuff', 'bought', 'ur', 'ship', 'actual', 'give', 'inform', 'regard', 'quadband', 'voic', 'dial', 'cellphon', 'i', 'goin', 'home', 'philippin', 'want', 'send', 'pictur', 'gift', 'special', 'life', 'thank', 'easi', 'purchas', 'happi', 'day', 'alway'], ['work', 'describ'], ['http'], ['watch', 'gorgeous', 'littl', 'bulki', 'promis', 'not', 'matter', 'would', 'give', 'camera', 'not', 'skeptic', 'like', 'jus', 'buy'], ['not', 'happi', 'product', 'not', 'gear', 'adult', 'wrist', 'clumsey', 'realli', 'not', 'navig', 'around', 'design', 'eve', 'realli', 'use', 'would', 'not', 'money', 'buy', 'real', 'thing'], ['not', 'play', 'angri', 'bird', 'updat', 'facebook', 'status', 'phone', 'let', 'us', 'phone', 'suppos', 'call', 'love', 'phone', 'actual', 'known', 'avatar', 'order', 'amazon', 'victor', 'intern', 'arriv', 'day', 'extrem', 'pleasant', 'supris', 'put', 'prepaid', 'sim', 'card', 'phone', 'work', 'instant', 'anoth', 'pleasant', 'supris', 'everyth', 'hope', 'make', 'call', 'not', 'carri', 'phone', 'pocket', 'littl', 'background', 'bought', 'phone', 'love', 'technolog', 'never', 'got', 'whole', 'carri', 'phone', 'thing', 'especi', 'phone', 'like', 'iphon', 'pretti', 'big', 'think', 'want', 'surf', 'web', 'could', 'home', 'ipad', 'laptop', 'never', 'felt', 'desir', 'pay', 'month', 'internet', 'plan', 'cell', 'phone', 'plan', 'could', 'add', 'year', 'last', 'year', 'use', 'prepaid', 'plan', 'last', 'year', 'paid', 'prepaid', 'plan', 'could', 'keep', 'minut', 'hate', 'carri', 'phone', 'wife', 'would', 'get', 'upset', 'could', 'never', 'reach', 'time', 'wish', 'phone', 'handi', 'make', 'quick', 'call', 'decid', 'surf', 'web', 'laptop', 'see', 'wrist', 'cell', 'phone', 'look', 'felt', 'phone', 'best', 'suit', 'one', 'major', 'reason', 'bought', 'one', 'instead', 'wrist', 'phone', 'button', 'dial', 'not', 'touchscreen', 'not', 'want', 'pull', 'stylus', 'everytim', 'want', 'make', 'call', 'honest', 'also', 'love', 'movi', 'avatar', 'figur', 'jame', 'cameron', 'would', 'not', 'lend', 'movi', 'name', 'easi', 'took', 'day', 'figur', 'navig', 'quick', 'upload', 'rington', 'micro', 'sd', 'card', 'enter', 'phone', 'number', 'touchscreen', 'work', 'prefer', 'use', 'button', 'navig', 'still', 'not', 'tri', 'player', 'plan', 'test', 'bluetooth', 'close', 'final', 'feel', 'phone', 'cool', 'practic', 'feel', 'like', 'i', 'star', 'trek', 'make', 'call', 'see', 'reaction', 'get', 'peopl', 'high', 'schooler', 'grandpar', 'amaz', 'work', 'well', 'also', 'comment', 'much', 'sens', 'phone', 'readili', 'avail', 'rather', 'dig', 'pocket', 'answer', 'go', 'wife', 'call'], ['awesom', 'watch', 'thank'], ['piec', 'not', 'work', 'would', 'not', 'sync', 'say', 'work', 'android', 'phone', 'return', 'soon', 'possibl'], ['famili', 'love'], ['poor', 'qualiti', 'not', 'work', 'function', 'mini', 'sd', 'card', 'insert', 'still', 'use', 'time', 'keep', 'otherwis', 'would', 'rather', 'not', 'buy'], ['love', 'nice', 'work'], ['half', 'hour', 'two', 'thing', 'stop', 'work', 'sleep', 'monitor', 'predomet', 'watch', 'realli', 'need', 'money', 'back', 'pliz'], ['like'], ['great', 'watch', 'work', 'well', 'use', 'emerg', 'backup', 'sim', 'phone', 'everyth', 'describ'], ['tri', 'sever', 'time', 'resolv', 'issu', 'seller', 'watch', 'not', 'work', 'proper', 'button', 'watch', 'not', 'work', 'not', 'access', 'function', 'watch', 'inoper', 'want', 'replac', 'work', 'one', 'accord', 'seller', 'not', 'locat', 'order', 'provid', 'invoic', 'number', 'purchas', 'number', 'not', 'gotten', 'posit', 'feed', 'back', 'guess', 'i', 'plus', 'dollar', 'live', 'learn'], ['nice', 'could', 'not', 'fiqur', 'work', 'sent', 'back'], ['like', 'work', 'well', 'audibl', 'enough'], ['work', 'batteri', 'weak'], ['nice', 'look', 'difficult', 'use', 'use', 'time', 'use', 'old', 'sim', 'card'], ['excelent', 'producto', 'entrega', 'tiempo', 'buen', 'servicio', 'muy', 'bueno', 'precio', 'economico', 'muy', 'buena', 'compania', 'para', 'realizar', 'compra', 'por', 'internet', 'es', 'confiabl'], ['glitchi', 'unimpress', 'spend', 'littl', 'extra', 'get', 'lg', 'g', 'watch', 'amaz', 'compar', 'bluetooth', 'not', 'connect', 'feet', 'constant', 'disconnect', 'realli', 'limit', 'featur', 'trust', 'better', 'option', 'practic', 'price'], ['worst', 'thing', 'ever', 'happen', 'bought', 'watch', 'phone', 'phone', 'not', 'work', 'tri', 'return', 'item', 'stop'], ['good', 'watch', 'nice'], ['not', 'watch', 'long', 'hour', 'far', 'nice', 'touch', 'not', 'figur', 'get', 'notif', 'sms', 'main', 'set', 'bc', 'keep', 'give', 'bt', 'notifi', 'error', 'messag', 'anyon', 'help'], ['great', 'surpris', 'enjoy', 'yo', 'son', 'gave', 'birthday', 'thrill', 'strap', 'power', 'sync', 'iphon', 'without', 'troubl', 'phone', 'interfac', 'work', 'fine', 'sound', 'qualiti', 'quit', 'good', 'learn', 'one', 'use', 'function', 'sms', 'text', 'not', 'work', 'iphon', 'android', 'busi', 'doctor', 'abil', 'see', 'text', 'watch', 'rather', 'take', 'phone', 'pocket', 'would', 'use', 'could', 'not', 'download', 'apk', 'app', 'app', 'store', 'sinc', 'appear', 'use', 'qr', 'code', 'come', 'watch', 'fail', 'work', 'return', 'itif', 'android', 'phone', 'product', 'great', 'money', 'spend', 'much', 'money', 'iphon', 'fulli', 'compat', 'watch', 'would', 'includ', 'meta', 'pebbl', 'steel', 'cours', 'appl', 'watch', 'son', 'save', 'money', 'next', 'year', 'not', 'wait'], ['price', 'say', 'first', 'smart', 'watch', 'purchas', 'like', 'thing', 'dislik', 'not', 'answer', 'phone', 'phone', 'must', 'go', 'watch', 'turn', 'blue', 'tooth', 'answer', 'phone', 'also', 'unabl', 'connect', 'anoth', 'blue', 'tooth', 'devic', 'watch', 'connect', 'blue', 'tooth', 'pedomet', 'work', 'move', 'wrist', 'back', 'forth', 'step', 'day', 'rest', 'featur', 'great', 'perhap', 'upgrad', 'futur', 'oh', 'clarifi', 'answer', 'call', 'watch', 'person', 'end', 'audibl', 'speaker', 'watch', 'privat', 'convers', 'need', 'connect', 'headset', 'answer', 'phone'], ['work', 'standard', 'sim', 'card', 'care', 'insert', 'proper', 'cut', 'edg', 'face', 'ad', 'sd', 'card', 'care', 'wedg', 'back', 'plate', 'thin', 'knife', 'messag', 'retriev', 'button', 'may', 'not', 'work', 'unless', 'proper', 'reset', 'voicemail', 'box', 'dial', 'correct', 'number'], ['not', 'work', 'micro', 'sd', 'port', 'descript'], ['wors', 'thing', 'ever', 'bought', 'life', 'instruct', 'manual', 'not', 'even', 'say', 'insert', 'sim', 'card', 'tri', 'put', 'sim', 'insid', 'not', 'take'], ['like', 'nice', 'one'], ['bluetooth', 'not', 'work'], ['great', 'phone', 'durabl', 'sleek', 'great'], ['quick', 'shipment', 'phone', 'great', 'far'], ['phone', 'not', 'put', 'noth', 'problem', 'ever', 'sinc', 'bought', 'phone', 'internet', 'connect', 'issu', 'app', 'compat', 'issu', 'phone', 'stop', 'work', 'month', 'purchas', 'would', 'like', 'opinion', 'phone', 'save', 'money', 'one', 'use'], ['love'], ['great', 'valu', 'eceryth', 'need', 'well'], ['perfect', 'item', 'son', 'hard', 'phone', 'one', 'proven', 'durabl', 'love'], ['seen', 'sever', 'time', 'final', 'decid', 'purchas', 'young', 'child', 'use', 'hold', 'electron', 'hope', 'would', 'help', 'protect', 'help', 'abl', 'carri', 'around', 'use', 'prop', 'phone', 'ipad', 'kindl', 'electron', 'color', 'bright', 'bold', 'first', 'open', 'foul', 'odor', 'went', 'away', 'air', 'hour', 'thick', 'case', 'item', 'otterbox', 'kindl', 'almost', 'imposs', 'stretch', 'hand', 'around', 'case', 'without', 'case', 'fine', 'general', 'use', 'phone', 'thin', 'case', 'shatter', 'proof', 'glass', 'screen'], ['use', 'restaur', 'son', 'hold', 'phone', 'nice', 'sturdi', 'even', 'tap', 'phone', 'not', 'fall', 'sometim', 'son', 'play', 'hand', 'great', 'mom'], ['phone', 'great', 'far'], ['not', 'worri', 'happi'], ['never', 'buy', 'elephon', 'distributor', 'phone', 'request', 'owner', 'manual', 'went', 'nowher', 'not', 'log', 'data', 'wifi', 'phone', 'not', 'messag', 'reason', 'buyer', 'bewar'], ['use', 'one', 'network', 'not', 'clear', 'amazon', 'descript', 'got', 'sprint', 'network', 'could', 'never', 'get', 'connect', 'gave', 'star', 'phone', 'actual', 'look', 'good', 'would', 'fine', 'eled', 'person'], ['bad', 'charger', 'micro', 'usb', 'case'], ['great', 'phone', 'love', 'batteri', 'life', 'good', 'size', 'iphon', 'plus', 'love', 'camera', 'video', 'record', 'display', 'wish', 'would', 'make', 'accessori', 'figo', 'atrium', 'bought', 'iphon', 'plus', 'case', 'modifi', 'power', 'volum', 'recommend', 'other'], ['phone', 'met', 'continu', 'meet', 'exceed', 'expect', 'easi', 'set', 'faster', 'intuit', 'expect', 'total', 'satisfi', 'point', 'would', 'definit', 'recommend', 'phone'], ['great', 'phone', 'would', 'anyon', 'buy', 'expens', 'one', 'one', 'great'], ['phone', 'describ', 'great', 'valu', 'money', 'extrem', 'happi', 'purchas', 'one', 'word', 'describ', 'awesom'], ['yes', 'batteri', 'not', 'last', 'longer', 'drain', 'fast', 'probabl', 'due', 'multi', 'function', 'sister', 'bought', 'nigeria', 'complain', 'batteri'], ['differ', 'phone', 'samsung', 'galaxi', 'not', 'see', 'buy', 'two', 'fall', 'free', 'case', 'got', 'choic', 'anyon', 'know', 'case', 'fit', 'pleas', 'great', 'phone', 'charg', 'aspect', 'figo', 'address', 'pleas', 'product', 'not', 'keep', 'charg', 'sometim', 'not', 'charg', 'hellp', 'date', 'august', 'recent', 'found', 'phone', 'charg', 'port', 'charger', 'sold', 'phone', 'not', 'use', 'samsung', 'charger', 'found', 'charg', 'differ', 'samsung', 'charger', 'abit', 'higher', 'origin', 'ground', 'better', 'afford', 'great', 'phone'], ['star', 'price', 'work', 'fine', 'look', 'specif', 'also', 'work', 'lte'], ['slow', 'i', 'return', 'hardley', 'anyth', 'costum', 'servic', 'nice'], ['i', 'ever', 'given', 'phone', 'play', 'speed', 'batteri', 'better', 'return', 'camera', 'would', 'not', 'complet', 'transact', 'deposit', 'check', 'bank', 'replac', 'anoth', 'problem', 'may', 'work', 'bank'], ['great', 'price', 'protect', 'shield', 'could', 'better'], ['not', 'work', 'well', 'cricket', 'not', 'receiv', 'pic', 'messag', 'text', 'messag', 'fail', 'time'], ['phone', 'met', 'continu', 'meet', 'exceed', 'expect', 'easi', 'set', 'faster', 'intuit', 'expect', 'total', 'satisfi', 'point', 'would', 'definit', 'recommend', 'phone'], ['nice', 'big', 'work', 'not', 'take', 'great', 'photo', 'take', 'extrem', 'long', 'charg', 'usb', 'cord', 'usb', 'slack'], ['small', 'think', 'refund'], ['crappiest', 'phone', 'ever', 'not', 'wast', 'not', 'hold', 'charg', 'bought', 'junk'], ['bought', 'phone', 'must', 'admit', 'price', 'great', 'easi', 'use', 'decent', 'design', 'good', 'touch', 'screen', 'version', 'definit', 'better', 'spec', 'other', 'cost', 'i', 'happi', 'went', 'one'], ['cheap', 'perform', 'show', 'cheap', 'qualiti', 'not', 'buy', 'anoth', 'one'], ['phone', 'mad'], ['disappoint', 'item', 'froze', 'lot', 'camera', 'suck', 'overal', 'bad', 'buy'], ['hear', 'peopl', 'not', 'hear', 'meso', 'bought', 'product', 'may', 'work', 'good', 'realli', 'happi', 'overh', 'condit', 'absolut', 'not', 'hold', 'space', 'not', 'realli', 'look', 'long', 'could', 'talk', 'phone', 'send', 'text', 'use', 'calcul', 'alarm', 'take', 'pictur', 'not', 'need', 'app', 'recent', 'though', 'month', 'buy', 'call', 'system', 'import', 'thing', 'fail', 'hear', 'peopl', 'phone', 'not', 'hear', 'frustrat', 'tri', 'fix', 'turn', 'take', 'batteri', 'leav', 'night', 'take', 'sim', 'card', 'noth', 'work', 'happi', 'becom', 'disappoint', 'awar', 'might', 'happen'], ['phone', 'felt', 'cheap', 'ok', 'return', 'though', 'voic', 'text', 'would', 'not', 'work', 'carrier', 'consum', 'cellular', 'lot', 'standard', 'function', 'cell', 'phone', 'ever', 'slight', 'differ', 'phone', 'annoy', 'end', 'buy', 'blu', 'advanc', 'price', 'nicer', 'figo'], ['bought', 'phone', 'white', 'amazon', 'month', 'ago', 'start', 'use', 'sim', 'card', 'two', 'slot', 'unlock', 'phone', 'travel', 'buy', 'cheap', 'pay', 'go', 'sim', 'card', 'countri', 'local', 'wherev', 'go', 'fabul', 'phone', 'everyth', 'iphon', 'without', 'huge', 'cost', 'high', 'speed', 'unlimit', 'talk', 'text', 'data', 'go', 'certain', 'point', 'data', 'usag', 'speed', 'slow', 'bit', 'not', 'even', 'notic', 'come', 'navig', 'talk', 'text', 'radio', 'voic', 'search', 'alarm', 'clock', 'anyth', 'may', 'need', 'speak', 'goe', 'need', 'continu', 'buy', 'figo', 'cell', 'phone', 'look', 'new', 'one', 'give', 'mom', 'figo', 'virtu', 'use', 'account', 'figo', 'one', 'product', 'afford', 'date', 'function', 'go', 'carrier', 'save', 'big', 'buck', 'get', 'unlock', 'figo', 'phone', 'give', 'high', 'cost', 'provid', 'i', 'review', 'option', 'dollar', 'dollar', 'figo', 'give', 'alot'], ['honest', 'not', 'yet', 'test', 'oper', 'system', 'bought', 'gift', 'look', 'light', 'smart', 'love', 'especi', 'light', 'wish', 'function', 'jonathan'], ['issu', 'far', 'work', 'flawless'], ['nice', 'phone', 'doubl', 'sim', 'camera', 'video', 'not', 'bad'], ['bought', 'phone', 'specif', 'could', 'play', 'pokémon', 'go', 'phone', 'not', 'run', 'proper', 'not', 'even', 'open', 'main', 'screen', 'plus', 'whole', 'thing', 'keep', 'freez', 'crash', 'not', 'answer', 'phone', 'call', 'receiv', 'mms', 'not', 'buy', 'phone'], ['good', 'item', 'help', 'reduc', 'price'], ['i', 'disappoint', 'product', 'batteri', 'not', 'stay', 'charg', 'get', 'hot', 'quick', 'not', 'safe', 'screen', 'black', 'good', 'buy'], ['product', 'work', 'great', 'easi', 'year', 'old', 'son', 'use', 'excel', 'new', 'condit', 'definit', 'make', 'purchas', 'person'], ['excel'], ['ok', 'use', 'anoth', 'countri'], ['phone', 'joke', 'feel', 'toyish', 'batteri', 'not', 'last', 'longer', 'hour', 'not', 'buy', 'pleas'], ['bad'], ['let', 'us', 'start', 'say', 'dollar', 'could', 'bought', 'whole', 'pack', 'could', 'travel', 'time', 'smack', 'face', 'purchas', 'steam', 'pile', 'phone', 'bare', 'phone', 'mb', 'ram', 'not', 'let', 'anyth', 'phone', 'worst', 'feel', 'back', 'super', 'tini', 'unrespons', 'processor', 'trash', 'phone', 'make', 'realli', 'weird', 'nois', 'even', 'though', 'sound', 'mute', 'worst', 'probabl', 'made', 'less', 'dollar', 'resel', 'live', 'breath', 'garbag', 'not', 'even', 'think', 'buy', 'absolut', 'horribl', 'i', 'tri', 'save', 'could', 'not', 'save', 'run'], ['not', 'easi', 'understand', 'use', 'not', 'like'], ['bought', 'phone', 'white', 'amazon', 'month', 'ago', 'start', 'use', 'sim', 'card', 'two', 'slot', 'unlock', 'phone', 'travel', 'buy', 'cheap', 'pay', 'go', 'sim', 'card', 'countri', 'local', 'wherev', 'go', 'fabul', 'phone', 'everyth', 'iphon', 'without', 'huge', 'cost', 'high', 'speed', 'unlimit', 'talk', 'text', 'data', 'go', 'certain', 'point', 'data', 'usag', 'speed', 'slow', 'bit', 'not', 'even', 'notic', 'come', 'navig', 'talk', 'text', 'radio', 'voic', 'search', 'alarm', 'clock', 'anyth', 'may', 'need', 'speak', 'goe', 'need', 'continu', 'buy', 'figo', 'cell', 'phone', 'look', 'new', 'one', 'give', 'mom', 'figo', 'virtu', 'use', 'account', 'figo', 'one', 'product', 'afford', 'date', 'function', 'go', 'carrier', 'save', 'big', 'buck', 'get', 'unlock', 'figo', 'phone', 'give', 'high', 'cost', 'provid', 'i', 'review', 'option', 'dollar', 'dollar', 'figo', 'give', 'alot'], ['batteri', 'not', 'last', 'long'], ['issu', 'far', 'work', 'flawless'], ['gift', 'brother', 'sister', 'complain', 'far'], ['phone', 'garbag', 'could', 'instal', 'one', 'app', 'memori', 'taken', 'preistal', 'uneccassri', 'program'], ['realli', 'good', 'phone', 'money', 'got', 'kid', 'rough', 'thing', 'far', 'month', 'without', 'issu'], ['poor', 'phone', 'last', 'month', 'softwar', 'keep', 'updat', 'bite', 'bullet', 'spend', 'dollar', 'better', 'phone'], ['sometim', 'phone', 'static'], ['terribl', 'upset', 'pack', 'came', 'everi', 'thing', 'except', 'handset'], ['phone', 'look', 'like', 'pictur', 'arriv', 'time', 'manner', 'howev', 'return', 'not', 'use', 'old', 'memori', 'chip'], ['bad'], ['phone', 'nice', 'spec', 'love', 'camera', 'phone', 'sluggish', 'freez', 'lot'], ['camera', 'not', 'work', 'night'], ['good', 'equip', 'reason', 'price'], ['i', 'disappoint', 'product', 'batteri', 'not', 'stay', 'charg', 'get', 'hot', 'quick', 'not', 'safe', 'screen', 'black', 'good', 'buy'], ['amaz', 'phone'], ['hear', 'peopl', 'not', 'hear', 'meso', 'bought', 'product', 'may', 'work', 'good', 'realli', 'happi', 'overh', 'condit', 'absolut', 'not', 'hold', 'space', 'not', 'realli', 'look', 'long', 'could', 'talk', 'phone', 'send', 'text', 'use', 'calcul', 'alarm', 'take', 'pictur', 'not', 'need', 'app', 'recent', 'though', 'month', 'buy', 'call', 'system', 'import', 'thing', 'fail', 'hear', 'peopl', 'phone', 'not', 'hear', 'frustrat', 'tri', 'fix', 'turn', 'take', 'batteri', 'leav', 'night', 'take', 'sim', 'card', 'noth', 'work', 'happi', 'becom', 'disappoint', 'awar', 'might', 'happen'], ['come', 'absolut', 'space', 'storag', 'compart', 'never', 'allow', 'googl', 'play', 'updat', 'not', 'allow', 'download', 'work', 'home', 'wifi', 'not', 'servic', 'carrier'], ['mother', 'law', 'like', 'big', 'key', 'work', 'well', 'choic', 'ring', 'tone', 'though'], ['phone', 'nice', 'phone', 'work', 'well', 'problem'], ['excel'], ['amaz', 'smartphon', 'versatil', 'love'], ['excel'], ['minor', 'scratch', 'edg', 'thing', 'perfect', 'phone'], ['cool', 'thank'], ['bought', 'amazon', 'samsung', 'phone', 'would', 'not', 'charg', 'charger', 'fine', 'phone', 'would', 'not', 'charg', 'return', 'replac', 'one', 'fine'], ['phone', 'sound', 'chip', 'bad', 'one', 'could', 'hear', 'unless', 'bluetooth', 'headset', 'hand', 'sister', 'work', 'perfect', 'fine'], ['would', 'not', 'buy', 'phone', 'total', 'junk'], ['order', 'coupl', 'week', 'ago', 'galaxi', 'ii', 'decid', 'kick', 'bucket', 'i', 'find', 'incred', 'improv', 'strength', 'ii', 'origin', 'rather', 'go', 'detail', 'phone', 'featur', 'beat', 'dead', 'hors', 'cnet', 'comprehens', 'review', 'read', 'i', 'discuss', 'buy', 'experi', 'purchas', 'phone', 'amazon', 'fulfil', 'vendor', 'call', 'wireless', 'circl', 'receiv', 'within', 'day', 'via', 'prime', 'came', 'deliv', 'standard', 'amazon', 'cardboard', 'box', 'phone', 'typic', 'samsung', 'packag', 'brand', 'new', 'booklet', 'headphon', 'usb', 'cabl', 'charg', 'plug', 'batteri', 'alreadi', 'fulli', 'custom', 'websit', 'store', 'go', 'charg', 'plus', 'ship', 'phone', 'avail', 'within', 'radius', 'live', 'hah', 'onlin', 'research', 'realiz', 'buy', 'unlock', 'phone', 'way', 'go', 'could', 'write', 'essay', 'differ', 'unlock', 'phone', 'googl', 'help', 'sinc', 'custom', 'buy', 'unlock', 'phone', 'meant', 'need', 'take', 'store', 'activ', 'even', 'need', 'got', 'replac', 'sim', 'save', 'money', 'purchas', 'unlock', 'phone', 'contract', 'i', 'buy', 'phone'], ['great', 'phone'], ['phone', 'work', 'week', 'south', 'american', 'countri', 'oper', 'claro', 'carrier', 'updat', 'firmwar', 'verifi', 'phone', 'could', 'compat', 'servic', 'ecuador', 'extra', 'work', 'fine', 'not', 'singl', 'problem', 'sinc'], ['cell', 'seem', 'wine', 'use', 'back', 'cover', 'defect', 'wine', 'equip', 'bugl', 'sound', 'weird', 'not', 'say', 'side'], ['samsung', 'galaxi', 'gsm', 'unlock', 'cellphon', 'blackdo', 'not', 'buy', 'cell', 'phone', 'live', 'outsid', 'unit', 'state', 'not', 'want', 'use', 'network', 'cell', 'phone', 'not', 'complet', 'unlock', 'cell', 'phone', 'upgrad', 'android', 'chip', 'network', 'not', 'updat', 'android', 'smart', 'swich', 'kie', 'local', 'network', 'oper', 'live', 'outsid', 'usa', 'not', 'network', 'serious', 'problem', 'cell', 'phone', 'cellular', 'devic', 'not', 'cheap', 'one', 'prepaid', 'contract', 'not', 'spend', 'money', 'go', 'use', 'servic', 'simpli', 'use', 'prepaid', 'symbol', 'price', 'cellular', 'devic'], ['nice', 'phone', 'not', 'complet', 'unlock', 'advertis', 'featur', 'could', 'not', 'chang', 'therefor', 'mode', 'disabl', 'pictur', 'group', 'text', 'sent', 'back'], ['phone', 'work', 'great', 'problem', 'yet'], ['wife', 'love'], ['phone', 'came', 'flaw', 'restart', 'everi', 'second', 'samsung', 'venezuela', 'took', 'updat', 'softwar', 'failur', 'persist', 'said', 'could', 'not', 'open', 'acquir', 'latin', 'america', 'spent', 'lot', 'money', 'cellular', 'nation', 'owe', 'tax', 'pay', 'doubl', 'chang', 'sinc', 'arriv', 'two', 'week', 'ago', 'case', 'start', 'batteri', 'switch', 'i', 'sad'], ['excel', 'live', 'ontario', 'canada', 'hard', 'get', 'unlock', 'samsung', 'get', 'famili', 'us', 'still', 'cheaper', 'contract', 'unlock', 'one', 'one', 'major', 'carrier', 'despit', 'currenc', 'exchang', 'region', 'lock', 'phone', 'annoy', 'research', 'band', 'support', 'model', 'function', 'telus', 'includ', 'lte', 'network', 'also', 'test', 'bell', 'network', 'not', 'sure', 'work', 'roger', 'probabl', 'work'], ['excel'], ['arriv', 'perfect', 'saw', 'look', 'beauti', 'thank', 'happi'], ['excel', 'servic', 'receiv', 'phone', 'sooner', 'expect', 'box', 'bit', 'scratch', 'phone', 'accessori', 'excel', 'condit', 'phone', 'not', 'damag', 'abl', 'activ', 'issu', 'would', 'purchas', 'need', 'thank'], ['upgrad', 'complet', 'annihil', 'mini', 'serv', 'purpos', 'well', 'year', 'not', 'realli', 'see', 'need', 'get', 'one', 'latest', 'galaxi', 'cell', 'phone', 'got', 'spec', 'good', 'latest', 'phone', 'let', 'us', 'face', 'guy', 'spec', 'phone', 'overkil', 'app', 'thing', 'realli', 'problem', 'bigger', 'size', 'phone', 'hand', 'use', 'smaller', 'phone', 'see', 'set', 'make', 'one', 'hand', 'control', 'bit', 'easier', 'check', 'need', 'realli', 'great', 'phone', 'fast', 'snappi', 'respons'], ['doubt', 'phone', 'referb', 'got', 'look', 'great', 'screen', 'start', 'roll', 'replac', 'screen', 'happen', 'thought', 'motherboard', 'bad', 'complet', 'wast', 'money'], ['far', 'i', 'happi', 'celular', 'spec', 'describ', 'item', 'descript', 'amazon'], ['excel', 'good', 'recommend'], ['expect'], ['perfect'], ['everi', 'thing', 'great', 'except', 'guy', 'sent', 'wrong', 'charger', 'pleas', 'send', 'galaxi', 'charger', 'i', 'return', 'android', 'charger', 'sent', 'back', 'thank', 'advanc'], ['phone', 'defect'], ['phone', 'not', 'unlock', 'would', 'expect', 'total', 'fraudul', 'descript', 'product'], [], ['wonder', 'phone', 'far', 'best', 'phone', 'ever', 'load', 'crap', 'ton', 'featur', 'i', 'still', 'tri', 'learn', 'phone', 'week', 'fast', 'far', 'abl', 'handl', 'everyth', 'i', 'thrown', 'camera', 'fair', 'good', 'great', 'video', 'smooth', 'motion', 'set', 'make', 'video', 'incred', 'clear', 'smooth', 'frame', 'rate', 'far', 'absolut', 'love', 'downsid', 'batteri', 'kind', 'weak', 'phone', 'time', 'get', 'home', 'work', 'light', 'use', 'day', 'asid', 'one', 'thing', 'phone', 'great', 'buy', 'price', 'got'], ['use', 'new', 'phone', 'june', 'far', 'i', 'love', 'june', 'start', 'issu', 'back', 'space', 'arrow', 'restart', 'normal', 'help', 'soim', 'guess', 'softwar', 'issu', 'screend', 'get', 'activ', 'like', 'i', 'touch', 'also'], ['grieta', 'cellphon'], ['love'], ['good', 'data', 'internet', 'not', 'work', 'memori', 'chip', 'not', 'recogn', 'featur', 'need', 'lost', 'i', 'disappoint'], ['review', 'galaxi', 'specif', 'bluetek', 'phone', 'receiv', 'compani', 'new', 'origin', 'packag', 'charger', 'batteri', 'earbud', 'includ', 'phone', 'arriv', 'well', 'pack', 'perfect', 'condit', 'everyth', 'work', 'perfect', 'happi', 'product', 'complaint', 'bloat', 'ware', 'includ', 'phone', 'samsung', 'not', 'vendor', 'phone', 'want', 'would', 'recommend', 'vendor', 'reliabl'], ['excelent'], ['not', 'work', 'right', 'power'], ['thank'], ['far', 'good', 'easi', 'setup', 'await', 'trip', 'thailand', 'updat'], ['good', 'product'], ['far', 'good'], ['excel', 'product', 'valu', 'easi', 'use', 'manag', 'liter', 'plug', 'play', 'would', 'high', 'recommend', 'frequent', 'travel'], ['good', 'product'], ['use', 'itali', 'week', 'trip', 'biggest', 'concern', 'use', 'data', 'travel', 'rent', 'car', 'nav', 'system', 'rent', 'buy', 'phone', 'servic', 'terribl', 'rate', 'travel', 'data', 'came', 'data', 'card', 'paid', 'unit', 'work', 'everywher', 'went', 'data', 'case', 'last', 'entir', 'stay', 'use', 'most', 'specif', 'data', 'use', 'get', 'map', 'run', 'check', 'email', 'need', 'etc', 'orher', 'famili', 'member', 'began', 'get', 'notif', 'phone', 'data', 'overag', 'day', 'trip', 'happi', 'purcha', 'run', 'batter', 'pack', 'notic', 'not', 'use', 'case', 'rubber', 'power', 'button', 'could', 'accident', 'turn', 'unintent', 'could', 'drain', 'batteri', 'not', 'use', 'unit', 'connect', 'local', 'cell', 'tower', 'second', 'not', 'take', 'long', 'turn', 'use', 'great', 'product'], ['okay', 'figur', 'manual', 'configur', 'apn', 'set', 'att', 'run', 'great', 'valu', 'quasi', 'premium', 'smart', 'prone', 'bit', 'thicker', 'blu', 'vivo', 'air', 'color', 'accuraci', 'ole', 'display', 'seem', 'bit', 'better', 'good', 'deal', 'would', 'recommend', 'not', 'afraid', 'tweak', 'apn', 'set', 'stock', 'ui', 'not', 'great', 'easi', 'allevi', 'instal', 'googl', 'launcher', 'tap', 'review', 'phone'], ['phone', 'good', 'not', 'set', 'account', 'entir', 'line', 'involv', 'coupl', 'call', 'custom', 'servic', 'button', 'screen', 'easi', 'see', 'bought', 'better', 'call', 'sound', 'not', 'better', 'cheap', 'phone', 'plan', 'cheap', 'voic', 'mail', 'extra', 'not', 'send', 'even', 'one', 'text', 'messag', 'without', 'ad', 'text', 'packag'], ['alway', 'latest', 'greatest', 'phone', 'need', 'someth', 'simpl', 'year', 'old', 'grandmoth', 'phone', 'look', 'well', 'made', 'studi', 'feel', 'like', 'hold', 'long', 'time', 'display', 'clear', 'larg', 'import', 'simpl', 'minim', 'amount', 'text', 'make', 'navig', 'phone', 'easi', 'button', 'back', 'light', 'extra', 'button', 'yes', 'speaker', 'arrow', 'phone', 'make', 'clear', 'need', 'button', 'push', 'navig', 'menu', 'make', 'call', 'sign', 'servic', 'choic', 'plan', 'featur', 'good', 'varieti', 'offer', 'quit', 'varieti', 'servic', 'gear', 'toward', 'senior', 'pay', 'need', 'want', 'contract', 'add', 'chang', 'call', 'plan', 'penalti', 'need', 'offer', 'discount', 'free', 'minut', 'websit', 'sign', 'automat', 'easi', 'either', 'call', 'chose', 'onlin', 'activ', 'process', 'abl', 'creat', 'contact', 'book', 'aunti', 'grand', 'kid', 'number', 'save', 'hour', 'manual', 'entri', 'still', 'manag', 'contact', 'onlin', 'upload', 'phone', 'remot', 'also', 'chang', 'order', 'show', 'navig', 'contact', 'phone', 'see', 'one', 'use', 'often', 'not', 'choos', 'extra', 'featur', 'skill', 'nurs', 'facil', 'time', 'come', 'home', 'know', 'sever', 'plan', 'add', 'mani', 'featur', 'gear', 'toward', 'senior', 'still', 'live', 'independ', 'one', 'particular', 'like', 'abili', 'setup', 'autom', 'call', 'regular', 'basi', 'phone', 'call', 'not', 'answer', 'design', 'contact', 'receiv', 'notic', 'check', 'servic', 'per', 'grandmoth', 'sever', 'arthriti', 'hand', 'limit', 'finger', 'mobil', 'phone', 'simpl', 'enough', 'use', 'also', 'simpl', 'teach', 'use', 'took', 'less', 'minut', 'understand', 'everyth', 'research', 'phone', 'gear', 'senior', 'bought', 'happi', 'choos', 'jitterbug', 'plus', 'also', 'love', 'shini', 'red'], ['got', 'mom', 'need', 'someth', 'basic', 'seem', 'fine', 'far', 'like', 'abil', 'add', 'number', 'desktop', 'ad', 'sync', 'pone', 'custom', 'servic', 'good', 'far', 'sure', 'list', 'person', 'access', 'account', 'need', 'contact', 'voicemail', 'extra', 'charg', 'month', 'howev', 'minut', 'roll', 'call', 'chang', 'oppos', 'internet', 'also', 'like', 'fact', 'loop', 'lanyard', 'purchas', 'amazon', 'separ', 'amzer', 'detach', 'phone', 'neck', 'lanyard'], ['chose', 'phone', 'year', 'old', 'mother', 'easi', 'use', 'larg', 'easi', 'read', 'screen', 'volum', 'not', 'loud', 'previous', 'verizon', 'phone', 'though'], ['mother', 'law', 'constant', 'get', 'confus', 'old', 'cell', 'phone', 'not', 'know', 'answer', 'make', 'call', 'not', 'ever', 'turn', 'nervous', 'car', 'began', 'problem', 'worri', 'safeti', 'need', 'someth', 'simpl', 'design', 'easi', 'see', 'display', 'love', 'jitterbug', 'phone'], ['tri', 'not', 'like', 'cancel', 'two', 'month', 'get', 'servic', 'take', 'set', 'plan', 'call', 'get', 'differ', 'minut', 'get', 'question', 'chang', 'amt', 'call', 'lower', 'month', 'minut', 'question', 'less', 'minut', 'use', 'busi', 'pleasur', 'told', 'lower', 'told', 'would', 'taken', 'care', 'rude', 'rep', 'chang', 'mind', 'call', 'next', 'day', 'cancel', 'port', 'anoth', 'compani', 'prior', 'cancel', 'cours', 'began', 'use', 'new', 'carrier', 'almost', 'immedi', 'learn', 'great', 'call', 'not', 'cancel', 'servic', 'line', 'still', 'open', 'use', 'would', 'not', 'close', 'heard', 'new', 'servic', 'call', 'new', 'servic', 'got', 'email', 'great', 'call', 'minut', 'use', 'would', 'bill', 'full', 'month', 'servic'], ['bought', 'cousin', 'stroke', 'victim', 'sight', 'problem', 'work', 'well', 'good', 'featur'], ['month', 'larg', 'number', 'letter', 'loud', 'speaker', 'phone', 'camera', 'ok', 'rather', 'slow', 'imag', 'not', 'sharp', 'unless', 'phone', 'held', 'still', 'custom', 'assist', 'excel', 'best', 'littl', 'old', 'ladi', 'old', 'men', 'young', 'ladi', 'young', 'men', 'everyon'], ['expect', 'clock', 'calcul', 'abil', 'enter', 'first', 'letter', 'person', 'name', 'scroll', 'find'], ['dad', 'need', 'phone', 'exact', 'us', 'call', 'kid', 'grandkid', 'without', 'tri', 'figur', 'million', 'option', 'great', 'easili', 'program', 'easi', 'read', 'oper', 'make', 'sure', 'get', 'one', 'elder', 'parent', 'not', 'mind', 'talk', 'sever', 'time', 'day'], ['exact', 'need', 'year', 'old', 'mother', 'larg', 'illumin', 'number', 'not', 'mani', 'featur', 'therefor', 'use', 'key'], ['mother', 'age', 'bracket', 'need', 'cell', 'phone', 'winter', 'stay', 'california', 'purchas', 'particular', 'phone', 'eas', 'mother', 'could', 'use', 'visual', 'impair', 'phone', 'need', 'simpl', 'memor', 'thing', 'came', 'handi', 'stay', 'ca', 'kept', 'phone', 'activ', 'return', 'home'], ['small', 'elder', 'person', 'arthriti', 'manual', 'bit', 'not', 'know', 'call', 'connect', 'item', 'descript', 'not', 'say', 'came', 'plug'], ['bought', 'jitterbug', 'larger', 'size', 'thus', 'larger', 'number', 'button', 'big', 'finger', 'like', 'sound', 'also', 'hear', 'loss', 'phone', 'receiv', 'pictur', 'none', 'never', 'would', 'send', 'pictur', 'hate', 'pay', 'servic', 'not', 'work', 'call', 'sever', 'time', 'complain', 'got', 'runaround', 'time', 'reprogram', 'softwar', 'call', 'readi', 'go', 'month', 'call', 'still', 'not', 'work', 'cancel', 'phone', 'went', 'back', 'old', 'cell'], ['phone', 'good', 'not', 'set', 'account', 'entir', 'line', 'involv', 'coupl', 'call', 'custom', 'servic', 'button', 'screen', 'easi', 'see', 'bought', 'better', 'call', 'sound', 'not', 'better', 'cheap', 'phone', 'plan', 'cheap', 'voic', 'mail', 'extra', 'not', 'send', 'even', 'one', 'text', 'messag', 'without', 'ad', 'text', 'packag'], ['bought', 'present'], ['bought', 'yr', 'old', 'parent', 'request', 'yet', 'use', 'though', 'unabl', 'provid', 'addit', 'info'], ['great', 'could', 'louder', 'volum', 'option'], ['jitterbug', 'phone', 'two', 'work', 'fine', 'not', 'replac', 'simpli', 'addit', 'phone', 'alway', 'great', 'call', 'activ', 'easi', 'price', 'plan', 'terrif', 'jitterbug', 'easi', 'use', 'nice', 'display', 'nice', 'size', 'keyboard', 'love'], ['advertis'], ['bought', 'grandmoth', 'need', 'someth', 'easi', 'use', 'come', 'ad', 'featur', 'emerg', 'respons', 'track', 'amaz', 'thrill', 'easi', 'much', 'peac', 'mind', 'give', 'us', 'custom', 'servic', 'folk', 'great', 'ditto', 'emerg', 'respons', 'center', 'truth', 'like', 'much', 'i', 'toy', 'buy', 'elementari', 'school', 'son', 'want', 'kind', 'emerg', 'access'], ['mom', 'love', 'phone'], ['nice', 'phone', 'money'], ['work', 'great'], ['everyth', 'expect', 'excel', 'product'], ['great', 'elder', 'grandmoth', 'howev', 'difficulti', 'get', 'bill', 'instead', 'insist', 'speak', 'even', 'though', 'activ', 'problem', 'charg', 'credit', 'straighten', 'peac', 'mind', 'know', 'activ', 'year', 'old', 'grandmoth', 'cellphon', 'star', 'emerg', 'situat'], ['disappoint', 'phone', 'phone', 'may', 'okay', 'one', 'mention', 'network', 'use', 'verizon', 'not', 'get', 'verizon', 'servic', 'hous', 'live', 'verizon', 'dead', 'zone', 'also', 'phone', 'not', 'remov', 'sim', 'card', 'everyth', 'phone', 'lost', 'get', 'rid', 'get', 'rid', 'inform', 'import', 'difficult', 'time', 'get', 'phone', 'set', 'use', 'took', 'sever', 'phone', 'call', 'great', 'call', 'peopl', 'not', 'think', 'problem', 'known', 'good', 'price', 'paid', 'kind', 'string', 'attach', 'think', 'twice', 'get', 'involv', 'jitterbug', 'phone', 'make', 'sure', 'get', 'verizon', 'servic'], ['love', 'easi', 'use'], ['wife', 'love', 'gave', 'samsung', 'galaxi', 'got', 'jitterbug', 'easi', 'use', 'high', 'recommend', 'not', 'need', 'sophist', 'refin', 'app', 'phone', 'typic'], ['mother', 'law', 'right', 'slowli', 'climb', 'today', 'technolog', 'give', 'abil', 'not', 'place', 'receiv', 'call', 'also', 'benefit', 'text', 'photo', 'share', 'pictur', 'take', 'rest', 'make', 'smartphon', 'enjoy', 'good', 'product', 'good', 'cell', 'access'], ['purchas', 'not', 'tech', 'savvi', 'not', 'sure', 'whether', 'get', 'smartphon', 'love', 'use', 'lot', 'function', 'enough', 'enjoy', 'phone', 'purpos'], ['phone', 'suppos', 'gear', 'elder', 'fix', 'incom', 'quit', 'expens', 'month', 'plan', 'not', 'adapt', 'server', 'like', 'verizon', 'cricket', 'att', 'quit', 'disappoint', 'phone', 'seem', 'nice', 'realli', 'tri', 'must', 'buy', 'one', 'plan', 'advertis', 'month', 'call', 'minut', 'quit', 'low', 'normal', 'plan', 'consid', 'minut', 'call', 'phone', 'not', 'recommend', 'senior', 'live', 'social', 'secur'], ['lag', 'point', 'work', 'good', 'think', 'dome', 'order', 'phone', 'differ', 'bladder', 'would', 'risk', 'get', 'one'], ['excel', 'product', 'recommend'], ['screen', 'stop', 'work', 'day', 'use'], ['great', 'product', 'consid', 'review', 'militari', 'field', 'test', 'week', 'long', 'train', 'even', 'made', 'whole', 'thing', 'one', 'fulli', 'charg', 'batteri', 'rain', 'sleet', 'great', 'product'], ['phone', 'month', 'alway', 'littl', 'buggi', 'straight', 'box', 'noth', 'day', 'last', 'two', 'week', 'began', 'act', 'strang', 'daili', 'morn', 'alarm', 'would', 'go', 'phone', 'would', 'buzz', 'shut', 'reboot', 'happen', 'three', 'four', 'happen', 'day', 'time', 'would', 'not', 'restart', 'screen', 'would', 'flicker', 'bit', 'bunch', 'kind', 'like', 'phone', 'bought', 'need', 'someth', 'rug', 'i', 'broken', 'last', 'phone', 'know', 'probabl', 'cheap', 'knockoff', 'know', 'not', 'power', 'system', 'know', 'would', 'not', 'run', 'latest', 'app', 'not', 'need', 'someth', 'would', 'not', 'break', 'first', 'time', 'drop', 'like', 'last', 'one', 'never', 'drop', 'still', 'new', 'screen', 'cover', 'useless'], ['month', 'not', 'work', 'anymor'], ['perfect', 'love', 'phone'], ['lot', 'research', 'purchas', 'phone', 'bought', 'two', 'batteri', 'life', 'excel', 'photo', 'decent', 'recept', 'function', 'especi', 'chang', 'menu', 'googl', 'great', 'great', 'valu', 'someon', 'bring', 'phone', 'look', 'nice', 'much', 'lighter', 'phone', 'metal', 'case', 'make', 'look', 'pricier', 'love', 'fingerprint', 'unlock', 'locat', 'make', 'perfect', 'sens', 'bought', 'begin', 'year', 'spent', 'hour', 'read', 'review', 'watch', 'one', 'best', 'rate', 'march', 'price', 'rang', 'not', 'disappoint'], ['realli', 'nice', 'phone', 'look', 'nice', 'work', 'well', 'cheap', 'compar', 'cell', 'phone'], ['got', 'buck', 'black', 'phone', 'price', 'work', 'great', 'costa', 'rica', 'kolbi', 'ice'], ['super', 'good', 'expect', 'excel', 'call', 'qualiti', 'fast', 'web', 'function', 'easi', 'handl', 'fast', 'charg', 'love', 'friend', 'famili', 'definit', 'purchas'], ['love', 'phone', 'wish', 'came', 'blue', 'amazon'], ['phone', 'worth', 'everi', 'penni', 'cost', 'list', 'mani', 'found', 'much', 'less', 'sum', 'great', 'build', 'fast', 'compact', 'android', 'great', 'us', 'support', 'team', 'avail', 'need', 'pay', 'big', 'money', 'samsung', 'htc', 'iphon', 'take', 'look', 'glad'], ['realli', 'good', 'cellphon', 'decent', 'price', 'high', 'qualiti', 'worthwhil', 'buy', 'honor', 'type', 'c', 'usb', 'core', 'cpu', 'ram', 'gb', 'rom', 'sd', 'expand', 'storag', 'support', 'gb', 'suitibl', 'micro', 'phone', 'cardinteri', 'batteri', 'normal', 'two', 'day', 'use', 'per', 'chargecamera', 'realli', 'good', 'w', 'front', 'w', 'backglass', 'surfac', 'side'], ['finger', 'print', 'magnet'], ['super', 'good', 'expect', 'excel', 'call', 'qualiti', 'fast', 'web', 'function', 'easi', 'handl', 'fast', 'charg', 'love', 'friend', 'famili', 'definit', 'purchas'], ['honor', 'beauti', 'phone', 'opinion', 'almost', 'perfect', 'not', 'technic', 'physic', 'con', 'i', 'would', 'like', 'address', 'first', 'let', 'us', 'start', 'design', 'realli', 'like', 'design', 'phone', 'eleg', 'realli', 'snappi', 'love', 'quick', 'everyth', 'even', 'though', 'would', 'prefer', 'amol', 'display', 'display', 'pretti', 'good', 'hold', 'life', 'would', 'last', 'day', 'half', 'regular', 'use', 'mix', 'youtub', 'text', 'game', 'take', 'pictur', 'etc', 'camera', 'take', 'amaz', 'pictur', 'phone', 'feel', 'extrem', 'solid', 'charg', 'charg', 'phone', 'half', 'person', 'not', 'hate', 'wish', 'would', 'stick', 'tradit', 'android', 'experi', 'howev', 'annoy', 'notif', 'not', 'show', 'lock', 'camera', 'video', 'capabl', 'not', 'greatest', 'decent', 'not', 'phone', 'use', 'gorilla', 'glass', 'not', 'wish', 'huawei', 'would', 'put', 'spec', 'sheet', 'websit', 'go', 'ask', 'agent', 'huawei', 'order', 'get', 'wish', 'phone', 'use', 'quick', 'charg', 'not', 'quick', 'charg', 'batteri', 'bank', 'support', 'phone', 'gps', 'gimmicki', 'i', 'use', 'first', 'minut', 'problem', 'goe', 'away', 'phone', 'gb', 'storag', 'even', 'though', 'advertis', 'phone', 'great', 'great', 'deal', 'got', 'black', 'friday', 'free', 'doctor', 'strang', 'bundl', 'case', 'pretti', 'sick', 'would', 'recommend', 'phone', 'anyon', 'look', 'amaz', 'budget', 'phone'], ['honor', 'beauti', 'phone', 'opinion', 'almost', 'perfect', 'not', 'technic', 'physic', 'con', 'i', 'would', 'like', 'address', 'first', 'let', 'us', 'start', 'design', 'realli', 'like', 'design', 'phone', 'eleg', 'realli', 'snappi', 'love', 'quick', 'everyth', 'even', 'though', 'would', 'prefer', 'amol', 'display', 'display', 'pretti', 'good', 'hold', 'life', 'would', 'last', 'day', 'half', 'regular', 'use', 'mix', 'youtub', 'text', 'game', 'take', 'pictur', 'etc', 'camera', 'take', 'amaz', 'pictur', 'phone', 'feel', 'extrem', 'solid', 'charg', 'charg', 'phone', 'half', 'person', 'not', 'hate', 'wish', 'would', 'stick', 'tradit', 'android', 'experi', 'howev', 'annoy', 'notif', 'not', 'show', 'lock', 'camera', 'video', 'capabl', 'not', 'greatest', 'decent', 'not', 'phone', 'use', 'gorilla', 'glass', 'not', 'wish', 'huawei', 'would', 'put', 'spec', 'sheet', 'websit', 'go', 'ask', 'agent', 'huawei', 'order', 'get', 'wish', 'phone', 'use', 'quick', 'charg', 'not', 'quick', 'charg', 'batteri', 'bank', 'support', 'phone', 'gps', 'gimmicki', 'i', 'use', 'first', 'minut', 'problem', 'goe', 'away', 'phone', 'gb', 'storag', 'even', 'though', 'advertis', 'phone', 'great', 'great', 'deal', 'got', 'black', 'friday', 'free', 'doctor', 'strang', 'bundl', 'case', 'pretti', 'sick', 'would', 'recommend', 'phone', 'anyon', 'look', 'amaz', 'budget', 'phone'], ['great', 'phone', 'expect'], ['best', 'smartphon', 'i', 'ever', 'i', 'would', 'use', 'iphon', 'year', 'final', 'got', 'tire', 'phone', 'small', 'screen', 'i', 'gotten', 'tire', 'use', 'io', 'decid', 'switch', 'side', 'world', 'give', 'android', 'chanc', 'id', 'admir', 'huawei', 'honor', 'thanksgiv', 'discount', 'final', 'land', 'order', 'one', 'use', 'day', 'far', 'everyth', 'great', 'emui', 'lot', 'featur', 'io', 'not', 'blow', 'mind', 'bit', 'huawei', 'give', 'high', 'respect', 'amaz', 'flagship', 'well', 'done', 'huawei'], ['great', 'spec', 'repeat', 'crash', 'forc', 'return', 'item', 'hope', 'huwaei', 'resolv', 'futur', 'version'], ['best', 'smartphon'], ['engin', 'thought', 'could', 'handl', 'compani', 'like', 'hp', 'wrong', 'speaker', 'phone', 'went', 'whack', 'problem', 'thought', 'hard', 'reset', 'start', 'phone', 'never', 'connect', 'cell', 'site', 'gone', 'around', 'around', 'hp', 'warranti', 'refus', 'warranti', 'product', 'money', 'wonder', 'wonder', 'compani', 'like', 'palm', 'die', 'bad', 'hand', 'hp', 'not', 'relat', 'hp', 'disast', 'steal', 'laptop', 'not', 'respond', 'polic', 'report', 'stayi', 'far', 'away', 'hp', 'product', 'live', 'lost', 'american', 'consum', 'hp', 'updat', 'hp', 'never', 'chang', 'never', 'chang', 'stole', 'laptop', 'year', 'ago', 'continu', 'phone', 'final', 'got', 'approv', 'send', 'phone', 'month', 'got', 'back', 'hp', 'repair', 'center', 'without', 'back', 'batteri', 'cover', 'call', 'hp', 'said', 'not', 'respons', 'phone', 'still', 'not', 'even', 'work', 'junk', 'hp', 'support', 'stay', 'far', 'away', 'hp', 'everyth', 'ethic', 'backbon'], ['good', 'electron', 'accesori', 'i', 'glad', 'bought', 'hope', 'still', 'futur'], ['great', 'smartphon', 'i', 'follow', 'brand', 'gift', 'devic', 'love', 'use', 'lot', 'thank'], ['love', 'phone', 'expect', 'congratul'], ['great', 'well', 'saw', 'friend', 'htc', 'phone', 'alway', 'told', 'love', 'phone'], ['phone', 'work', 'well', 'well', 'organ', 'real', 'complaint', 'phone', 'hesit', 'give', 'star', 'realli', 'appl', 'product', 'bought', 'move', 'iphon', 'lost', 'lot', 'music', 'photo', 'due', 'appl', 'general', 'incompat', 'system', 'sim', 'card', 'transfer', 'not', 'appear', 'good', 'still', 'lost', 'data', 'abl', 'recov', 'music', 'librari', 'probabl', 'go', 'back', 'appl', 'store', 'get', 'rest', 'stuff', 'transfer'], ['seller', 'fine', 'ship', 'quick', 'good', 'pricehowev', 'phone', 'month', 'screen', 'went', 'black', 'middl', 'phone', 'call', 'never', 'turn', 'back', 'phone', 'still', 'work', 'fine', 'still', 'react', 'touch', 'screen', 'not', 'turn', 'read', 'common', 'problem', 'phone', 'noth', 'seller', 'would', 'not', 'recommend', 'buy', 'simpli', 'one', 'x', 'prior', 'screen', 'go', 'black', 'random', 'stop', 'read', 'sim', 'card', 'way', 'could', 'fix', 'bend', 'sim', 'card', 'tray', 'signific', 'garbag'], ['great', 'phone', 'love', 'look', 'feel', 'bodi', 'case', 'featur', 'step', 'love', 'audio', 'great', 'music', 'enthusiast'], ['excel', 'condit', 'phone', 'better', 'expect', 'would', 'like', 'purchas', 'anoth', 'one', 'excel', 'price', 'also'], ['phone', 'came', 'repair', 'lower', 'left', 'screen', 'not', 'close', 'led', 'light', 'not', 'turn', 'week', 'use', 'batteri', 'not', 'charg', 'could', 'use', 'phone', 'ded', 'total', 'fraud'], ['think', 'everyth', 'fine', 'excel', 'servic', 'fast', 'secur', 'reliabl', 'right', 'would', 'not', 'tip', 'suggest'], ['excel', 'product', 'descript', 'say'], ['excel', 'cell', 'phone'], ['ok'], ['phone', 'year', 'ago', 'realli', 'like', 'mom', 'need', 'phone', 'purchas', 'one', 'howev', 'one', 'got', 'defect', 'heat', 'hot', 'burn', 'hand'], ['work', 'perfect', 'take', 'great', 'pic'], ['excelent'], ['excel', 'product', 'fast', 'happi', 'product'], ['sure', 'first', 'great', 'smart', 'phone', 'rememb', 'work', 'good', 'galaxi', 'iphon', 'pictur', 'nice', 'enough', 'someth', 'sens', 'look', 'good'], ['phone', 'valu', 'phone', 'price', 'quiet', 'featur', 'travel'], ['good', 'phone'], ['phone', 'seem', 'fine', 'first', 'coupl', 'week', 'later', 'screen', 'start', 'go', 'contact', 'seller', 'said', 'would', 'replac', 'phone', 'phone', 'start', 'work', 'fine', 'sent', 'back', 'time', 'decid', 'not', 'late', 'tri', 'send', 'back', 'phone', 'not', 'work', 'screen', 'black'], ['great', 'phone', 'like', 'almost', 'much', 'good', 'phone', 'sount', 'qualithi', 'not', 'top', 'import', 'i', 'alway', 'stream', 'music'], ['excellent'], ['excel', 'iphon'], ['not', 'like'], ['exelent'], ['might', 'good', 'phone', 'first', 'came', 'use', 'latest', 'newest', 'phone', 'not', 'use', 'prepaid', 'phone', 'work'], ['realli', 'enjoy', 'use', 'phone', 'neat', 'camera', 'good', 'perform', 'phone', 'fast', 'not', 'troubl', 'os', 'graphic', 'realli', 'good', 'qualiti', 'sound', 'realli', 'nice', 'also', 'respons', 'realli', 'fast', 'would', 'not', 'recommend', 'buy', 'though', 'lot', 'problem', 'like', 'sometim', 'not', 'detect', 'micro', 'sim', 'card', 'must', 'make', 'sure', 'use', 'micro', 'sim', 'card', 'otherwis', 'not', 'latest', 'problem', 'phone', 'not', 'turn', 'not', 'work', 'anymor', 'send', 'back', 'htc', 'repair', 'i', 'tri', 'mani', 'thing', 'not', 'turn', 'even', 'phone', 'realli', 'nice', 'risk', 'lose', 'money', 'could', 'happen', 'not', 'not', 'sure', 'worth', 'risk', 'would', 'rather', 'buy', 'anoth', 'phone', 'mine', 'month', 'use'], ['excelent', 'producto'], ['phone', 'awesom', 'probabl', 'best', 'world', 'right', 'go', 'buy'], ['not', 'us', 'version', 'htc', 'fals', 'advertis', 'taiwanes', 'version', 'htc', 'bewar'], ['phone', 'came', 'expect', 'realli', 'great', 'phone', 'sound', 'qualiti', 'awesom', 'issu', 'charger', 'came', 'seem', 'foriegn', 'charger', 'not', 'fit', 'wall', 'socket', 'came', 'note', 'say', 'need', 'differ', 'type', 'power', 'plug', 'need', 'technic', 'assist', 'contact', 'technomast', 'via', 'email', 'email', 'found', 'not', 'get', 'contact', 'seller', 'even', 'though', 'not', 'come', 'proper', 'charger', 'still', 'usb', 'connector', 'charg', 'phone', 'give', 'star', 'least', 'get', 'help', 'seller', 'reciev', 'proper', 'charger', 'chang', 'star'], ['great', 'phone', 'thing', 'miss', 'card', 'remov', 'tool'], ['everyth', 'fine', 'not', 'complain'], ['phone', 'work', 'phone', 'not', 'never', 'valid', 'microsoft', 'mail', 'account', 'download', 'app', 'i', 'call', 'htc', 'microsoft', 'support', 'nodobi', 'fix', 'issu'], ['phone', 'dead', 'monthsi', 'contact', 'amazon'], ['peac', 'junk'], ['unlock', 'not', 'noth', 'make', 'call', 'not', 'even', 'go', 'play', 'store'], ['amaz', 'phone', 'everyth', 'ever', 'want', 'work', 'wonder', 'took', 'good', 'care', 'phone', 'nice', 'own', 'use', 'month', 'die', 'nowher', 'indic', 'phone', 'go', 'bad', 'noth', 'work', 'fine', 'knew', 'would', 'not', 'turn', 'sit', 'not', 'anyth', 'not', 'anyth', 'may', 'not', 'know', 'intern', 'phone', 'not', 'take', 'batteri', 'batteri', 'cover', 'feel', 'helpless', 'use', 'phone', 'job', 'not', 'get', 'inform', 'phone', 'basic', 'screw', 'next', 'month', 'thank', 'htc'], ['power', 'button', 'bit', 'wigg', 'good', 'window', 'phone', 'updat', 'cortana', 'phone', 'good', 'buy'], ['excel', 'phone', 'gave', 'son', 'graduat', 'extrem', 'pleas', 'graduat', 'gift', 'thank'], ['excelent'], ['came', 'faster', 'expect', 'work', 'great', 'read', 'instruct'], ['iphon', 'verizon', 'quit', 'frank', 'like', 'window', 'phone', 'featur', 'set', 'better', 'iphon', 'iphon', 'advantag', 'huge', 'quantiti', 'avail', 'softwar', 'howev', 'window', 'phone', 'beat', 'iphon', 'hand', 'voic', 'recognit', 'handl', 'hand', 'free', 'text', 'messag'], ['not', 'wait', 'long', 'time', 'product', 'alreadi', 'malfunct', 'screen', 'stop', 'work', 'realli', 'want', 'money', 'back', 'luckili', 'still', 'talk', 'least'], ['simpl', 'light', 'littl', 'phone', 'great', 'screen', 'quick', 'respond', 'easi', 'learn', 'use', 'like', 'mini', 'window', 'comput', 'better', 'everyth', 'right', 'finger'], ['i', 'love', 'phone', 'i', 'nine', 'month', 'eight', 'day', 'stil', 'complaint', 'realli', 'recommend', 'phone', 'not', 'mind', 'memori', 'not', 'upgrad'], ['good'], ['love', 'experi', 'window', 'use', 'use', 'android', 'devic', 'love', 'screen', 'look', 'aliv', 'chang', 'color', 'tile', 'suit', 'mood', 'took', 'bit', 'get', 'use', 'love', 'experi', 'negat', 'experienc', 'though', 'short', 'batteri', 'life', 'liter', 'charg', 'phone', 'minimum', 'twice', 'day', 'sometim', 'depend', 'much', 'use', 'messag', 'also', 'phone', 'lose', 'network', 'signal', 'time', 'even', 'though', 'network', 'oper', 'phone', 'oper', 'great', 'purchas', 'look', 'anoth', 'experi', 'besid', 'android'], ['never', 'stay', 'charg'], ['perfect'], ['compani', 'great', 'phone', 'blow', 'window', 'oper', 'away', 'went', 'back', 'android', 'give', 'window', 'phone', 'two', 'year', 'tri'], ['good', 'phone'], ['wow', 'best', 'phone', 'ever'], ['phone', 'great', 'perfect', 'condit', 'work', 'absolut', 'perfect', 'howev', 'not', 'unlock', 'like', 'seller', 'claim', 'unlock', 'bought', 'phone', 'claim', 'unlock', 'disappoint'], ['hi', 'htc', 'desir', 'best', 'best', 'except', 'mani', 'softwar', 'issu', 'includ', 'camera', 'pic', 'keep', 'disappear', 'mani', 'user', 'face', 'issu', 'explan', 'htc', 'due', 'open', 'sourc', 'think', 'buy', 'also', 'tension', 'spent', 'get', 'tension'], ['nice', 'phone', 'thing', 'wish', 'front', 'face', 'camera', 'also', 'ok'], ['bought', 'red', 'htc', 'inspir', 'satisfi', 'great', 'phone', 'custom', 'servic', 'awesom', 'would', 'recommend', 'compani', 'time', 'reciev', 'time', 'manner', 'unlock', 'avertis'], ['phone', 'htc', 'inspir', 'arriv', 'dead', 'batteri', 'tablet', 'distributor', 'immedi', 'issu', 'refund', 'cost', 'batteri', 'plus', 'littl', 'extra', 'troubl', 'went', 'troubleshoot', 'issu', 'would', 'recommend', 'phone'], ['video', 'play', 'audio', 'podcast', 'turn', 'phone', 'landscap', 'view', 'back', 'portrait', 'view', 'skip', 'skip', 'mean', 'goe', 'onto', 'next', 'podcast', 'thing', 'listen', 'pandora', 'radio', 'chang', 'next', 'song', 'without', 'hit', 'next', 'advanc', 'button', 'tri', 'shut', 'acceleromet', 'not', 'help', 'convinc', 'one', 'bad', 'batch', 'htc', 'made', 'least', 'impress', 'htc', 'made', 'good', 'phone'], ['son', 'want', 'noth', 'smart', 'phone', 'birthday', 'tri', 'find', 'someth', 'reason', 'price', 'suitabl', 'teenag', 'not', 'give', 'choic', 'pick', 'phone', 'want', 'research', 'settl', 'sprint', 'htc', 'arriv', 'read', 'sever', 'posit', 'review', 'love', 'phone', 'access', 'xbox', 'live', 'account', 'hub', 'contact', 'read', 'lot', 'like', 'facebook'], ['absolut', 'love', 'phone', 'fast', 'never', 'get', 'bog', 'matter', 'mani', 'thing', 'usual', 'clear', 'convers', 'android', 'would', 'load', 'soo', 'slowli', 'phone', 'convers', 'go', 'back', 'month', 'still', 'fast', 'first', 'got', 'phone', 'batteri', 'life', 'normal', 'turn', 'faster', 'phone', 'ever', 'seen', 'take', 'second', 'start', 'great', 'phone'], ['could', 'not', 'get', 'internet', 'could', 'not', 'get', 'realli', 'take', 'issu', 'serious', 'help'], ['phone', 'good', 'solid', 'nice', 'look', 'differ', 'stori', 'though', 'window', 'phone', 'horribl', 'stupid', 'return', 'order', 'android', 'phone', 'next', 'day'], ['beauti'], ['bought', 'devis', 'month', 'ago', 'use', 'item', 'need', 'note', 'product', 'not', 'advertis', 'first', 'devis', 'not', 'upgrad', 'kitkat', 'review', 'htc', 'websit', 'updat', 'avail', 'phone', 'thus', 'state', 'upgrad', 'kitkat', 'lie', 'second', 'devis', 'not', 'support', 'lte', 'live', 'new', 'york', 'citi', 'lte', 'fine', 'area', 'phone', 'never', 'lte', 'work', 'anoth', 'big', 'disappoint', 'bluetooth', 'phone', 'older', 'version', 'not', 'compat', 'newer', 'bluetooth', 'devis', 'jawbon', 'fit', 'band', 'posit', 'note', 'phone', 'look', 'good', 'best', 'part', 'phone', 'sound', 'qualiti', 'processor', 'relat', 'fast', 'slow', 'lag', 'hope', 'upgrad', 'would', 'avail', 'not', 'know', 'bluetooth', 'older', 'version', 'kept', 'devis', 'past', 'return', 'period', 'wait', 'switch', 'phone'], ['i', 'use', 'phone', 'work', 'good'], ['buenicimo'], ['phone', 'not', 'worth', 'buy', 'fals', 'inform', 'product', 'i', 'tri', 'put', 'sim', 'card', 'numer', 'carrier', 'none', 'work', 'unsatisfi', 'would', 'appreci', 'refund', 'new', 'phone', 'actual', 'unlock', 'would', 'give', 'zero', 'could'], ['fast', 'stabl', 'accept', 'camera', 'android', 'interfac', 'not', 'look', 'well', 'not', 'good', 'widget', 'like', 'good', 'status', 'bar', 'top', 'control', 'like', 'samsung', 'phone', 'also', 'not', 'fm', 'radio'], ['decent', 'phone', 'howev', 'not', 'get', 'lollipop'], ['excel'], ['beauti', 'phone', 'tri', 'connect', 'phone', 'compani', 'told', 'report', 'stolen', 'i', 'return', 'phone'], ['good', 'old', 'devic'], ['excel', 'phone', 'took', 'get', 'let', 'tell', 'great', 'purchas', 'easi', 'oper', 'speaker', 'right', 'place', 'full', 'function', 'recommend', 'phone', 'anyon', 'look', 'upgrad'], ['afford', 'not', 'need', 'phone', 'person', 'comput', 'phone', 'work', 'great', 'batteri', 'life', 'good', 'screen', 'size', 'spec', 'adequ', 'basic', 'brows', 'need', 'phone', 'phone', 'great', 'option', 'use', 'prepaid', 'plan', 'not', 'need', 'larg', 'amount', 'data', 'transfer', 'minut', 'per', 'month', 'make', 'afford', 'option', 'smartphon', 'use'], ['batteri', 'drain', 'fast'], ['excel'], ['i', 'phone', 'week', 'far', 'love', 'complaint', 'would', 'batteri', 'life', 'not', 'last', 'long', 'time', 'want', 'text', 'play', 'game', 'scroll', 'facebook', 'whatev', 'lose', 'percentag', 'quick'], ['look', 'like', 'new', 'box', 'charger'], ['good'], ['not', 'unlock', 'phone', 'i', 'upset', 'right'], ['good', 'want'], ['work', 'well'], ['great', 'purchas', 'happi'], ['love', 'phone', 'everyth', 'big', 'screen', 'fast', 'complet'], ['realli', 'nice', 'like', 'phone', 'actual', 'serv', 'purpos', 'bought'], ['month', 'live', 'trinidad', 'work', 'good'], ['say', 'not', 'go', 'wrong', 'price'], ['item', 'describ', 'ship', 'time'], ['receiv', 'smartphon', 'strang', 'box', 'dread', 'condit', 'realli', 'not', 'look', 'like', 'origin', 'packag', 'neither', 'imei', 'id', 'box', 'user', 'manual', 'not', 'match', 'model', 'phone', 'cover', 'page'], ['good'], ['excel', 'phone', 'great', 'sound', 'great', 'display', 'screen', 'much', 'larger', 'expect', 'also', 'great', 'thing', 'might', 'want', 'think', 'buy', 'case', 'slim', 'phone'], ['i', 'venezuela', 'bought', 'phone', 'movistar', 'user', 'say', 'work', 'fine', 'phone', 'call', 'naveg', 'problem', 'look', 'phone', 'within', 'rang', 'hundr', 'great', 'option', 'also', 'phone', 'fast', 'simpl', 'use', 'not', 'let'], ['smooth', 'fast', 'screen', 'qualiti', 'poor', 'well', 'sound', 'relat', 'price', 'tag'], ['best', 'android', 'kitkat', 'lte', 'gb', 'phone', 'avail', 'market', 'new', 'unlock', 'gb', 'good', 'enough', 'regular', 'phone', 'user', 'use', 'person', 'use', 'add', 'memori', 'card', 'plus', 'point'], ['awesom', 'phone'], ['descript', 'phone', 'mislead', 'previous', 'got', 'one', 'star', 'howev', 'awesom', 'work', 'like', 'charm', 'far', 'fast', 'load', 'bright', 'bit', 'blah', 'not', 'crisi', 'expect', 'better', 'pictur', 'qualiti', 'ala', 'got', 'charg', 'everi', 'day', 'even', 'not', 'heavi', 'great', 'valu', 'money'], ['nice', 'phone', 'price', 'phone', 'littl', 'heavi', 'not', 'sleek', 'wht', 'look', 'imag', 'featur', 'good', 'valu'], ['great', 'phone'], ['nice'], ['not', 'unlock', 'phone', 'not', 'work', 'carrier', 'atnt', 'gift', 'phone', 'sister', 'disappoint', 'not', 'work', 'network'], ['work', 'start', 'button', 'not', 'work'], ['phone', 'keep', 'shute', 'return', 'seem', 'like', 'not', 'one', 'return'], ['phone', 'one', 'best', 'lay', 'famili', 'iphon', 'samsung', 'nokia', 'htc', 'unfortun', 'htc', 'brand', 'unrecogn', 'inde', 'make', 'excel', 'phone', 'phone', 'must', 'say', 'follow', 'despit', 'low', 'densiti', 'pixel', 'imag', 'qualiti', 'good', 'sound', 'probabl', 'one', 'better', 'heard', 'softwar', 'fantast', 'blinkfe', 'super', 'practic', 'display', 'everyth', 'want', 'know', 'facebook', 'twitter', 'instagram', 'news', 'sport', 'financ', 'like', 'dynam', 'magazin', 'everyth', 'within', 'reach', 'easi', 'thing', 'heat', 'problem', 'solv', 'upgrad', 'lollipop', 'onki', 'chines', 'option', 'blinkfe', 'noth', 'complic', 'equip', 'china', 'look', 'technic', 'servic', 'chang', 'cid', 'phone', 'anoth', 'region', 'despit', 'asian', 'allow', 'feed', 'news', 'america', 'must', 'put', 'phone', 'complex', 'look', 'internet', 'help'], ['phone', 'avail', 'storag', 'not', 'memori', 'meant', 'transit', 'previous', 'htc', 'desir', 'intern', 'memori', 'tedious', 'app', 'trasnfer', 'automat', 'limit', 'space', 'set', 'also', 'limit', 'vs', 'older', 'htc', 'model', 'call', 'set', 'not', 'queue', 'much', 'bigger', 'expect', 'adjust', 'size', 'phone', 'slow', 'intern', 'storag', 'use', 'need', 'dual', 'sim', 'phone', 'avoid', 'walk', 'around', 'two', 'phone', 'would', 'not', 'buy', 'low', 'memori'], ['love'], ['incred', 'slow', 'phone', 'good', 'make', 'phone', 'call', 'text', 'want', 'not', 'need', 'spend', 'phone', 'phone', 'forget', 'use', 'browser', 'tri', 'access', 'anyth', 'onlin', 'tri', 'load', 'site', 'like', 'bloomberg', 'yahoo', 'site', 'one', 'pictur', 'take', 'forev', 'often', 'case', 'not', 'work', 'fanci', 'case', 'fanci', 'graphic', 'fanci', 'tool', 'end', 'day', 'horribl', 'phone'], ['everyth', 'expect', 'minor', 'hiccup', 'set', 'servic', 'second', 'visit', 'set'], ['far', 'good', 'deal'], ['product', 'receiv', 'quick', 'look', 'great', 'work', 'nano', 'sim', 'nowher', 'descript', 'mention', 'not', 'cut', 'regular', 'size', 'sim', 'appar', 'would', 'disappoint'], ['return', 'devic', 'limit', 'run', 'kit', 'kat', 'os', 'took', 'intern', 'memori', 'could', 'not', 'move', 'app', 'memori', 'card', 'kit', 'kat', 'still', 'want', 'dual', 'sim', 'phone', 'found', 'htc', 'desir', 'beast', 'phone', 'run', 'lollipop', 'great', 'featur', 'great', 'camera', 'get', 'phone', 'instead'], ['excel', 'devic'], ['excel'], ['fast', 'ship', 'good', 'qualiti'], ['good'], ['liki', 'phone'], ['step', 'own', 'galaxi', 'comparison', 'speed', 'screen', 'clariti', 'general', 'perform', 'bit', 'research', 'found', 'model', 'essenti', 'htc', 'plastic', 'bodi', 'get', 'close', 'flagship', 'devic', 'pair', 'basic', 'cricket', 'pay', 'go', 'plan', 'get', 'network', 'also', 'great', 'solut', 'senior', 'adult', 'not', 'spend', 'everi', 'wake', 'minut', 'bent', 'devic', 'even', 'see', 'differ', 'eye', 'wife', 'iphon', 'except', 'snob', 'factor', 'come', 'play', 'extrem', 'satisfi', 'devic', 'would', 'purchas'], ['great', 'cellphon'], ['one', 'best', 'phone', 'use', 'far', 'valu', 'money'], ['legitim', 'not', 'happi', 'qualiti', 'i', 'cover', 'month', 'alreadi', 'chip', 'edg', 'tear', 'not', 'anticip'], ['excel', 'product', 'high', 'desir', 'hd', 'great', 'technolog', 'lot', 'applic', 'excel', 'oper', 'system', 'android', 'work', 'perfect', 'touch', 'screen', 'amaz', 'high', 'resolut', 'definit'], ['slow', 'deliveri', 'product', 'deliv', 'almost', 'one', 'week', 'suppos', 'latest', 'deliveri', 'camera', 'function', 'not', 'work', 'take', 'buck', 'replac', 'camera', 'although', 'product', 'look', 'upset'], ['best', 'handset', 'ever', 'function', 'point', 'view', 'realli', 'solid', 'stabl', 'fast', 'applic', 'ship', 'great', 'special', 'ultra', 'two', 'not', 'good', 'area', 'cover', 'sim', 'card', 'batteri', 'thing', 'delic', 'batteri', 'may', 'drain', 'fast', 'heavi', 'usag', 'bateri', 'problem', 'cover', 'aris', 'chang', 'batteri', 'constant', 'could', 'not', 'find', 'extern', 'charger', 'addit', 'even', 'better', 'iphon'], ['htcwell', 'mark', 'icon', 'neat', 'person', 'special', 'need', 'use', 'excel', 'realli', 'love', 'burn', 'rourk'], ['first', 'sad', 'mobil', 'buy', 'not', 'accord', 'mobil', 'not', 'work', 'pakistan', 'without', 'seller', 'not', 'mention', 'useless', 'must', 'proper', 'complet', 'inform', 'everi', 'product'], ['item', 'came', 'fast', 'usual', 'deliv', 'perfect', 'shape', 'good', 'phone', 'good', 'old', 'ladi', 'hard', 'time', 'get', 'know', 'featur', 'i', 'get', 'thank', 'good', 'adult', 'kid', 'lead'], ['trash'], ['bad', 'phone', 'return'], ['i', 'happi', 'purchas', 'item', 'also', 'best', 'price'], ['phone', 'exact', 'describ', 'came', 'gig', 'micro', 'sd', 'easi', 'set', 'use', 'would', 'recommend', 'anyon', 'need', 'replac', 'backup', 'phone'], ['sold', 'suppos', 'new', 'phone', 'doubt', 'packag', 'tamper', 'accessori', 'like', 'charger', 'not', 'stock', 'also', 'lower', 'part', 'screen', 'not', 'work', 'well', 'everyon', 'complain', 'microphon', 'not', 'work', 'well', 'hard', 'hear', 'say', 'pretti', 'sure', 'refurbish', 'complain', 'seller', 'offer', 'replac', 'free', 'beg', 'not', 'leav', 'bad', 'feedback', 'decid', 'could', 'not', 'without', 'phone', 'week', 'wait', 'anoth', 'one', 'arriv', 'live', 'partial', 'function', 'phone', 'get', 'fed', 'buy', 'new', 'one'], ['phone', 'work', 'camera', 'not', 'work', 'well', 'addit', 'presenc', 'scratch', 'screen'], ['first', 'coupl', 'month', 'phone', 'work', 'great', 'came', 'condit', 'advertis', 'time', 'manner', 'howev', 'use', 'littl', 'month', 'issu', 'charg', 'week', 'get', 'point', 'sit', 'hold', 'charger', 'slot', 'phone', 'not', 'charg', 'not', 'issu', 'previous', 'phone', 'model'], ['not', 'clear', 'ad', 'not'], ['phone', 'less', 'month', 'screen', 'stop', 'work', 'certain', 'place', 'know', 'speak', 'text', 'messag', 'not', 'make', 'phone', 'call'], ['excel', 'not', 'unlock'], ['purchas', 'phone', 'use', 'page', 'plus', 'work', 'like', 'dream', 'issu', 'use', 'batteri', 'still', 'good', 'worri', 'would', 'buy'], ['trash'], ['good', 'phonetak', 'great', 'pictur', 'easi', 'usehad', 'download', 'differ', 'rington', 'app', 'keep', 'alert', 'text', 'messag'], ['not', 'say', 'much', 'love', 'phone', 'fast', 'mini', 'sd', 'card', 'big', 'capac', 'app', 'great', 'seller', 'great', 'price', 'debat', 'motorola', 'want', 'phone', 'droid', 'ok', 'phone', 'way', 'better', 'camera', 'much', 'better', 'process', 'speed'], ['phone', 'horribl', 'moment', 'receiv', 'grant', 'not', 'brand', 'new', 'could', 'hard', 'make', 'call', 'cut', 'never', 'knew', 'would', 'happen', 'final', 'die', 'i', 'process', 'get', 'refund'], ['bought', 'phone', 'week', 'mess', 'i', 'not', 'happi'], ['great', 'product', 'need', 'replac', 'old', 'one', 'one', 'met', 'need', 'even', 'better', 'condit', 'expect', 'receiv', 'earlier', 'expect'], ['not', 'newest', 'phone', 'bought', 'phone', 'second', 'line', 'not', 'mani', 'complaint', 'hard', 'compar', 'phone', 'main', 'line', 'iphon', 'definit', 'advanc', 'phone', 'work', 'well', 'miss', 'abil', 'android'], ['sinc', 'still', 'contract', 'poor', 'replac', 'phone', 'gave', 'daughter', 'fell', 'water', 'research', 'use', 'phone', 'hope', 'one', 'would', 'hold', 'next', 'fall', 'upgrad', 'concern', 'would', 'slower', 'batteri', 'would', 'poor', 'must', 'say', 'phone', 'e', 'wonder', 'happi', 'given', 'away', 'newer', 'samsung', 'concern', 'unfound', 'batteri', 'fulli', 'last', 'day', 'half', 'normal', 'use', 'not', 'live', 'though', 'use', 'fill', 'gap', 'not', 'home', 'use', 'tablet', 'nexus', 'tablet', 'fast', 'experienc', 'smart', 'phone', 'sensor', 'screen', 'make', 'touch', 'navig', 'quick', 'pleasant', 'overjoy', 'purchas', 'profession', 'servic', 'seller'], ['receiv', 'htc', 'droid', 'incred', 'day', 'excit', 'get', 'set', 'avail', 'hrs', 'phone', 'verizon', 'told', 'not', 'clean', 'phone', 'could', 'not', 'use', 'not', 'happi', 'sent', 'back', 'get', 'refund', 'account', 'i', 'still', 'stuck', 'stupid', 'blackberri', 'bold'], ['love', 'old', 'phone', 'reluct', 'get', 'new', 'one', 'carrier', 'want', 'keep', 'low', 'month', 'contract', 'amount', 'decid', 'buy', 'outright', 'best', 'price', 'given', 'decid', 'order', 'though', 'one', 'arriv', 'batteri', 'unabl', 'take', 'charg', 'soon', 'contact', 'seller', 'item', 'prompt', 'replac', 'cost', 'seller', 'check', 'see', 'happi', 'replac', 'meant', 'lot', 'thing', 'happen', 'product', 'defect', 'matter', 'buy', 'quit', 'impress', 'eas', 'seller', 'correct', 'problem', 'high', 'recommend', 'definit', 'use', 'seller'], ['purchas', 'htc', 'droid', 'sold', 'equip', 'blowout', 'inc', 'month', 'half', 'later', 'phone', 'stop', 'work', 'want', 'pay', 'ship', 'plus', 'pay', 'fix', 'paid', 'i', 'without', 'money', 'phone', 'disappoint'], ['purchas', 'one', 'favorit', 'work', 'great', 'one', 'purchas', 'not', 'work', 'good', 'month', 'would', 'not', 'charg', 'could', 'get', 'charg', 'would', 'freez', 'not', 'want', 'make', 'outgo', 'call', 'half', 'time'], ['never', 'buy', 'phone', 'bought', 'gift', 'sister', 'not', 'came', 'origin', 'box', 'charger', 'given', 'het', 'start', 'problem', 'use', 'freze', 'alot', 'turn', 'use', 'chatg', 'use', 'charg', 'want', 'sudden', 'charg', 'not', 'work', 'repair', 'cost', 'stupid', 'wast', 'money'], ['ok'], ['good'], ['previous', 'left', 'feedback', 'phone', 'icellphon', 'phone', 'work', 'fine', 'batteri', 'would', 'not', 'work', 'incred', 'beat', 'order', 'replac', 'batteri', 'yet', 'even', 'abl', 'use', 'phone', 'seller', 'name', 'mile', 'email', 'ask', 'fix', 'problem', 'great', 'howev', 'not', 'abl', 'repli', 'two', 'day', 'mile', 'icellphon', 'took', 'person', 'number', 'text', 'messag', 'fix', 'problem', 'remov', 'negat', 'feedback', 'may', 'think', 'tri', 'go', 'beyond', 'help', 'took', 'ridicul', 'attempt', 'remov', 'negat', 'feedback', 'not', 'appreci', 'number', 'use', 'text', 'messag', 'especi', 'end', 'month', 'not', 'jump', 'hoop', 'get', 'phone', 'work', 'also', 'pay', 'overag', 'fee', 'cell', 'compani', 'text', 'messag', 'receiv', 'ridicul'], ['love'], ['keep', 'shut', 'random', 'friend', 'mine', 'said', 'favorit', 'phone', 'thing', 'one', 'time', 'not', 'turn', 'anymor', 'not', 'buy', 'pay', 'littl', 'better', 'phone'], ['ok', 'phone'], ['yes', 'i', 'happi', 'new', 'phone', 'price', 'great', 'verizon', 'gave', 'unlimit', 'plan', 'within', 'budget'], ['bought', 'replac', 'stolen', 'not', 'happier', 'came', 'quick', 'well', 'worth', 'money', 'spent'], ['terribl', 'seller', 'not', 'mention', 'speaker', 'aw', 'like', 'drop', 'water', 'hate'], ['reciev', 'phone', 'work', 'one', 'day', 'charg', 'phone', 'think', 'would', 'send', 'back'], ['return', 'slow', 'memori'], ['phone', 'beez', 'neez', 'love', 'almost', 'look', 'new', 'price', 'good'], ['return', 'defect'], ['not', 'go', 'pay', 'cell', 'phone', 'year', 'old', 'phone', 'awesom', 'not', 'complain', 'teenag'], ['alright', 'perfect', 'phone', 'daughter'], ['great', 'phone', 'great', 'price', 'thing', 'like', 'not', 'problem', 'thus', 'far'], ['receiv', 'product', 'month', 'ago', 'man', 'hate', 'terribl', 'batteri', 'life', 'play', 'music', 'charg', 'phone', 'time', 'get', 'static', 'nois', 'way', 'bought', 'product', 'say', 'condit', 'brand', 'new', 'turn', 'someon', 'els', 'use', 'phone', 'never', 'buy', 'product', 'ever', 'everyth', 'phone', 'bull'], ['blackberri', 'phone', 'amaz', 'come', 'easi', 'use', 'home', 'better', 'connect', 'outlook', 'express', 'email', 'without', 'blackberri', 'enterpris', 'serviceit', 'great', 'piec', 'sinc', 'wife', 'not', 'feel', 'like', 'shuck', 'new', 'one', 'without', 'contract', 'opt', 'refurbish', 'one', 'random', 'reload', 'home', 'screen', 'exit', 'applic', 'minor', 'yet', 'annoy', 'littl', 'bug', 'i', 'not', 'sure', 'someth', 'live', 'desktop', 'use', 'otherwis', 'great', 'random', 'serious', 'camera', 'problem', 'either', 'go', 'black', 'screen', 'screen', 'rainbow', 'color', 'camera', 'select', 'remov', 'batteri', 'reinsert', 'usual', 'fix', 'madden', 'pri', 'trident', 'case', 'bought', 'protect', 'realli', 'like', 'issu'], ['phone', 'not', 'stay', 'charg', 'cut', 'time', 'would', 'not', 'buy', 'thus', 'batteri', 'run', 'within', 'one', 'hour', 'accessori', 'claim', 'come', 'not', 'come'], ['realli', 'like', 'phone', 'read', 'order', 'play', 'around', 'friend', 'mine', 'phone', 'found', 'big', 'complic', 'use', 'howev', 'custom', 'servic', 'excel', 'never', 'given', 'grief', 'return', 'thank'], ['issu', 'work', 'good', 'enough', 'i', 'abl', 'receiv', 'new', 'phone'], ['someth', 'wrong', 'phone', 'first', 'would', 'not', 'charg', 'phone', 'charger', 'batteri', 'level', 'still', 'show', 'exclam', 'point'], ['part', 'say', 'happi', 'abl', 'get', 'phone', 'afford', 'price', 'i', 'alway', 'nervous', 'buy', 'stuff', 'like', 'electron', 'internet', 'phone', 'ship', 'fair', 'quick', 'great', 'shape', 'problem', 'phone', 'get', 'stuck', 'not', 'say', 'anyth', 'major', 'i', 'happi', 'phone'], ['keep', 'ask', 'review', 'order', 'keep', 'put', 'huge', 'amount', 'money', 'account', 'need'], ['great', 'contract', 'phone', 'put', 'ting', 'wireless', 'prepaid', 'servic', 'start', 'money', 'today', 'look', 'high', 'qualiti'], ['complaint', 'perfect', 'grandson', 'love'], ['phone', 'not', 'hold', 'charg', 'app', 'limit', 'camera', 'subpar', 'not', 'allow', 'proper', 'mail', 'pictur', 'phone', 'use', 'would', 'not', 'recommend', 'anyon'], ['order', 'phone', 'cheap', 'replac', 'lost', 'phone', 'phone', 'came', 'time', 'great', 'condit', 'activ', 'went', 'smooth', 'would', 'recommend', 'product', 'anyon', 'look', 'good', 'cheap', 'replac'], ['item', 'self', 'fine', 'not', 'receiv', 'item', 'list', 'includ', 'purchas', 'witch', 'upset'], ['nice', 'phone', 'fast', 'deliveri', 'got', 'wonder', 'price', 'internet', 'app', 'realli', 'fast', 'love', 'use', 'phone', 'use', 'comput', 'home'], ['true', 'find', 'son', 'truli', 'happi', 'gift'], ['phone', 'suppos', 'new', 'origin', 'box', 'refurbish', 'phone', 'not', 'work', 'box', 'took', 'sprint', 'retail', 'said', 'use', 'feel', 'bait', 'switch', 'amazon', 'not', 'repli', 'email', 'get', 'settl', 'get', 'anoth', 'refurbish', 'phone', 'sprint', 'phone', 'act', 'never', 'recommend', 'anyon', 'box', 'phone', 'pictur', 'look', 'noth', 'like', 'box', 'receiv', 'book', 'finger', 'threw', 'read', 'terribl', 'experinc', 'seller', 'an', 'amazon'], ['phone', 'not', 'charg', 'receiv', 'damag', 'area', 'plug', 'phone', 'husband', 'hate', 'return', 'thing', 'meant', 'replac', 'old', 'phone', 'crack', 'display', 'place', 'batteri', 'phone', 'charg', 'replac', 'htc', 'product', 'would', 'not', 'hold', 'charger', 'tri', 'mani', 'differ', 'charger', 'fit', 'model', 'disappoint', 'seller'], ['speaker', 'not', 'work', 'hard', 'hear', 'peopl', 'phone', 'call', 'peopl', 'could', 'not', 'hear'], ['product', 'not', 'good', 'condit', 'screen', 'scratch', 'hard', 'press', 'letter', 'keyboard', 'never', 'buy', 'seller'], ['receiv', 'item', 'schedul', 'time', 'frame', 'wrong', 'batteri', 'sent', 'still', 'work', 'resolut', 'concern', 'batteri', 'item', 'good', 'work', 'condit', 'point'], ['dad', 'palm', 'pre', 'need', 'upgrad', 'not', 'upgrad', 'avail', 'sprint', 'yet', 'bought', 'outright', 'great'], ['look', 'replac', 'htc', 'shift', 'way', 'could', 'find', 'sligh', 'expens', 'turn', 'claim', 'replac', 'htc', 'prefer', 'evo', 'shift', 'lighter', 'littl', 'smaller', 'better', 'function', 'compar', 'happi', 'amazon', 'warehous', 'deal', 'section', 'purchas'], ['need', 'phone', 'sinc', 'mine', 'crap', 'bought', 'one', 'link', 'account', 'sprint', 'easili'], ['love', 'phone', 'unfortun', 'drop', 'water', 'accid', 'phone', 'could', 'not', 'find', 'anoth', 'one', 'time', 'switch', 'anoth', 'evo', 'product', 'bt', 'miss', 'evo', 'shift'], ['keep', 'money', 'bad', 'choic', 'phone', 'not', 'oper', 'near', 'well', 'android', 'phone', 'mom', 'not', 'even', 'use', 'half', 'time', 'freez', 'much', 'game', 'app', 'download', 'sudden', 'disappear', 'phone', 'updat', 'want', 'call', 'definit', 'want', 'need', 'refund', 'total', 'ripoff'], ['found', 'phone', 'previous', 'prepaid', 'phone', 'could', 'not', 'use', 'sprint', 'account', 'disappoint'], ['phone', 'got', 'screen', 'went', 'week', 'lot', 'problem', 'pay', 'sent', 'anoth', 'one', 'still', 'not', 'work', 'right'], ['happi', 'purchas', 'although', 'charger', 'came', 'not', 'work', 'fine', 'sinc', 'old', 'phone', 'charger'], ['not', 'realli', 'hold', 'much', 'stuff', 'kind', 'slow', 'like', 'app', 'not', 'recomend', 'phone'], ['phone', 'worst', 'thing', 'bought', 'onlin', 'never', 'use', 'amazon', 'phone', 'not', 'even', 'work', 'screen', 'alway', 'black', 'not', 'use', 'phone', 'charger', 'got', 'phone', 'not', 'work', 'either', 'sellerc', 'need', 'not', 'allow', 'sell', 'thing', 'not', 'function', 'proper'], ['phone', 'said', 'function', 'not', 'run', 'wifi', 'work', 'worst', 'purchas', 'amazon'], ['got', 'phone', 'look', 'work', 'fine', 'three', 'month', 'broke', 'got', 'black', 'screen', 'nowher', 'whenev', 'shift', 'keyboard', 'would', 'not', 'recommend', 'phone'], ['phone', 'month', 'old', 'alreadi', 'broken', 'not', 'buy', 'one', 'could', 'give', 'less', 'one', 'star', 'would'], ['phone', 'broke', 'within', 'week', 'receiv', 'not', 'good', 'condit', 'screen', 'loos', 'scratch', 'dent', 'phone', 'would', 'not', 'recommend'], ['phone', 'good', 'condit', 'howev', 'huge', 'problem', 'charg', 'end', 'spend', 'money', 'extra', 'batteri', 'extern', 'charger', 'make', 'sure', 'phone', 'stay', 'charg', 'charg', 'port', 'not', 'work', 'wish', 'could', 'get', 'anoth', 'one'], ['phone', 'nice', 'look', 'bit', 'heavi', 'like', 'keyboard', 'nice', 'display'], ['embrass', 'experi', 'bought', 'phone', 'gift', 'dad', 'tri', 'turn', 'not', 'turn', 'check', 'found', 'batteri', 'aw', 'would', 'never', 'ever', 'tri', 'buy', 'phone', 'amazon', 'ridicul', 'unhappi', 'disappoint'], ['phone', 'look', 'like', 'smartphon', 'not', 'work', 'like', 'could', 'not', 'use', 'even', 'paperweight'], ['troubl', 'phone', 'realli', 'hate', 'keep', 'reboot', 'get', 'heat', 'talk', 'min', 'batteri', 'life', 'not', 'good'], ['nice', 'phone'], ['would', 'not', 'recommend', 'product', 'anyon', 'would', 'not', 'stay', 'charg', 'cheap', 'phone'], ['knew', 'phone', 'would', 'not', 'dare', 'purchas', 'read', 'review', 'gave', 'benefit', 'doubt', 'previous', 'htc', 'use', 'one', 'year', 'realli', 'nice', 'phone', 'not', 'not', 'run', 'android', 'also', 'frequent', 'shut', 'restart', 'sometim', 'even', 'without', 'anyth', 'probabl', 'physic', 'attract', 'function', 'useless', 'phone', 'ever', 'manufactur', 'got', 'three', 'stuck', 'three', 'useless', 'gadget', 'bet', 'phone', 'recycl', 'soon', 'freebi', 'courtesi', 'smart', 'hoodwink', 'hk', 'not', 'advis', 'anyon', 'purchas', 'phone', 'wonder', 'compani', 'sell', 'fulfil', 'client'], ['like', 'phone', 'perfect', 'condit', 'problem', 'tmobil', 'get', 'set', 'servic', 'everyth', 'would', 'work', 'correct', 'email', 'seller', 'respond', 'quick', 'tell', 'need', 'get', 'work', 'right', 'happi', 'phone', 'servic'], ['problem', 'far', 'phone', 'realli', 'enjoy', 'phone', 'hope', 'order', 'thank'], ['came', 'broken'], ['far', 'good', 'phone'], ['work', 'great', 'great', 'phone'], ['far', 'everyth', 'work'], ['devic', 'actual', 'come', 'android', 'gingerbread', 'rather', 'froyo', 'nice', 'surpris', 'phone', 'load', 'app', 'quick', 'virtual', 'lag', 'inch', 'screen', 'quit', 'nice', 'look', 'respons', 'touch', 'howev', 'one', 'complaint', 'phone', 'would', 'extern', 'speaker', 'reason', 'not', 'loud', 'enough', 'maximum', 'sound', 'seem', 'come', 'rear', 'speaker', 'front', 'annoy', 'tri', 'watch', 'youtub', 'video', 'exampl', 'anoth', 'downsid', 'speaker', 'issu', 'may', 'not', 'hear', 'phone', 'ring', 'make', 'notif', 'sound', 'bed', 'surfac', 'back', 'speaker', 'could', 'muffl', 'guess', 'could', 'solv', 'put', 'phone', 'face', 'howev', 'phone', 'call', 'excel', 'issu', 'extern', 'would', 'also', 'recommend', 'use', 'handcent', 'sms', 'app', 'text', 'messag', 'rather', 'stock', 'text', 'messag', 'app', 'come', 'phone', 'stock', 'one', 'propens', 'remov', 'name', 'peopl', 'text', 'would', 'see', 'phone', 'number', 'might', 'lose', 'track', 'actual', 'text', 'pretti', 'annoy', 'handcent', 'not', 'plus', 'look', 'lot', 'better', 'reminisc', 'iphon', 'text', 'messag', 'format', 'download', 'free', 'android', 'market', 'one', 'note', 'video', 'camera', 'i', 'seen', 'sever', 'video', 'record', 'test', 'phone', 'youtub', 'sound', 'qualiti', 'absolut', 'crap', 'assur', 'test', 'video', 'record', 'mine', 'sound', 'qualiti', 'actual', 'good', 'normal', 'overal', 'i', 'enjoy', 'phone', 'lot', 'definit', 'not', 'small', 'devic', 'hold', 'might', 'seem', 'bit', 'heavi', 'first', 'get', 'use', 'thing', 'realli', 'devic', 'despit', 'complaint', 'speaker', 'give', 'star', 'though', 'i', 'would', 'give', 'half', 'allow', 'realli', 'not', 'understand', 'phone', 'could', 'not', 'better', 'extern', 'speaker'], ['pleas', 'order', 'htc', 'phone', 'came', 'super', 'fast', 'day', 'use', 'notic', 'batteri', 'not', 'charg', 'way', 'would', 'charg', 'overnight', 'contact', 'recel', 'super', 'friend', 'help', 'offer', 'partial', 'refund', 'could', 'get', 'new', 'charger', 'super', 'pleas', 'fast', 'deliveri', 'prompt', 'custom', 'servic', 'high', 'recommend', 'seller', 'know'], ['order', 'phone', 'februari', 'receiv', 'phone', 'not', 'workingi', 'not', 'time', 'right', 'review', 'busi', 'travellingi', 'never', 'time', 'contact', 'seller', 'instead', 'purchas', 'one', 'store', 'wonder', 'could', 'get', 'refund', 'anoth', 'phone'], ['love', 'new', 'phone', 'still', 'learn', 'set', 'conveni', 'i', 'old', 'slow'], ['bought', 'new', 'got', 'use', 'one', 'return', 'refund'], ['read', 'review', 'phone', 'review', 'true', 'phone', 'turn', 'batteri', 'life', 'good', 'not', 'best', 'live', 'small', 'charger', 'carri', 'purs', 'worri', 'love', 'big', 'screen', 'search', 'search', 'phone', 'not', 'requir', 'contract', 'reall', 'problem', 'find', 'sim', 'card', 'would', 'allow', 'use', 'straight', 'talk', 'travel', 'walmart', 'websit', 'not', 'onlin', 'end', 'day', 'impress', 'phone'], ['phone', 'best', 'despit', 'time', 'went', 'sale', 'current', 'hardwar', 'environ', 'scratch', 'confid', 'reassembl', 'seem', 'fresh', 'factori', 'good', 'deliv', 'promis', 'satisfi', 'custom'], ['deceiv', 'not', 'origin', 'htc', 'display', 'bad', 'qualiti', 'imag', 'poor', 'amazon', 'care', 'situat'], ['describ', 'came', 'time', 'love', 'son', 'bought', 'htc', 'think', 'call', 'mine', 'would', 'buy'], ['phone', 'almost', 'great', 'screen', 'larg', 'enough', 'show', 'movi', 'great', 'definit', 'camera', 'video', 'camera', 'great', 'program', 'applic', 'offer', 'amaz', 'wish', 'memori', 'intern', 'construct', 'great', 'solid', 'built', 'not', 'mind', 'slight', 'extra', 'weight', 'belt', 'not', 'feel', 'start', 'weigh', 'hold', 'not', 'bother', 'much', 'real', 'complaint', 'playback', 'audio', 'not', 'great', 'would', 'need', 'play', 'set', 'get', 'want', 'headphon', 'program', 'respons', 'good', 'not', 'wait', 'forev', 'applic', 'load', 'regard', 'blow', 'mani', 'phone', 'bb', 'water', 'phone', 'signific', 'cheaper', 'not', 'feel', 'like', 'miss', 'appl', 'phone', 'yeah', 'refus', 'call', 'real', 'name'], ['great', 'phone', 'not', 'big', 'not', 'small', 'turn', 'prompt', 'good', 'qualiti', 'camera', 'graphic', 'phone', 'lot', 'featur', 'option', 'want', 'unlock', 'phone', 'use', 'consum', 'cellular', 'fit', 'bill', 'initi', 'batteri', 'seem', 'need', 'recharg', 'frequent', 'charg', 'rapid', 'think', 'app', 'killer', 'download', 'signific', 'reduc', 'littl', 'issu', 'cellphon', 'hate', 'husband', 'plan', 'purchas', 'phone'], ['got', 'nephew', 'big', 'high', 'qualiti', 'screen', 'feel', 'work', 'nephew', 'love', 'complaint'], ['phone', 'littl', 'month', 'live', 'expect', 'use', 'simpl', 'mobil', 'network', 'work', 'fine', 'thing', 'recept', 'not', 'good', 'hous', 'previous', 'phone'], ['like', 'phone', 'mani', 'wonder', 'option', 'problem', 'not', 'updat', 'mac', 'bewar', 'found', 'later', 'way', 'htc', 'android', 'phone'], ['phone', 'great', 'usual', 'htc', 'phone', 'not', 'truli', 'unlock', 'advertis', 'work', 'fulli', 'provid', 'otherwis', 'not', 'use', 'app', 'function', 'exampl', 'not', 'access', 'access', 'edg', 'look', 'unlock', 'phone', 'buy', 'someon', 'els'], ['love', 'phone', 'exact', 'seller', 'said', 'would'], ['start', 'middl', 'call', 'slow', 'lose', 'signal', 'not', 'actual', 'unlock', 'not', 'set', 'data', 'plan', 'lock', 'apn', 'set', 'not', 'buy', 'compani'], ['phone', 'almost', 'great', 'screen', 'larg', 'enough', 'show', 'movi', 'great', 'definit', 'camera', 'video', 'camera', 'great', 'program', 'applic', 'offer', 'amaz', 'wish', 'memori', 'intern', 'construct', 'great', 'solid', 'built', 'not', 'mind', 'slight', 'extra', 'weight', 'belt', 'not', 'feel', 'start', 'weigh', 'hold', 'not', 'bother', 'much', 'real', 'complaint', 'playback', 'audio', 'not', 'great', 'would', 'need', 'play', 'set', 'get', 'want', 'headphon', 'program', 'respons', 'good', 'not', 'wait', 'forev', 'applic', 'load', 'regard', 'blow', 'mani', 'phone', 'bb', 'water', 'phone', 'signific', 'cheaper', 'not', 'feel', 'like', 'miss', 'appl', 'phone', 'yeah', 'refus', 'call', 'real', 'name'], ['love', 'phone', 'fast', 'small', 'sd', 'card', 'plenti', 'phone', 'storag', 'space', 'enough', 'internet', 'browser', 'seem', 'littl', 'slow', 'realli', 'noth', 'terribl', 'i', 'realli', 'enjoy', 'although', 'even', 'brand', 'new', 'littl', 'one', 'day', 'batteri', 'life', 'charg', 'let', 'die', 'multipl', 'time', 'actual', 'made', 'differ', 'great', 'phone'], ['rip', 'suppos', 'brand', 'new', 'rebuilt', 'phone', 'scratch', 'guatemala', 'like', 'buy', 'sell', 'not', 'offer', 'client', 'condit', 'bad'], ['phone', 'fine', 'except', 'within', 'week', 'phone', 'began', 'problem', 'bought', 'sever', 'charg', 'think', 'problem', 'howev', 'not', 'issu', 'phone', 'not', 'reccomend', 'item', 'due', 'fact', 'defect'], ['good'], ['good', 'attent', 'high', 'recommend'], ['good'], ['not', 'real', 'intuit', 'ok'], ['phone', 'not', 'function', 'correct', 'would', 'shut', 'scree', 'use', 'keyboard', 'not', 'waist', 'money', 'broken', 'less', 'week', 'not', 'satisfi', 'purchas'], ['enjoy', 'phone', 'great', 'easi', 'use', 'think', 'best', 'phone', 'got', 'amazon'], ['bought', 'touch', 'htc', 'pleas', 'purchas', 'specif', 'unlock', 'true', 'wish', 'came', 'flash', 'player'], ['great'], ['bought', 'cell', 'phone', 'march', 'previous', 'nokia', 'prepaid', 'phone', 'dead', 'not', 'want', 'buy', 'anoth', 'cheap', 'phone', 'chang', 'cell', 'phone', 'contract', 'servic', 'landlin', 'ooma', 'voip', 'year', 'alreadi', 'save', 'lot', 'money', 'sinc', 'spend', 'money', 'buy', 'cell', 'phone', 'kind', 'smart', 'phone', 'not', 'cheap', 'phone', 'found', 'htc', 'touch', 'good', 'want', 'cell', 'phone', 'micro', 'sd', 'card', 'slot', 'could', 'add', 'memori', 'space', 'necessari', 'function', 'cell', 'phone', 'compani', 'not', 'offer', 'especi', 'appl', 'product', 'pay', 'extra', 'money', 'littl', 'bit', 'memori', 'ridicul', 'factor', 'draw', 'attent', 'abil', 'replac', 'batteri', 'nowaday', 'lot', 'cell', 'phone', 'compani', 'simpli', 'seal', 'everyth', 'prevent', 'open', 'cell', 'phone', 'batteri', 'die', 'need', 'send', 'back', 'technician', 'buy', 'new', 'one', 'not', 'realli', 'know', 'philosophi', 'behind', 'honest', 'not', 'appreci', 'kind', 'market', 'trend', 'reason', 'buy', 'htc', 'touch', 'everyth', 'receiv', 'cell', 'phone', 'immedi', 'found', 'need', 'data', 'plan', 'activ', 'cell', 'phone', 'big', 'headach', 'not', 'buy', 'data', 'plan', 'simpl', 'minut', 'prepaid', 'plan', 'eventu', 'borrow', 'friend', 'sim', 'card', 'data', 'plan', 'activ', 'phone', 'activ', 'complet', 'cell', 'phone', 'work', 'fine', 'without', 'found', 'htc', 'releas', 'android', 'upgrad', 'cell', 'phone', 'tri', 'everi', 'way', 'download', 'firmwar', 'without', 'success', 'cell', 'phone', 'not', 'recogn', 'comput', 'final', 'contact', 'htc', 'custom', 'servic', 'ask', 'help', 'oper', 'comput', 'remot', 'approv', 'surpris', 'help', 'upgrad', 'firmwar', 'web', 'minut', 'call', 'long', 'time', 'would', 'like', 'give', 'star', 'could', 'rate', 'star', 'might', 'not', 'htc', 'fault', 'think', 'probabl', 'googl', 'polici', 'lock', 'cell', 'phone', 'googl', 'gmail', 'account', 'data', 'plan', 'anoth', 'market', 'strategi', 'guid', 'consum', 'spend', 'money', 'guess', 'made', 'unlock', 'phone', 'lock', 'way', 'could', 'give', 'phone', 'good', 'find', 'complain', 'go', 'onlin', 'without', 'data', 'plan', 'spot', 'add', 'memori', 'replac', 'batteri', 'take', 'camera', 'shot', 'etc', 'not', 'one', 'follow', 'fashion', 'trend', 'addict', 'text', 'day', 'long', 'person', 'believ', 'cell', 'phone', 'would', 'serv', 'year', 'well', 'without', 'problem', 'one', 'remind', 'might', 'save', 'lot', 'troubl', 'headach', 'learn', 'hard', 'way', 'call', 'htc', 'custom', 'servic', 'earli', 'possibl', 'upgrad', 'firmwar', 'nice', 'upgrad', 'lock', 'unlock', 'phone', 'new', 'truli', 'unlock', 'htc', 'touch'], ['pleas', 'purchas', 'amazon', 'ship', 'quick', 'phone', 'excel', 'use', 'super', 'price', 'daughter', 'got', 'phone', 'price', 'import', 'someth', 'could', 'afford', 'top', 'qualiti'], ['second', 'day', 'not', 'abl', 'get', 'back', 'phone', 'clip', 'anoth', 'friend', 'one', 'upgrad', 'said', 'thing', 'constant', 'batteri', 'fall', 'power', 'phone', 'clip', 'chinsi', 'solw', 'connect', 'servic', 'internet', 'area', 'signal', 'great'], ['nice', 'phone', 'littl', 'bit', 'slow', 'go', 'cover', 'basic', 'smart', 'phone', 'need', 'not', 'expect', 'much', 'product'], ['phone', 'famili', 'year', 'love', 'ad', 'fourth', 'although', 'model', 'number', 'differ', 'phone', 'research', 'bit', 'net', 'found', 'htc', 'make', 'china', 'taiwan', 'origin', 'phone', 'got', 'china', 'model', 'last', 'one', 'bought', 'unlock', 'model', 'happen', 'made', 'taiwan', 'china', 'model', 'great', 'taiwan', 'model', 'lousi', 'screen', 'dull', 'sound', 'bad', 'month', 'back', 'start', 'peel', 'look', 'batteri', 'find', 'place', 'manufactur', 'surpris', 'htc', 'would', 'wrote', 'amazon', 'request', 'return', 'author', 'amazon', 'prompt', 'forward', 'request', 'vendor', 'vendor', 'come', 'back', 'say', 'return', 'period', 'expir'], ['great', 'phone', 'like', 'better', 'crappi', 'motorola', 'phone', 'use', 'switch', 'phone', 'quit', 'easili'], ['new', 'phone', 'year', 'ago', 'phone', 'diff', 'box', 'not', 'org', 'batteri', 'sofewar', 'not', 'stabl', 'alway', 'start', 'app'], ['phone', 'year', 'problem', 'stop', 'work', 'realli', 'get', 'use', 'went', 'ahead', 'bought', 'exact', 'one', 'unlock', 'tmobil', 'not', 'give', 'discount', 'phone', 'i', 'discount', 'plan', 'big', 'mistak', 'move', 'newer', 'phone', 'pricey', 'back', 'one', 'bought', 'unlock', 'similar', 'one', 'far', 'connect', 'abl', 'put', 'back', 'everyth', 'old', 'one', 'one', 'fave', 'not', 'seem', 'get', 'rid', 'exact', 'phone', 'not', 'suppos', 'would', 'say', 'half', 'time', 'show', 'much', 'slower', 'still', 'love', 'phone', 'know', 'use', 'not', 'seem', 'problem', 'besid', 'thing', 'realli', 'import', 'would', 'reconsid', 'buy', 'one', 'read', 'review', 'mention', 'problem', 'not', 'download', 'larg', 'file', 'phone', 'one', 'perfect', 'price', 'price', 'newer', 'one'], ['touch', 'screen', 'not', 'work', 'phone', 'deliv', 'june', 'not', 'work', 'septemb', 'bought', 'origin', 'cell', 'tmobil', 'year', 'ago', 'broke', 'screen', 'need', 'replac', 'charg', 'port', 'decid', 'buy', 'new', 'idea', 'today', 'go', 'back', 'old', 'screen', 'work'], ['die', 'one', 'month', 'later', 'need', 'go', 'buy', 'anoth', 'phone', 'disappoint'], ['thing', 'awar', 'know', 'hardwar', 'version', 'get', 'go', 'buy', 'one', 'ask', 'seller', 'one', 'sell', 'essenti', 'chines', 'version', 'taiwanes', 'version', 'taiwanes', 'version', 'inferior', 'display', 'general', 'not', 'good', 'candid', 'mod', 'enthusiast', 'want', 'phone', 'determin', 'type', 'mytouch', 'one', 'possess', 'simpl', 'look', 'behind', 'batteri', 'made', 'notic', 'someon', 'gave', 'phone', 'review', 'got', 'taiwanes', 'version', 'wound', 'disappoint', 'wound', 'version', 'experi', 'quit', 'opposit', 'wonder', 'stock', 'vs', 'custom', 'firmwar', 'batteri', 'life', 'common', 'phone', 'user', 'stock', 'softwar', 'rom', 'phone', 'fair', 'solid', 'android', 'enthusiast', 'like', 'custom', 'rom', 'cough', 'cyanogenmod', 'ahem', 'phone', 'absolut', 'experi', 'i', 'never', 'issu', 'perform', 'stabil', 'htc', 'stock', 'firmwar', 'android', 'version', 'time', 'respons', 'favorit', 'app', 'android', 'market', 'work', 'well', 'howev', 'not', 'impress', 'batteri', 'life', 'even', 'without', 'app', 'instal', 'whatev', 'reason', 'seem', 'though', 'someth', 'slowli', 'consist', 'drain', 'batteri', 'even', 'leav', 'idl', 'offici', 'updat', 'firmwar', 'htc', 'suppos', 'address', 'batteri', 'issu', 'although', 'i', 'never', 'test', 'root', 'phone', 'instal', 'cyanogenmod', 'firmwar', 'gingerbread', 'not', 'look', 'back', 'batteri', 'life', 'incred', 'ever', 'sinc', 'tweak', 'thing', 'i', 'abl', 'leav', 'standbi', 'day', 'still', 'decent', 'charg', 'left', 'use', 'pretti', 'heavili', 'throughout', 'day', 'without', 'need', 'recharg', 'usual', 'rant', 'review', 'may', 'may', 'not', 'contribut', 'impress', 'phone', 'feel', 'worth', 'mention', 'usual', 'product', 'review', 'sake', 'justic', 'product', 'get', 'silli', 'reason', 'not', 'like', 'big', 'phone', 'mytouch', 'probabl', 'not', 'good', 'fit', 'pleas', 'not', 'buy', 'phone', 'larg', 'display', 'complain', 'size', 'like', 'buy', 'suv', 'later', 'complain', 'gas', 'mileag', 'curb', 'weight', 'time', 'write', 'one', 'phone', 'camera', 'use', 'realist', 'camera', 'gadget', 'lack', 'fidel', 'resolut', 'devic', 'main', 'camera', 'like', 'everi', 'phone', 'one', 'front', 'camera', 'meant', 'video', 'chat', 'not', 'profession', 'photo', 'shoot', 'expect', 'pleas', 'becom', 'familiar', 'formula', 'buy', 'anyth', 'general', 'featur', 'qualiti', 'price', 'pick', 'two', 'devic', 'three', 'account', 'yes', 'cours', 'could', 'better', 'insert', 'xyz', 'paid', 'one', 'best', 'phone', 'meet', 'need', 'good', 'hardwar', 'spec', 'video', 'chat', 'ton', 'custom', 'rom', 'avail', 'wireless', 'n', 'nice', 'display', 'etc', 'etc', 'experi', 'speaker', 'qualiti', 'volum', 'phone', 'par', 'previous', 'android', 'devic', 'i', 'own', 'not', 'expect', 'use', 'loudspeak', 'footbal', 'game', 'person', 'home', 'secur', 'alarm', 'replac', 'crazi', 'traffic', 'worth', 'hear', 'telemarket', 'across', 'room', 'phone', 'fine', 'review', 'product', 'product', 'review', 'section', 'complet', 'separ', 'experi', 'seller', 'bought', 'without', 'consider', 'shoddi', 'support', 'compani', 'provid', 'day', 'provid', 'anyth', 'need', 'say'], ['product', 'not', 'advertis', 'not', 'come', 'origin', 'box', 'not', 'come', 'origin', 'batteri', 'not', 'come', 'origin', 'charger', 'phone', 'not', 'use', 'refurbish', 'not', 'connect', 'network', 'even', 'mobil', 'sim', 'card', 'mobil', 'costum', 'android', 'market', 'not', 'work', 'not', 'download', 'app', 'i', 'factori', 'reset', 'phone', 'twice', 'phone', 'liter', 'like', 'notepad', 'best', 'network', 'not', 'phone', 'inquir', 'issu', 'seller', 'not', 'heard', 'back', 'i', 'send', 'unit', 'back', 'not', 'buy'], ['bought', 'phone', 'month', 'ago', 'travel', 'intern', 'oper', 'system', 'buggi', 'sms', 'program', 'game', 'program', 'often', 'not', 'work', 'correct', 'sms', 'keyboard', 'type', 'keyboard', 'type', 'type', 'key', 'near', 'bottom', 'keyboard', 'set', 'back', 'function', 'start', 'play', 'game', 'touch', 'screen', 'stop', 'work', 'tap', 'touch', 'screen', 'control', 'send', 'phone', 'back', 'home', 'screen', 'put', 'phone', 'sleep', 'reboot', 'solv', 'problem', 'far', 'big', 'finger', 'forget', 'use', 'touchscreen', 'keyboard', 'finger', 'small', 'often', 'mistyp', 'screen', 'read', 'finger', 'adjac', 'also', 'reboot', 'time', 'not', 'enough', 'problem', 'enough', 'time', 'make', 'wonder', 'os', 'eventu', 'crash', 'two', 'star', 'look', 'alon', 'phone', 'look', 'good', 'despit', 'relat', 'old', 'mobil', 'phone', 'buy', 'one', 'amazon', 'say', 'take', 'month', 'arriv', 'realli', 'take', 'month', 'arriv'], ['htc', 'fan', 'total', 'satisfi', 'phone', 'not', 'get', 'impress', 'phone', 'samsung', 'htc', 'great', 'qualiti', 'phone'], ['perfect'], ['absolut', 'love', 'great', 'phone', 'super', 'cheap', 'compar', 'price', 'not', 'lie', 'lte', 'never', 'proven', 'faster', 'lte', 'buy', 'european', 'version', 'save', 'money', 'speed', 'i', 'happi', 'qualiti', 'htc', 'would', 'recommend', 'anyon', 'buy'], ['overal', 'great', 'month', 'not', 'complain'], ['excel', 'product', 'work', 'good', 'like', 'cellul'], ['want', 'fantast'], ['wonder', 'phone', 'need', 'devic', 'latest', 'android', 'hope', 'year', 'come'], ['great', 'devic', 'good', 'except', 'batteri', 'life'], ['wonder', 'phone', 'need', 'devic', 'latest', 'android', 'hope', 'year', 'come'], ['cellphon', 'pretti', 'iphon', 'beauti'], ['happi', 'new', 'buy', 'minus', 'small', 'storag', 'awar', 'intern', 'model', 'lower', 'storag', 'american', 'model', 'sinc', 'come', 'place', 'sd', 'card', 'compens', 'great', 'batteri', 'never', 'phone', 'batteri', 'good', 'volum', 'sound', 'option', 'boomsound', 'dolbi', 'enhanc', 'beauti', 'screen', 'love', 'color', 'happi', 'seller', 'help', 'everi', 'question', 'small', 'problem', 'face', 'switch', 'mobil', 'open', 'chines', 'languag', 'consult', 'youtub', 'video', 'chang', 'languag', 'english', 'packag', 'come', 'also', 'htc', 'earphon', 'includ', 'usb', 'cabl', 'batteri'], ['terribl', 'back', 'not', 'open', 'realli', 'difficult', 'open', 'need', 'replac', 'batteri', 'manual', 'english', 'includ', 'difficult', 'oper', 'return', 'phone', 'immedi', 'charg', 'near', 'restock', 'fee', 'rip', 'never', 'purchas', 'phone', 'deal', 'compani'], ['fine'], ['good', 'phone', 'receiv', 'today', 'know', 'better', 'month'], ['love'], ['product', 'realli', 'beauti', 'mine', 'came', 'gyroscop', 'damag', 'realli', 'import', 'not', 'watch', 'video', 'full', 'screen', 'mode', 'complaint', 'import', 'piec', 'móvil', 'get', 'warm', 'easili', 'reach', 'temperatur', 'high', 'minut', 'not', 'normal', 'nice', 'look', 'excel', 'screen', 'bright', 'lightweight', 'size', 'nice', 'camera', 'cellphon', 'good', 'speaker', 'clear', 'nois', 'overh', 'gyroscop', 'not', 'work', 'make', 'give', 'starsupd', 'i', 'stolen', 'buy', 'anoth', 'one', 'price', 'came', 'perfect', 'gyroscop', 'work', 'excel', 'phone', 'perfect', 'chang', 'score', 'five'], ['excel'], ['awesom', 'phone', 'not', 'connect', 'us', 'carrier', 'though'], ['phone', 'not', 'come', 'new', 'factori', 'unlock', 'came', 'box', 'shrink', 'wrap', 'broken', 'seal', 'phone', 'full', 'unremov', 'carrier', 'bloatwar', 'would', 'not', 'upgrad', 'android'], ['camara', 'doesent', 'work', 'i', 'return'], ['distort', 'soundth', 'head', 'set', 'dose', 'not', 'workth', 'photo', 'messag', 'not', 'downloadedsometim', 'ring', 'sometim', 'not', 'ring', 'without', 'chang', 'set'], ['not', 'good', 'keep', 'charg'], ['phone', 'not', 'unlock', 'numer', 'tech', 'could', 'not', 'get', 'function', 'proper', 'power', 'could', 'not', 'make', 'receiv', 'call'], ['neither', 'receiv', 'make', 'call'], ['love', 'new', 'phone'], ['i', 'phone', 'love', 'boyfriend', 'broke', 'buy', 'new', 'one', 'first', 'problem', 'notic', 'home', 'back', 'light', 'screen', 'dimmer', 'normal', 'faint', 'light', 'come', 'bottom', 'right', 'corner', 'screen', 'not', 'know', 'stock', 'camera', 'app', 'not', 'launch', 'crash', 'i', 'turn', 'hard', 'reset', 'download', 'third', 'parti', 'camera', 'app', 'even', 'not', 'launch', 'either', 'hardwar', 'problem', 'not', 'send', 'phone', 'back', 'not', 'afford', 'not', 'phone', 'wait', 'ship', 'etc', 'stuck', 'defect', 'phone'], ['realli', 'love', 'great'], ['bought', 'phone', 'month', 'ago', 'not', 'drop', 'neither', 'drop', 'liquid', 'touchscreen', 'not', 'work', 'realli', 'frustrat', 'phone', 'mean', 'gave', 'away', 'amount', 'money'], ['phone', 'describ', 'life', 'good', 'overal', 'qualiti', 'product'], ['not', 'buy', 'bought', 'two', 'phone', 'touch', 'screen', 'went', 'warranti', 'compani', 'not', 'take', 'back'], ['purchas', 'phone', 'aug', 'octob', 'phone', 'stop', 'work', 'not', 'even', 'charg', 'past', 'return', 'date', 'fix', 'cv', 'remot', 'htc', 'reset', 'thank'], ['fals', 'advertis', 'phone', 'not', 'unlock'], ['one', 'best', 'phone', 'ever'], ['cellphon', 'not', 'unlock', 'make', 'practic', 'unus'], ['gift', 'charger', 'want', 'charger', 'least'], ['pretti', 'good', 'like', 'work', 'like', 'charm'], ['phone', 'awesom', 'great', 'audio', 'display', 'beauti', 'metal', 'bodi', 'batteri', 'life', 'good', 'last', 'whole', 'day', 'moder', 'use', 'one', 'charg', 'thing', 'not', 'like', 'homescreen', 'panel', 'display', 'facebook', 'newsfe', 'bit', 'superflu'], ['use', 'good', 'condit', 'stealth', 'black', 'ponad', 'impress', 'condit', 'phone', 'sinc', 'notic', 'scratch', 'phone', 'signific', 'wear', 'work', 'speak', 'ponad', 'deliv', 'item', 'quick', 'great', 'condit', 'star', 'phone', 'amaz', 'well', 'love', 'star', 'updat', 'anyth', 'happen'], ['good'], ['phone', 'great', 'mom', 'say', 'got'], ['great', 'product', 'great', 'servic'], ['great'], ['thank'], ['great'], ['purchas', 'phone', 'month', 'ago', 'best', 'thing', 'reason', 'price', 'paid', 'qualiti', 'even', 'better', 'thing', 'miss', 'sd', 'card', 'simpl', 'fix', 'ran', 'sprint', 'store', 'put', 'one', 'definit', 'recommend', 'phone'], ['previous', 'htc', 'version', 'inspir', 'sever', 'year', 'issu', 'htc', 'one', 'still', 'like', 'htc', 'think', 'make', 'good', 'product'], ['htc', 'one', 'best', 'look', 'awesom', 'design', 'phone', 'ever', 'blinkfe', 'use', 'featur', 'smartphon', 'i', 'return', 'phone', 'bought', 'amazon', 'problem', 'camera', 'found', 'altern', 'htc', 'one', 'bought', 'beat', 'audio', 'system', 'produc', 'best', 'audio', 'boom', 'switch', 'htc', 'one', 'iphon', 'instant', 'fell', 'love', 'give', 'real', 'luxuri', 'smartphon', 'display', 'aluminium', 'bodi', 'fabul', 'though', 'skeptic', 'batteri', 'last', 'whole', 'day', 'good', 'use', 'wifi', 'call', 'music', 'last', 'two', 'hour', 'compar', 'iphon', 'usag', 'thing', 'miss', 'headphon', 'not', 'good', 'serv', 'good', 'public', 'limit', 'sale', 'hope', 'htc', 'continu', 'work', 'build', 'best', 'smartphon'], ['love', 'phone', 'htc', 'best', 'not', 'wait', 'next', 'one'], ['great'], ['great', 'sound', 'htc', 'limit', 'app', 'issu', 'certain', 'app', 'work', 'perfect', 'samsung', 'devic', 'not', 'function', 'htc', 'one', 'great', 'phone'], ['phone', 'super', 'fast', 'take', 'amaz', 'photo', 'video', 'even', 'low', 'light', 'use', 'week', 'walt', 'disney', 'world', 'took', 'almost', 'photo', 'video', 'includ', 'beauti', 'shot', 'main', 'street', 'electr', 'parad', 'firework', 'show', 'brought', 'digit', 'camera', 'way', 'faster', 'take', 'pictur', 'phone', 'look', 'good', 'especi', 'like', 'abl', 'take', 'pictur', 'take', 'video', 'not', 'think', 'i', 'would', 'like', 'blink', 'feed', 'first', 'i', 'addict', 'sinc', 'constant', 'updat', 'highlight', 'news', 'sourc', 'social', 'network', 'interfac', 'smoother', 'look', 'better', 'widget', 'feed', 'aggreg', 'i', 'tri'], ['found', 'intern', 'speaker', 'not', 'work', 'well', 'peopl', 'call', 'bare', 'hear', 'even', 'though', 'set', 'maximum', 'extern', 'speaker', 'earphon', 'work', 'fine'], ['work', 'good', 'wife', 'enjoy', 'work', 'great', 'problem', 'unit'], ['teenag', 'son', 'realli', 'like', 'phone', 'actual', 'third', 'htc', 'phone', 'first', 'two', 'stolen', 'period', 'four', 'nice', 'aiz', 'screen', 'small', 'enough', 'fit', 'pocket', 'take', 'good', 'time'], ['realli', 'fast', 'complaint', 'power', 'button', 'weird', 'place', 'usual', 'need', 'hand', 'get', 'due', 'phone', 'size', 'batteri', 'life', 'seem', 'short', 'play', 'game', 'i', 'power', 'saver', 'mode', 'turn', 'bright', 'still', 'run', 'fast', 'guess', 'game', 'take', 'lot', 'phone', 'juic', 'awesom'], ['lot', 'written', 'phone', 'love', 'wish', 'i', 'would', 'gotten', 'unlock', 'version', 'would', 'not', 'wait', 'load', 'kitkat', 'onto', 'phone', 'volum', 'opinion', 'loud', 'even', 'lowest', 'set', 'loud', 'bloatwar', 'far', 'not', 'interf', 'perform', 'phone', 'love', 'thing'], ['love', 'phone', 'far', 'complaint', 'htc', 'sens', 'alright', 'news', 'feed', 'not', 'bad', 'kind', 'conveni', 'phone', 'extrem', 'quick', 'design', 'sharp', 'beat', 'audio', 'integr', 'amaz', 'sound', 'speaker', 'even', 'headphon', 'use', 'enhanc', 'audio', 'not', 'regret', 'purchas'], ['camera', 'inoper'], ['phone', 'great', 'not', 'say', 'enough', 'good', 'thing', 'batteri', 'life', 'good', 'sens', 'ui', 'great', 'keep', 'plan', 'mess', 'though', 'instead', 'per', 'phone', 'charg', 'got', 'hit', 'month', 'far', 'weigh', 'initi', 'purchas', 'price', 'phone', 'amazon', 'pay', 'month', 'next', 'two', 'year', 'not', 'worth', 'go', 'amazon', 'purchas'], ['although', 'titl', 'say', 'factori', 'unlock', 'phone', 'actual', 'unlock', 'phone', 'mean', 'android', 'updat', 'done', 'roll', 'not', 'htc', 'roll'], ['love', 'phone', 'phone', 'strang', 'reason', 'could', 'not', 'connect', 'wifi', 'take', 'phone', 'store', 'fix', 'problem', 'spend', 'money'], ['great', 'phone', 'top', 'speaker', 'not', 'work'], ['great', 'phone'], ['not', 'happi', 'pictur', 'show', 'get', 'case', 'mayb', 'charger', 'supris', 'not'], ['rear', 'camera', 'problem', 'pictur', 'come', 'purpl', 'tone', 'use', 'area', 'littl', 'light', 'found', 'factori', 'problem', 'phone', 'produc', 'one', 'sold', 'produc', 'may', 'purchas', 'januari', 'think', 'abl', 'open', 'unlock', 'test', 'common', 'problem', 'send', 'buyer', 'may', 'return'], ['good', 'phone'], ['total', 'wrong', 'phone', 'advertis', 'unlock', 'phone', 'capabl', 'activ', 'gsm', 'provid', 'fact', 'howev', 'phone', 'would', 'abl', 'work', 'cdma', 'long', 'stori', 'short', 'wast', 'phone', 'would', 'not', 'work', 'lot'], ['reali', 'new', 'perfect'], ['still', 'great', 'phone', 'not', 'get', 'mid', 'tier', 'phone', 'new', 'qualiti', 'problem', 'wireless', 'circl', 'sold', 'use', 'phone', 'suppos', 'new', 'obvious', 'screen', 'protector', 'instal', 'previous', 'owner', 'return', 'purchas', 'one', 'wce', 'actual', 'new', 'inspect', 'close', 'not', 'want', 'year', 'old', 'phone', 'possibl', 'use'], ['great', 'phone', 'great', 'price', 'fast', 'servic'], ['excel', 'love'], ['sleek', 'well', 'defin', 'instrument', 'met', 'expect'], ['bought', 'phone', 'said', 'unlock', 'work', 'worldwild', 'phone', 'work', 'not', 'work', 'countri', 'argentina', 'think', 'buy', 'one', 'foreign', 'countri', 'better', 'think', 'twice'], ['pleas', 'product', 'work', 'advertis', 'straight', 'talk', 'pretti', 'good', 'deal', 'thought', 'reason', 'give', 'four', 'star', 'due', 'one', 'hundr', 'dollar', 'price', 'decreas', 'receiv', 'almost', 'immedi', 'purchas', 'devic', 'good', 'phone', 'would', 'look', 'nexus', 'overal', 'real', 'complaint'], ['one', 'two', 'phone', 'bad', 'bad', 'thing', 'could', 'sold', 'great', 'market', 'place'], ['neither', 'receiv', 'make', 'call'], ['use', 'not', 'sure', 'move', 'chose', 'htc', 'one', 'not', 'regret', 'phone', 'metal', 'made', 'feel', 'solid', 'work', 'perfect', 'much', 'littl', 'overpr', 'find', 'htc', 'store', 'take', 'us', 'credit', 'card', 'unlock', 'put', 'chilean', 'sim', 'card', 'work', 'product'], ['phone', 'could', 'not', 'work', 'loud', 'speaker', 'phone', 'could', 'not', 'work', 'headphon', 'insert', 'big', 'disappoint', 'loss', 'money', 'ship', 'back'], ['awesom', 'cell', 'phone', 'everyth', 'wrok', 'perfect', 'design', 'beauti'], ['bought', 'look', 'camera', 'work', 'fine', 'sold', 'dosent', 'work', 'carrier', 'venezuela'], ['son', 'love', 'phone', 'expect'], ['phone', 'lock', 'not', 'use', 'seller', 'not', 'answer', 'mail', 'unlock', 'option', 'replac', 'phone'], ['pretti', 'good', 'like', 'work', 'like', 'charm'], ['htc', 'alway', 'favorit', 'phone', 'brand', 'great', 'phone'], ['good', 'devic', 'not', 'state', 'art', 'work', 'like', 'one'], ['not', 'new', 'awful', 'return'], ['love', 'htc', 'one', 'gold', 'phone', 'get', 'mani', 'compliment', 'side', 'beauti', 'round', 'love', 'phone', 'easi', 'use', 'stay', 'charg', 'long', 'time', 'great', 'purchas'], ['phone', 'defect', 'camera', 'contact', 'amazon', 'get', 'refund', 'rma'], ['great', 'phone', 'came', 'expect', 'good', 'pictur'], ['phone', 'problem'], ['i', 'jus', 'love', 'htc', 'one', 'thisand', 'eveeveryth', 'better', 'one', 'better', 'camera', 'better', 'night', 'shot', 'camera', 'slow', 'motion', 'camera', 'htc', 'best', 'experi', 'htc', 'devic', 'love', 'aluminum', 'bodi'], ['exact', 'advertis', 'phone', 'work', 'great', 'alreadi', 'root', 'custom', 'bootload', 'rom'], ['arriv', 'time', 'product', 'bought', 'happi'], ['awesom', 'metal', 'phone', 'unsung', 'hero', 'era'], ['receiv', 'htc', 'suppos', 'factori', 'unlock', 'not', 'still', 'lock', 'useless', 'cell', 'phone', 'high', 'dissatisfi', 'would', 'not', 'even', 'one', 'star'], ['great', 'buy', 'thank'], ['like', 'much'], ['problem', 'back', 'camera', 'ir', 'dose', 'ha', 'e', 'golf', 'definit', 'not', 'work', 'good', 'htc', 'one', 'camera', 'excel', 'person', 'use', 'one', 'os', 'bad', 'problem', 'england', 'argetina', 'need', 'solut', 'knew', 'phone', 'use', 'said', 'mujer', 'vive', 'solut', 'wait', 'answer', 'thank'], ['realli', 'best', 'phone', 'purchas', 'everso', 'beauti', 'designperfect', 'qualityhorr', 'soundand', 'trust', 'best', 'site', 'amazoni', 'bought', 'phone', 'special', 'search', 'version'], ['love', 'mani', 'new', 'featur', 'pic', 'qualiti', 'photo', 'excel', 'recommend'], ['got', 'replac', 'galaxi', 'ii', 'unfortun', 'went', 'dead', 'year', 'faith', 'use', 'i', 'use', 'week', 'compar', 'old', 'phone', 'tell', 'upgrad', 'packag', 'term', 'speed', 'processor', 'i', 'play', 'quit', 'ab', 'game', 'someth', 'could', 'not', 'old', 'phone', 'due', 'space', 'issu', 'enough', 'applic', 'game', 'i', 'got', 'app', 'usual', 'speak', 'differenti', 'thing', 'got', 'phone', 'boom', 'sound', 'doubl', 'camera', 'regard', 'sound', 'awesom', 'read', 'great', 'realli', 'tell', 'good', 'hear', 'truli', 'not', 'understand', 'not', 'thought', 'place', 'speaker', 'front', 'awesom', 'speaker', 'camera', 'sure', 'mani', 'phone', 'got', 'megapixel', 'point', 'not', 'need', 'mani', 'pixel', 'unless', 'plan', 'print', 'lot', 'poster', 'everyday', 'use', 'pictur', 'quit', 'clear', 'color', 'great', 'quit', 'good', 'pictur', 'never', 'use', 'selfi', 'due', 'front', 'camera', 'around', 'megapixel', 'mp', 'get', 'front', 'camera', 'take', 'lot', 'photo', 'way', 'trust'], ['week', 'shi', 'year', 'phone', 'broke', 'charger', 'port', 'batteri', 'not', 'charg', 'right', 'batteri', 'drain', 'even', 'check', 'imei', 'warranti', 'htc', 'notifi', 'although', 'purchas', 'date', 'septemb', 'last', 'year', 'one', 'year', 'warranti', 'htc', 'told', 'warranti', 'expir', 'bewar', 'longer', 'purchas', 'mobil', 'phone', 'amazon', 'think', 'expect', 'phone', 'last', 'year', 'upset', 'piss'], ['excel'], ['love', 'phone', 'use', 'iphon', 'sinc', 'intro', 'look', 'upgrad', 'iphon', 'came', 'across', 'phone', 'great', 'price', 'thought', 'not', 'give', 'android', 'tri', 'abl', 'purchas', 'price', 'one', 'iphon', 'glad', 'somewhat', 'learn', 'curv', 'use', 'like', 'love', 'fast', 'stun', 'display', 'build', 'qualiti', 'rival', 'iphon', 'paid', 'unlock', 'high', 'end', 'phone', 'not', 'complain'], ['simpli', 'best', 'phone'], ['hello', 'phone', 'defect', 'problem', 'indic', 'custom', 'batteri', 'abil', 'charg', 'hold', 'charg', 'malfunct', 'problem', 'not', 'get', 'point', 'recogn', 'someth', 'wrong', 'day', 'thefirst', 'week', 'fine', 'day', 'day', 'deterior', 'bare', 'function', 'howev', 'worst', 'part', 'custom', 'servic', 'compani', 'newtrend', 'even', 'though', 'obvious', 'phone', 'cost', 'close', 'dollar', 'last', 'well', 'year', 'one', 'die', 'four', 'week', 'mean', 'need', 'replac', 'refund', 'immedi', 'simpli', 'wrote', 'bad', 'not', 'go', 'darn', 'thing', 'howev', 'even', 'worst', 'part', 'amazon', 'deni', 'claim', 'excel', 'custom', 'mani', 'year', 'andit', 'obvious', 'amazonian', 'check', 'histori', 'not', 'make', 'claim', 'except', 'blue', 'moon', 'andfor', 'alway', 'good', 'reason', 'denial', 'annoy', 'unreason', 'part', 'whole', 'thing', 'sinc', 'failur', 'ofth', 'phone', 'clear', 'within', 'z', 'guarante', 'term', 'arrgghh', 'wrote', 'amazon', 'item', 'receiv', 'damag', 'defect', 'materi', 'differ', 'item', 'repres', 'product', 'detail', 'page', 'defect', 'not', 'evid', 'day', 'file', 'within', 'day', 'limit', 'defect', 'not', 'digit', 'relat', 'thebatteri', 'charg', 'aspect', 'phone', 'complet', 'unaccept', 'claim', 'deni', 'demand', 'action', 'sinc', 'devic', 'sold', 'condit', 'seller', 'must', 'known', 'would', 'fail', 'day', 'purchas', 'amazon', 'exact', 'problemwith', 'phone', 'notic', 'also', 'custom', 'experi', 'mani', 'year', 'show', 'not', 'make', 'spuriousclaim', 'ever', 'legitim', 'fault', 'part', 'seller', 'pleas', 'put', 'intouch', 'supervisor', 'not', 'resolv', 'satisfact', 'full', 'refund', 'z', 'polici', 'clear', 'cover', 'claim', 'not', 'agre', 'pleas', 'explain', 'exact', 'refer', 'statement', 'within', 'explan', 'thank'], ['phone', 'came', 'lock', 'scrath', 'howev', 'peopl', 'star', 'quick', 'abl', 'solv', 'problem', 'done', 'hour', 'phone', 'work', 'great', 'thank'], ['samsung', 'galaxi', 'note', 'absolut', 'love', 'turn', 'pile', 'fecal', 'matter', 'htc', 'one', 'spectacular', 'use', 'phone', 'straight', 'talk', 'servic', 'could', 'not', 'happier', 'not', 'issu', 'servic', 'phone', 'enjoy', 'use', 'much', 'never', 'leav', 'side', 'not', 'perform', 'better', 'note', 'also', 'much', 'aesthet', 'pleas'], ['great', 'phone', 'fast', 'deliveri'], ['receiv', 'well', 'thank', 'much'], ['thank', 'perfect', 'headset', 'everyth'], ['order', 'tuesday', 'got', 'friday', 'took', 'day', 'deliv', 'said', 'free', 'ship', 'came', 'perfect', 'box', 'scratch', 'everyth', 'nice', 'best', 'phone', 'could', 'ever', 'get', 'i', 'use', 'mexico', 'work', 'perfect', 'amazi', 'great', 'sound', 'everyth', 'perfect', 'phone'], ['love', 'phone', 'search', 'corner', 'phone', 'none', 'screen', 'thought', 'get', 'phone', 'work', 'perfect', 'would', 'definit', 'recommend', 'buy', 'other', 'bought', 'edg', 'cellular', 'actual', 'look', 'one', 'kid', 'dad', 'thank', 'ec'], ['phone', 'great', 'product', 'deliv', 'describ', 'minor', 'scratch', 'side', 'black', 'spot', 'back', 'side', 'dint', 'go', 'even', 'clean', 'give', 'not', 'provid', 'ear', 'phone', 'come', 'origin', 'packag', 'due', 'black', 'spot', 'could', 'better', 'job', 'deliv', 'product', 'clean', 'spot'], ['beauti', 'screen', 'fast'], ['love', 'phone', 'work', 'great'], ['fantast', 'phone', 'excel', 'batteri', 'life', 'crisp', 'graphic', 'chief', 'complaint', 'case', 'prone', 'scratch', 'often', 'display'], ['ok', 'use', 'love', 'phone', 'bought', 'day', 'birthday', 'save', 'month', 'work', 'job', 'go', 'school', 'first', 'month', 'dream', 'blaze', 'fast', 'everyth', 'work', 'perfect', 'slowli', 'start', 'laggin', 'one', 'speaker', 'work', 'sometim', 'happen', 'restart', 'time', 'time', 'drop', 'call', 'daili', 'basi', 'least', 'time', 'day', 'freze', 'second', 'not', 'respond', 'anyth', 'like', 'someth', 'pay', 'nice', 'chunck', 'chang', 'expect', 'last', 'bit', 'year', 'start', 'go', 'first', 'day', 'took', 'box', 'put', 'heavi', 'duti', 'protect', 'case', 'took', 'month', 'minor', 'dust', 'wipe', 'clean', 'never', 'drope', 'concret', 'hard', 'surfac', 'water', 'got', 'far', 'never', 'went', 'street', 'fight', 'pocket', 'still', 'like', 'phone', 'might', 'time', 'htc', 'fix', 'problem', 'love'], ['muy', 'bueno'], ['ship', 'without', 'sim', 'card', 'tray', 'phone', 'still', 'unus'], ['realli', 'happi', 'bought', 'phone', 'far', 'happi', 'love', 'speaker', 'screen', 'size', 'design', 'camera', 'batteri', 'seem', 'declin', 'hour', 'first', 'week', 'hour', 'might', 'due', 'fact', 'lot', 'app', 'enjoy', 'featur', 'htc', 'given', 'phone', 'think', 'one', 'best', 'smartphon', 'charg', 'quit', 'fast', 'hour', 'charg', 'give', 'six', 'seven', 'time', 'use', 'time', 'look', 'good', 'phone', 'let', 'keep', 'new', 'app', 'one', 'definit', 'even', 'got', 'girlfriend', 'ever', 'use', 'iphon', 'switch', 'android', 'show', 'phone'], ['work', 'phone'], ['screen', 'not', 'set', 'phone', 'pop', 'top', 'right', 'side', 'look', 'side', 'top', 'see', 'sliver', 'light', 'phone', 'glass', 'not', 'pop', 'back', 'place', 'either', 'bought', 'phone', 'front', 'speaker', 'yet', 'top', 'speaker', 'horribl', 'worst', 'statici', 'sound', 'matter', 'play', 'even', 'simplest', 'thing', 'notif', 'tone', 'cover', 'top', 'speaker', 'finger', 'sound', 'much', 'better', 'use', 'bottom', 'speaker', 'alon', 'pretti', 'disappoint', 'would', 'return', 'except', 'took', 'almost', 'month', 'get', 'i', 'guess', 'would', 'take', 'month', 'send', 'back', 'anoth', 'month', 'differ', 'phone', 'probabl', 'problem', 'get', 'i', 'would', 'like', 'not', 'realli', 'deal', 'breaker', 'though', 'use', 'netflix', 'work', 'not', 'use', 'headphon', 'work', 'listen', 'horribl', 'speaker'], ['phone', 'die', 'year', 'warranti', 'period', 'end', 'woke', 'one', 'morn', 'blue', 'screen', 'death', 'despit', 'gentl', 'use'], ['excel', 'android', 'phone', 'market', 'date', 'beat', 'iphon', 'look', 'ad', 'lot', 'featur', 'custom', 'phone', 'need', 'like', 'blnk', 'feed', 'extrem', 'powersav', 'mode', 'htc', 'speaker', 'awsom', 'not', 'heard', 'qualiti', 'sound', 'smartphon', 'till'], ['yes', 'read', 'titl', 'correct', 'simpli', 'best', 'smartphon', 'year', 'sad', 'thing', 'featur', 'urgent', 'wait', 'extrem', 'power', 'save', 'mode', 'late', 'knew', 'featur', 'support', 'upon', 'mobil', 'oper', 'dhiraagu', 'love', 'maldiv', 'imaf'], ['excellet'], ['screen', 'come', 'batteri', 'random', 'die', 'not', 'us', 'warranti', 'lot', 'problem', 'not', 'abl', 'resolv', 'end', 'receiv', 'full', 'refund', 'item'], ['phone', 'miss', 'sim', 'card', 'tray', 'phone', 'perfect', 'condit'], ['good'], ['excelent', 'producto', 'recomendado'], ['great', 'phone', 'excel', 'seller', 'everyth', 'describ', 'phone', 'came', 'seal', 'box', 'brand', 'new', 'factori', 'unlock', 'intern'], ['piec', 'crap', 'screen', 'dosent', 'even', 'turn'], ['realli', 'nice', 'product'], ['thank', 'ypu', 'phone', 'work', 'fantast'], ['buy', 'first', 'htc', 'one', 'chang', 'pic', 'fine', 'said', 'trouth', 'huge', 'defer', 'price', 'signal'], ['phone', 'unlock', 'mani', 'scratch'], ['nice', 'phone'], ['sim', 'card', 'stop', 'work', 'also', 'lot', 'bug', 'crash', 'lot', 'month', 'use', 'way', 'updat', 'intern', 'version'], ['realli', 'like', 'htc', 'one', 'met', 'expect', 'exact', 'describ', 'seller', 'defect'], ['perfect', 'one'], ['know', 'smart', 'phone', 'today', 'still', 'luxuri', 'one', 'wonder', 'price', 'recommend'], ['thought', 'amazon', 'product', 'good', 'not', 'not', 'satisfi', 'not', 'work', 'also', 'tri', 'charg', 'phone', 'not', 'charg'], ['build', 'qualiti', 'good', 'pretti', 'fast', 'work', 'well'], ['good', 'updat', 'android'], ['receiv', 'time', 'work', 'except', 'well'], ['recommend'], ['phone', 'look', 'brand', 'new', 'littl', 'bit', 'scratch', 'charger', 'goe', 'arriv', 'earlier', 'expect', 'recommend', 'much', 'sound', 'expect', 'size', 'perfect', 'run', 'great'], ['greatt', 'phone', 'great', 'servic'], ['perfect', 'work', 'great', 'year', 'phone', 'steal', 'money'], ['perfect'], ['phone', 'unlock', 'mani', 'scratch'], ['grand', 'son', 'love'], ['updat', 'android', 'phone', 'not', 'work'], ['phone', 'instanc', 'record', 'android', 'softwar', 'crash', 'went', 'softwar', 'updat', 'crash', 'hard', 'seller', 'sent', 'link', 'download', 'zip', 'file', 'reinstat', 'softwar', 'work', 'well', 'htc', 'would', 'not', 'help', 'seller', 'third', 'parti', 'amazon', 'even', 'though', 'new', 'purchas', 'month', 'old', 'seller', 'save', 'day', 'htc', 'lost', 'futur', 'custom', 'not', 'care', 'sold', 'product', 'long', 'new', 'purchas'], ['phone', 'move', 'htc', 'one', 'x', 'say', 'big', 'jump', 'awar', 'seller', 'sell', 'asian', 'ver', 'not', 'like', 'prommis'], ['great'], ['heat', 'use', 'map', 'plus', 'fool', 'forev', 'receiv'], ['perfect', 'phone', 'total', 'seal', 'new', 'taiwan', 'origin', 'place', 'htc', 'main', 'build', 'beauti', 'cellphon', 'ever', 'use'], ['yes', 'receiv', 'item'], ['not', 'factori', 'unlock', 'phone', 'come', 'box', 'got', 'open', 'box', 'network', 'unlock', 'phone', 'avail', 'lesser', 'price', 'elsewher'], ['good', 'thank'], ['phone', 'great', 'not', 'get', 'headset', 'made', 'sad'], ['great', 'phone', 'issu'], ['hi', 'phone', 'not', 'work', 'screen', 'balck', 'not', 'work', 'suport', 'htc', 'onlin', 'said', 'thas', 'test', 'equip', 'not', 'market', 'imei', 'test', 'equipmet', 'iwant', 'money', 'return'], ['enjoy', 'phone', 'lot', 'use', 'pretti', 'review', 'let', 'us', 'write', 'thing'], ['perfect', 'simpl', 'purchas'], ['phone', 'great', 'love'], ['good'], ['bought', 'phone', 'coupl', 'week', 'ago', 'sinc', 'first', 'turn', 'encount', 'problem', 'initi', 'set', 'could', 'never', 'complet', 'got', 'stuck', 'process', 'abort', 'send', 'previous', 'android', 'backup', 'manual', 'phone', 'random', 'restart', 'time', 'time', 'well', 'batteri', 'drain', 'fast', 'slow', 'charg', 'yesterday', 'sudden', 'restart', 'got', 'stuck', 'boot', 'simpli', 'not', 'start', 'send', 'back', 'go', 'galaxi'], ['speaker', 'make', 'sound', 'ringer', 'result', 'miss', 'call', 'audio', 'call', 'requir', 'activ', 'speaker', 'phone', 'function', 'even', 'half', 'volum', 'miss', 'speaker', 'function', 'function', 'devic', 'work', 'expect'], ['great', 'phone'], ['great', 'phone', 'great', 'price'], ['excel', 'product'], ['excel', 'phone'], ['phone', 'incred', 'prefect', 'refin', 'last', 'year', 'phone', 'design', 'may', 'similar', 'good', 'thing', 'like', 'take', 'great', 'phone', 'tweak', 'better', 'phone', 'huge', 'win', 'book'], ['excel', 'learn', 'use', 'thank'], ['bought', 'new', 'unlock', 'phone', 'got', 'box', 'open', 'softwar', 'instal'], ['excel', 'cellphon', 'love'], ['phone', 'random', 'turn', 'start', 'time', 'per', 'week', 'thought', 'mayb', 'lean', 'turn', 'someth', 'start', 'turn', 'like', 'everi', 'half', 'hour', 'not', 'hold', 'charg', 'basic', 'not', 'even', 'use', 'phone', 'complet', 'garbag', 'lot', 'good', 'review', 'mayb', 'got', 'defect', 'one', 'buyer', 'bewar', 'lot', 'claim', 'possibl', 'receiv', 'defect', 'phone'], ['not', 'good', 'product', 'compar', 'price'], ['first', 'time', 'use', 'htc', 'smartphon', 'great', 'better', 'samsung', 'yes', 'batteri', 'not', 'good', 'work', 'great', 'nice', 'hd', 'screem', 'better', 'spect'], ['excelent'], ['good'], ['heat', 'use', 'map', 'plus', 'fool', 'forev', 'receiv'], ['want', 'phone'], ['great', 'phone'], ['nice'], ['love', 'phone', 'work', 'great', 'problem', 'not', 'receiv', 'charg', 'cabl', 'suppos', 'chang', 'phone'], ['good'], ['screen', 'big', 'nice', 'imag', 'fast', 'processor', 'issu', 'bluetooth', 'make', 'random', 'call', 'connect', 'devic', 'sim', 'card', 'function', 'never', 'work', 'optimist', 'tri', 'pay', 'addit', 'fix', 'issu', 'told', 'noth', 'done', 'definit', 'not', 'worth', 'hassl', 'inconveni', 'buy', 'differ', 'brand', 'differ', 'store'], ['awesom', 'phone', 'everyth', 'came', 'expect', 'work', 'smooth', 'total', 'recommend', 'phone'], ['phone', 'not', 'come', 'accessori', 'pictur', 'therefor', 'ask', 'reinstat', 'part', 'cost', 'phone'], ['order', 'htc', 'plus', 'butuh', 'not', 'reaciv', 'phone', 'case', 'tamper', 'glass'], ['good', 'thank'], ['great', 'bit', 'worri', 'instruct', 'most', 'japanes', 'bit', 'basic', 'setup', 'languag', 'prefer', 'option'], ['absolut', 'brilliant', 'everyth', 'would', 'want'], ['actual', 'loe', 'phone', 'although', 'purchas', 'not', 'know', 'come', 'japan', 'paperwork', 'japanes', 'especi', 'sinc', 'list', 'american', 'seller'], ['phone', 'bare', 'year', 'sudden', 'start', 'go', 'boot', 'loop', 'look', 'boot', 'loop', 'googl', 'flaw', 'htc', 'render', 'phone', 'unus', 'way', 'undo', 'happi', 'phone', 'end', 'frustrat', 'longer', 'usabl', 'not', 'root', 'hack', 'whatev', 'phone', 'got', 'plan', 'tri', 'enjoy', 'awesom', 'android', 'phone'], ['heat', 'use', 'map', 'plus', 'fool', 'forev', 'receiv'], ['qualiti', 'function', 'phone', 'great', 'huge', 'concern', 'batteri', 'phone', 'batteri', 'start', 'decreas', 'soon', 'touch', 'batteri', 'not', 'last', 'day', 'need', 'charger', 'afternoon', 'normal', 'not'], ['excelent'], ['disappoint', 'product', 'deliv', 'huge', 'amazon', 'fan', 'not', 'satisfi', 'product', 'receiv', 'phone', 'order', 'mention', 'unlock', 'gb', 'htc', 'one', 'receiv', 'phone', 'within', 'day', 'book', 'love', 'packag', 'tri', 'initi', 'configur', 'phone', 'not', 'proceed', 'connect', 'internet', 'say', 'unfortun', 'setup', 'wizard', 'stop', 'work', 'tri', 'hard', 'restart', 'phone', 'show', 'lock', 'seem', 'fals', 'advertis', 'pleas', 'help', 'either', 'refund', 'replac', 'devic', 'like', 'shop', 'amazon', 'realli', 'disappoint', 'black', 'friday', 'chatterjeeupd', 'gave', 'anoth', 'tri', 'yesterday', 'night', 'configur', 'success', 'minor', 'tweak', 'apolog', 'caus', 'problem', 'anyon', 'phone', 'work', 'absolut', 'fine', 'love', 'phone', 'phone', 'amaz', 'thank', 'amazon'], ['phone', 'not', 'work'], ['scratch', 'corner', 'broken', 'realli', 'hate'], ['great', 'phone'], ['great', 'phone', 'awesom', 'surpass', 'expect'], ['love', 'phone'], ['telephon', 'one', 'worst', 'phone', 'ever', 'bought', 'batteri', 'bare', 'make', 'hour', 'full', 'charg', 'not', 'buy', 'replac', 'batteri', 'attempt', 'chang', 'sinc', 'phone', 'seal', 'bad', 'purchas'], ['not', 'open', 'two', 'month'], ['phone', 'suck', 'not', 'buy'], ['cell', 'phone', 'not', 'good', 'power', 'button', 'not', 'work', 'need', 'phone'], ['phone', 'work', 'button', 'worn', 'seem', 'drop', 'not', 'fulli', 'refurbish'], ['i', 'sure', 'htc', 'mini', 'great', 'phone', 'especi', 'size', 'audio', 'system', 'tri', 'save', 'buck', 'buy', 'third', 'parti', 'vendor', 'amazon', 'wast', 'phone', 'bought', 'behav', 'like', 'non', 'commerci', 'releas', 'came', 'korean', 'app', 'could', 'not', 'uninstal', 'one', 'would', 'play', 'phone', 'rington', 'unexpect', 'hour', 'known', 'reason', 'tri', 'root', 'order', 'uninstal', 'default', 'app', 'made', 'brick', 'favor', 'spend', 'extra', 'buck', 'retail'], ['second', 'phone', 'purchas', 'husband', 'saw', 'mine', 'want', 'easi', 'use', 'loudd'], ['htc', 'one', 'strong', 'phone', 'one', 'strongest', 'even', 'purchas', 'disadvantag', 'microsd', 'card', 'not', 'realli', 'need', 'massiv', 'use', 'cloud', 'servic', 'batteri', 'thing', 'would', 'chang', 'smartphon', 'batteri', 'life', 'not', 'great', 'screen', 'light', 'color', 'good', 'comput', 'power', 'cpus', 'consid', 'better', 'i', 'not', 'sure', 'realli', 'sens', 'interfac', 'intuit', 'nice', 'work', 'get', 'use', 'price', 'least', 'bought', 'less', 'galaxi', 'act', 'better', 'good', 'batteri', 'life', 'much', 'better', 'cost', 'almost', 'time', 'price', 'htc', 'beauti', 'phone', 'saw'], ['good', 'team', 'thank'], ['good'], ['great', 'phone', 'becom', 'android', 'upgrad', 'htc', 'site'], ['good', 'cellphon'], ['work', 'pretti', 'well'], ['came', 'great', 'condit', 'still', 'work', 'great'], ['excel', 'phone', 'work', 'great', 'everyth', 'expect', 'smart', 'phone', 'horribl', 'batteri', 'life', 'would', 'given', 'five', 'star', 'not', 'batteri', 'life', 'would', 'definit', 'recommend', 'overal', 'happi', 'keep', 'charger', 'handi'], ['advertis', 'much'], ['excel'], ['excel', 'met'], ['cool', 'smartphon'], ['describ', 'thank'], ['good'], ['good', 'cell', 'issu'], ['great', 'phone', 'fast', 'extrem', 'durabl', 'drop', 'almost', 'immedi', 'take', 'box', 'thing', 'keep', 'give', 'star', 'speaker', 'volum', 'not', 'loud', 'would', 'like', 'bit', 'tinni'], ['item', 'perfect', 'recommend', 'seller'], ['arriv', 'late', 'noth', 'would', 'keep', 'would', 'work', 'warm', 'much', 'turn', 'not', 'deal', 'phone', 'week', 'return'], ['receiv', 'htc', 'one', 'x', 'phone', 'not', 'look', 'new', 'differ', 'model', 'box', 'websit', 'model', 'differ', 'phone', 'model', 'phone', 'htc', 'one', 'x', 'box', 'say', 'htc', 'one', 'i', 'disappoint'], ['like', 'phone', 'lot', 'also', 'like', 'fact', 'come', 'mani', 'free', 'app', 'make', 'easi', 'navig'], ['item', 'arriv', 'delay', 'not', 'function', 'correct', 'batteri', 'last', 'less', 'hour', 'volum', 'pad', 'not', 'work', 'signal', 'receiv', 'phone', 'call', 'get', 'internet', 'connect', 'worst', 'sum', 'cellphon', 'lee', 'month', 'not', 'make', 'use', 'seller', 'not', 'take', 'back', 'made', 'complain', 'month', 'receiv', 'item', 'even', 'explain', 'took', 'wile', 'realiz', 'not', 'compani', 'equip', 'htc', 'one', 'x', 'malfunct', 'find', 'anoth', 'cellphon', 'complet', 'cut', 'main', 'tool', 'work', 'terribl', 'experi', 'encourag', 'anyon', 'not', 'buy', 'seller'], ['order', 'htc', 'one', 'x', 'beat', 'audio', 'unlock', 'gsm', 'android', 'smartphon', 'grey', 'juli', 'anxious', 'wait', 'day', 'receiv', 'juli', 'well', 'receiv', 'wrong', 'phone', 'order', 'us', 'version', 'tech', 'detail', 'show', 'us', 'spec', 'onlin', 'invoic', 'show', 'exact', 'one', 'x', 'beat', 'audio', 'unlock', 'gsm', 'android', 'smartphon', 'grey', 'surpris', 'open', 'box', 'intern', 'version', 'box', 'anoth', 'surpris', 'part', 'print', 'invoic', 'insid', 'box', 'complet', 'differ', 'descript', 'onlin', 'invoic', 'descript', 'intern', 'not', 'know', 'fault', 'amazon', 'seller', 'not', 'care', 'fault', 'go', 'back'], ['hi', 'order', 'htc', 'one', 'item', 'receiv', 'phone', 'not', 'origin', 'print', 'front', 'phone', 'ofcourc', 'stuff', 'unlock', 'phone', 'not', 'origin', 'htc', 'one', 'not', 'item', 'orderd', 'henc', 'return', 'wrong', 'inform', 'provid', 'amazon', 'item', 'complet', 'differ', 'product', 'return', 'product', 'seller', 'seller', 'not', 'refund', 'not', 'pick', 'phone', 'repli', 'email'], ['realli', 'good', 'recommend', 'purchas'], ['phone', 'good'], ['pleasur', 'use', 'htc', 'one', 'x', 'reason', 'price', 'great', 'perform', 'actual', 'miss', 'phone', 'bit'], ['receiv', 'two', 'phone', 'return', 'first', 'could', 'not', 'hear', 'anyth', 'talk', 'phone', 'second', 'extern', 'sound', 'low', 'not', 'satisfi', 'sound', 'issu', 'phone', 'howev', 'phone', 'great', 'featur', 'compani', 'tri', 'best', 'resolv', 'issu'], ['came', 'perfect', 'condit', 'son', 'love', 'easi', 'set', 'thank'], ['excel', 'purchas', 'product', 'perfect', 'condit', 'physic', 'softwar', 'recommend'], ['love', 'smartphon', 'beautiful', 'lie', 'much', 'happi', 'excelent', 'beat', 'audio'], ['bueno'], ['take', 'learn', 'use', 'come', 'iphon', 'definit', 'not', 'faster', 'iphon', 'batteri', 'suck', 'learn', 'optim', 'power', 'last', 'hour'], ['brought', 'htc', 'one', 'x', 'beat', 'audio', 'new', 'cellphon', 'sent', 'obiusli', 'use', 'batteri', 'not', 'work', 'right', 'microphon', 'speak', 'without', 'speaker', 'not', 'right', 'i', 'disappoint', 'item', 'pride', 'feed', 'back', 'quick', 'accept', 'fail'], ['phone', 'not', 'new', 'old', 'damag'], ['chose', 'rate', 'best', 'phone', 'ever', 'clear', 'screen', 'best', 'camera', 'phone', 'would', 'recommend', 'phone', 'person', 'good', 'phone'], ['use', 'htc', 'one', 'x', 'two', 'month', 'write', 'review', 'experi', 'heavi', 'use', 'must', 'say', 'first', 'bought', 'littl', 'issu', 'screen', 'flicker', 'short', 'batteri', 'life', 'htc', 'work', 'well', 'distribut', 'updat', 'made', 'phone', 'amaz', 'screen', 'color', 'beauti', 'real', 'compar', 'amol', 'understand', 'real', 'color', 'classi', 'look', 'compar', 'galaxi', 'opinion', 'read', 'review', 'somebodi', 'complain', 'unibodi', 'design', 'sd', 'card', 'slot', 'first', 'unibodi', 'design', 'plus', 'rememb', 'iphon', 'appreci', 'first', 'introduc', 'unibodi', 'design', 'kind', 'phone', 'fell', 'solid', 'actual', 'problem', 'chang', 'batteri', 'die', 'htc', 'use', 'high', 'qualiti', 'batteri', 'like', 'iphon', 'soni', 'instead', 'lithium', 'not', 'need', 'replac', 'long', 'year', 'peopl', 'complain', 'not', 'replac', 'batteri', 'backup', 'batteri', 'daili', 'usag', 'must', 'say', 'differ', 'carri', 'backup', 'batteri', 'extern', 'charger', 'ok', 'batteri', 'life', 'updat', 'make', 'correct', 'set', 'reach', 'hour', 'littl', 'heavi', 'usag', 'exampl', 'batteri', 'save', 'set', 'auto', 'bright', 'wifi', 'enabl', 'option', 'choos', 'wifi', 'enabl', 'screen', 'sleep', 'option', 'charg', 'wifi', 'screen', 'wake', 'screen', 'automat', 'peopl', 'less', 'experi', 'download', 'free', 'applic', 'easi', 'batteri', 'reach', 'better', 'gb', 'storag', 'enough', 'keep', 'song', 'video', 'hd', 'big', 'size', 'game', 'lot', 'applic', 'still', 'gb', 'free', 'space', 'also', 'experienc', 'sd', 'card', 'alway', 'slow', 'intern', 'disk', 'phone', 'full', 'data', 'experi', 'lag', 'problem', 'happi', 'gb', 'intern', 'storag', 'durabl', 'inde', 'watch', 'video', 'someon', 'use', 'hammer', 'link', 'camera', 'perform', 'great', 'daylight', 'good', 'compar', 'phone', 'includ', 'night', 'time', 'rememb', 'phone', 'camera', 'not', 'expect', 'real', 'camera', 'perform', 'interfac', 'problem', 'make', 'close', 'stock', 'android', 'ic', 'interfac', 'saw', 'problem', 'interfac', 'smooth', 'usabl', 'fast', 'phone', 'king', 'smartphon', 'great', 'upgrad', 'version', 'iphon', 'smart', 'phone', 'market'], ['bought', 'phone', 'sister', 'graphic', 'featur', 'pictur', 'qualiti', 'doubl', 'wow', 'like'], ['excel'], ['one', 'thing', 'love', 'htc', 'camera', 'amaz', 'even', 'better', 'samsung'], ['not', 'phone', 'came', 'two', 'defect', 'microphon', 'not', 'digit', 'broken', 'number', 'could', 'not', 'display', 'touch', 'screen'], ['experi', 'good', 'recommend', 'peopl', 'amazon'], ['stun', 'phone', 'price', 'downsid', 'batteri', 'life'], ['bought', 'two', 'cell', 'phone', 'one', 'two', 'bad', 'left', 'screen', 'app', 'illumin', 'not', 'difficult', 'see', 'solut', 'warranti', 'i', 'venezuela'], ['good', 'even', 'time', 'write', 'problem', 'htc', 'one', 'came', 'cel', 'came', 'default', 'screen', 'side', 'look', 'separ', 'littl', 'screen', 'could', 'see', 'thing', 'not', 'pay', 'much', 'attent', 'light', 'howev', 'send', 'repair', 'not', 'well', 'today', 'cel', 'noth', 'work', 'touch', 'screen', 'noth', 'reset', 'button', 'return', 'natur', 'state', 'remain', 'cel', 'bad', 'not', 'help', 'seem', 'unfair', 'spend', 'dollar', 'turn', 'phone', 'not', 'hard', 'month', 'pleas', 'help', 'would', 'grate', 'wait', 'prompt', 'respons'], ['excelent'], ['love', 'devic', 'good', 'balanc', 'price', 'valu', 'recommend'], ['ok'], ['excelent'], ['order', 'phone', 'juli', 'august', 'still', 'not'], ['love'], ['noth', 'piec', 'garbag', 'last', 'mths', 'not', 'buy'], ['time', 'phone', 'goe', 'blank', 'htc', 'page', 'pull', 'say', 'reload', 'act', 'like', 'want', 'get', 'stuck', 'well'], ['phone', 'not', 'charg', 'way'], ['second', 'one', 'i', 'own', 'depend', 'long', 'lastin', 'verizon', 'phone'], ['feel', 'like', 'hit', 'jackpot', 'not', 'like', 'cost', 'cell', 'phone', 'day', 'not', 'need', 'much', 'technolog', 'phone', 'right', 'especi', 'sinc', 'ipad', 'prefer', 'netflix', 'facebook', 'etc', 'rhyme', 'super', 'cute', 'husband', 'thought', 'two', 'phone', 'switch', 'flip', 'phone', 'smartphon', 'go', 'negat', 'impact', 'famili', 'plan', 'one', 'daughter', 'got', 'phone', 'learn', 'use', 'signific', 'less', 'data', 'husband', 'daughter', 'droid', 'iphon', 'modern', 'featur', 'still', 'abl', 'stay', 'within', 'plan', 'limit'], ['htc', 'certain', 'made', 'mess', 'lay', 'way', 'fix', 'work', 'work', 'well', 'omg', 'ui', 'phone', 'small', 'fault', 'tri', 'save', 'dollar', 'spent', 'send', 'receiv', 'good', 'selectel', 'mvno', 'verizon', 'phone', 'clear'], ['phone', 'not', 'charg', 'way'], ['best', 'invest', 'i', 'made', 'pleas', 'product', 'worth', 'paid', 'smart', 'deal', 'still', 'work', 'great', 'still', 'happi', 'custom'], ['useless', 'thing', 'not', 'work', 'side', 'us', 'i', 'not', 'abl', 'use', 'phone', 'expens', 'buy'], ['onlin', 'specif', 'show', 'sim', 'card', 'slot', 'howev', 'receiv', 'not', 'i', 'unabl', 'use'], ['love', 'size', 'phone', 'not', 'let', 'sync', 'googl', 'account', 'app', 'older', 'version', 'pretti', 'much', 'not', 'work', 'end', 'buy', 'differ', 'phone'], ['got', 'phone', 'day', 'ago', 'far', 'good', 'except', 'not', 'get', 'connect', 'internet', 'problem', 'connect', 'not', 'go', 'web', 'page', 'phone', 'simpl', 'easi', 'love', 'phone', 'main', 'reason', 'buy'], ['bought', 'gift', 'someon', 'still', 'enjoy', 'known', 'issu', 'would', 'recommend', 'product', 'anyon', 'look', 'inexpens', 'phone', 'lot', 'featur'], ['tip', 'write', 'great', 'review', 'explain', 'like', 'dislik', 'product', 'compar', 'similar', 'product', 'share', 'long', 'use', 'product', 'identifi', 'specif', 'attribut', 'comfort', 'fit', 'shirt', 'batteri', 'life', 'camera', 'whether', 'met', 'expect', 'not', 'describ', 'seller', 'ship', 'experi', 'not', 'includ', 'promot', 'content', 'kind', 'review', 'written', 'exchang', 'compens'], ['unhappi', 'htc', 'sensat', 'take', 'forev', 'open', 'messag', 'board', 'forev', 'start', 'camera', 'keep', 'jam', 'freez', 'less', 'week', 'own', 'not', 'recommend', 'phone', 'anyon'], ['phone', 'worst', 'thing', 'ever', 'seen', 'entir', 'life', 'time', 'got', 'phone', 'key', 'not', 'work', 'basic', 'useless', 'not', 'use', 'spend', 'much', 'money'], ['send', 'duplic', 'piec', 'not', 'origin', 'htc', 'phone', 'even', 'sit', 'right', 'besid', 'phone', 'hear', 'noth'], ['great', 'packag', 'also', 'great', 'function', 'price', 'would', 'recommend', 'anyon'], ['bought', 'phone', 'wife', 'use', 'not', 'complain', 'far', 'way', 'iphon'], ['best', 'phone', 'ever', 'would', 'day', 'iphon', 'ill', 'pick', 'amaz', 'phone'], ['phone', 'need', 'work', 'well', 'gb', 'ram', 'memori', 'would', 'paid', 'doubl', 'price'], ['good', 'product', 'pleas', 'servic', 'good', 'product', 'pleas', 'servic', 'well'], ['htc', 'chacha', 'excit', 'good', 'text', 'web', 'brows', 'mani', 'thing', 'android'], ['like', 'phone', 'like', 'keyboard', 'perfect', 'not', 'like', 'touch', 'phone', 'charm', 'flaw', 'see', 'att', 'seller', 'not', 'say', 'product', 'inform', 'use', 'month', 'tmobil', 'misfortun', 'lost', 'not', 'work', 'data', 'plan', 'att', 'came', 'hous', 'without', 'wifi', 'internet', 'email', 'whatapp', 'reason', 'not', 'give', 'five', 'star'], ['husband', 'bought', 'mobil', 'use', 'brazil', 'work', 'fine', 'cell', 'phone', 'compani', 'tim', 'also', 'us', 'cell', 'phone', 'easi', 'handl', 'light', 'beauti', 'good', 'sound', 'qualiti', 'issu', 'got', 'relat', 'back', 'cover', 'need', 'remov', 'input', 'sim', 'card', 'sd', 'card', 'cover', 'hard', 'remov', 'take', 'normal', 'around', 'minut', 'open', 'not', 'big', 'issu', 'not', 'chang', 'tour', 'sim', 'card', 'sd', 'card', 'frequent', 'would', 'suggest', 'anoth', 'devic'], ['i', 'look', 'month', 'replac', 'bb', 'mous', 'burn', 'love', 'htc', 'first', 'angri', 'would', 'not', 'let', 'send', 'pictur', 'would', 'not', 'let', 'download', 'app', 'realiz', 'need', 'updat', 'sync', 'zune', 'stuff', 'comput', 'start', 'work', 'much', 'better', 'rock', 'great', 'sound', 'nice', 'video', 'take', 'great', 'pictur', 'run', 'fast', 'wifi', 'smooth', 'touchscreen', 'never', 'like', 'touchscreen', 'love', 'one', 'finger', 'big', 'problem', 'text'], ['bought', 'phone', 'nw', 'mess', 'big', 'time', 'freez', 'one', 'want', 'anyth', 'not', 'amazon', 'not', 'htc'], ['phone', 'ok', 'reciev', 'perfect', 'thing', 'want', 'know', 'batteri', 'life', 'hour', 'charg', 'everi', 'touch', 'screen', 'good', 'respons', 'take', 'time', 'everi', 'thing', 'not', 'problemunlok', 'phone', 'use', 'oper'], ['item', 'great', 'describ', 'phone', 'look', 'brand', 'new', 'amaz', 'not', 'familiar', 'window', 'phone', 'phone', 'great', 'devic', 'buy'], ['list', 'new', 'not', 'box', 'open', 'debri', 'phone', 'upon', 'insert', 'batteri', 'sim', 'card', 'phone', 'start', 'seem', 'promis', 'screen', 'immediat', 'went', 'black', 'result', 'press', 'power', 'button', 'consid', 'mayb', 'batteri', 'not', 'partial', 'charg', 'plug', 'phone', 'allow', 'charg', 'howev', 'amber', 'light', 'indic', 'charg', 'hour', 'check', 'would', 'still', 'not', 'power', 'remov', 'batter', 'sim', 'card', 'replac', 'tri', 'time', 'got', 'htc', 'screen', 'third', 'time', 'not', 'charm', 'absolutley', 'noth', 'not', 'realli', 'sure', 'reorder', 'not', 'return', 'tomorrow'], ['work', 'expect'], ['pictur', 'show', 'htc', 'touch', 'pro', 'european', 'phone', 'mean', 'not', 'verizon', 'sprint', 'alltel', 'say', 'htc', 'chrome', 'sent', 'brown', 'gold', 'version', 'second', 'camera', 'one', 'aw', 'excit', 'get', 'phone', 'paid', 'alot', 'sent', 'wrong', 'one'], ['great', 'phone', 'ship', 'much', 'faster', 'expect', 'seller', 'sent', 'extra', 'accessori', 'grate', 'love', 'product', 'mani', 'app', 'alreadi', 'buy', 'amazon'], ['la', 'mercancia', 'es', 'de', 'excelent', 'calidad', 'llego', 'tiempo', 'segun', 'lo', 'establecido', 'en', 'el', 'sistema', 'lo', 'recomiendo', 'venezuela'], ['got', 'excit', 'get', 'phone', 'find', 'within', 'minut', 'get', 'not', 'charg', 'need', 'phone', 'saw', 'good', 'review', 'never', 'buy', 'peopl', 'ever'], ['version', 'alway', 'tri', 'chang', 'softwar', 'soon', 'possibl', 'tri', 'not', 'buy', 'version'], ['last', 'week', 'order', 'cell', 'phone', 'htc', 'vivid', 'chose', 'one', 'day', 'ship', 'paid', 'dollar', 'rush', 'got', 'order', 'realiz', 'batteri', 'not', 'send', 'batteri', 'cell', 'phone', 'charger', 'batteri', 'hate', 'ruin', 'day'], ['got', 'phone', 'girlfriend', 'purchas', 'phone', 'read', 'review', 'definit', 'expext', 'high', 'recommend', 'phone'], ['love', 'fast', 'phone', 'abil', 'run', 'ton', 'app', 'time', 'lag', 'run', 'spotifi', 'constant', 'memori', 'hog', 'lag', 'whatsoev', 'also', 'problem', 'get', 'phone', 'work', 'straighttalk', 'network'], ['love', 'phone', 'much', 'great', 'buy', 'noth', 'wrong', 'phone', 'not', 'want', 'iphon', 'great', 'phone', 'well'], ['excel', 'sleek', 'smart', 'phone', 'nice', 'featur', 'requir', 'quit', 'light', 'design', 'appear', 'nice'], ['excel'], ['phone', 'amaz', 'camera', 'genial', 'quik', 'beutiful', 'resiten', 'good', 'price', 'shipper', 'galaxi', 'mini', 'much'], ['tri', 'mani', 'occas', 'take', 'screenshot', 'phone', 'not', 'allow', 'appear', 'type', 'htc', 'peculiar', 'second', 'type', 'first', 'problem', 'regard', 'heat', 'heat', 'appli', 'function', 'well', 'not', 'take', 'screen', 'shot', 'get', 'use', 'phone', 'goe', 'desir', 'freez', 'suck', 'tri', 'make', 'call', 'send', 'messag', 'sent', 'sever', 'report', 'devic', 'manufactur', 'chang', 'devic'], ['good'], ['aunqu', 'el', 'equipo', 'tenia', 'garantia', 'en', 'niguna', 'nota', 'desia', 'que', 'era', 'reconstruido', 'estoy', 'conform', 'con', 'el', 'producto'], ['phone', 'longer', 'power', 'week', 'use', 'sent', 'back', 'htc', 'repair', 'almost', 'month', 'not', 'even', 'singl', 'feedback', 'onlin', 'search', 'saw', 'common', 'problem', 'htc', 'sensat'], ['phone', 'pretti', 'real', 'smart', 'thing', 'not', 'great', 'batteri', 'not', 'last', 'hour', 'moder', 'usag'], ['htc', 'excel', 'phone', 'price', 'worth', 'easi', 'handl', 'fast', 'great', 'camera', 'incred', 'hd', 'video', 'high', 'recommend', 'find', 'android', 'applic', 'anywher', 'not', 'anyth', 'envi', 'iphon'], ['good'], ['worst', 'supplier', 'everi', 'bought', 'phone', 'less', 'month', 'batteri', 'compart', 'start', 'fall', 'apart', 'everi', 'time', 'open', 'phone', 'smell', 'like', 'burn', 'sim', 'card', 'email', 'supplier', 'one', 'respond', 'took', 'care', 'would', 'never', 'recommend', 'supplier', 'not', 'buy', 'phone'], ['mal', 'pantalla', 'rota'], ['eager', 'await', 'arriv', 'phone', 'not', 'live', 'america', 'took', 'get', 'excit', 'final', 'arriv', 'howev', 'never', 'stay', 'long', 'enough', 'much', 'time', 'shut', 'hard', 'time', 'get', 'back', 'look', 'solut', 'onlin', 'tri', 'avail', 'phone', 'tech', 'look', 'luck', 'not', 'expect', 'would', 'advis', 'anyon', 'consid', 'phone', 'tri', 'someth', 'els'], ['realli', 'like', 'phone', 'well', 'built', 'much', 'smart', 'phone', 'work', 'outsid', 'drop', 'water', 'mud', 'ever', 'keep', 'work', 'side', 'p', 'resolut', 'wish', 'would', 'got', 'star', 'would', 'buy', 'recommend', 'phone'], ['bought', 'phone', 'dad', 'coupl', 'month', 'ago', 'start', 'malfunct', 'screen', 'freez', 'half', 'incom', 'call', 'drop', 'time', 'want', 'return', 'alreadi', 'past', 'return', 'deadlin'], ['excel', 'product'], ['excel'], ['see', 'get', 'simpli', 'imho', 'best', 'phone', 'price', 'rang', 'get', 'featur', 'pricey', 'phone', 'catch', 'limit', 'ram', 'mean', 'app', 'run', 'background', 'slow', 'phone', 'get', 'even', 'unrespons', 'manag', 'run', 'whatsapp', 'facebook', 'messeng', 'googl', 'hangout', 'instagram', 'skype', 'twitter', 'sad', 'facebook', 'heavi', 'decid', 'disabl', 'respons', 'improv', 'lot', 'instal', 'open', 'advanc', 'task', 'app', 'kill', 'unnecessari', 'process', 'keep', 'room', 'ram'], ['pleas', 'product', 'expect', 'buy', 'confid', 'team', 'excel'], ['ha', 'tardado', 'demasiado', 'en', 'llegar'], ['excel'], ['excelent'], ['ok', 'price', 'work', 'nice'], ['love', 'phone', 'friend', 'recommend', 'i', 'pleas'], ['excel'], ['magnif'], ['buena'], ['think', 'defect', 'someth', 'not', 'upload', 'pic', 'fast', 'phone', 'not', 'googl', 'play', 'store', 'get', 'game', 'widget', 'etc'], ['excel', 'phone', 'price', 'great', 'featur'], ['favorit', 'phone', 'ever', 'foremost', 'internet', 'expert', 'everyth', 'go', 'smartphon', 'like', 'charli', 'sheen', 'goe', 'pornstar', 'girlfriend', 'also', 'use', 'sever', 'immedi', 'stop', 'search', 'new', 'phone', 'buy', 'intellectu', 'compet', 'enough', 'perform', 'flash', 'appreci', 'long', 'batteri', 'life', 'great', 'price', 'would', 'not', 'trade', 'iphon', 'honest', 'gorgeous', 'theme', 'beauti', 'ui', 'use', 'att', 'work', 'perfect'], ['bought', 'phone', 'batteri', 'life', 'receiv', 'yesterday', 'charg', 'play', 'bit', 'let', 'compani', 'phone', 'still', 'use', 'today', 'return', 'lunch', 'home', 'batteri', 'without', 'use', 'yesterday', 'night', 'batteri', 'drop', 'mention', 'also', 'cheap', 'qualiti', 'feel', 'complet', 'form', 'return', 'sent', 'disappoint'], ['huawei', 'phone', 'own', 'fusion', 'ascend', 'mate', 'mate', 'could', 'not', 'happier', 'phone', 'way', 'smart', 'phone', 'expert', 'quit', 'bit', 'research', 'decid', 'one', 'price', 'not', 'think', 'possibl', 'get', 'better', 'phone', 'advic', 'would', 'go', 'site', 'research', 'price', 'phone', 'batteri', 'life', 'great', 'experi', 'respons', 'favor', 'camera', 'qualiti', 'work', 'though', 'not', 'rate', 'top', 'line', 'pop', 'microsd', 'got', 'work', 'qualm', 'lte', 'band', 'phone', 'use', 'use', 'phone', 'consum', 'cellular', 'piggyback', 'area', 'believ', 'band', 'common', 'lte', 'band', 'howev', 'phone', 'not', 'connect', 'big', 'fan', 'huawei', 'happi', 'product', 'valu'], ['work', 'great', 'par', 'flagship', 'great', 'signal', 'recept', 'dalla', 'area', 'fluid', 'eleg', 'lollipop', 'tini', 'bezel', 'one', 'best', 'look', 'market', 'happi', 'phone', 'i', 'phone', 'someth', 'come', 'realli', 'good', 'spec', 'size', 'nice', 'aesthet', 'realli', 'realli', 'good', 'camera', 'not', 'see', 'new', 'flagship', 'one', 'yet', 'mate', 'design', 'qualiti', 'function', 'best'], ['updat', 'initi', 'thought', 'kirin', 'cpu', 'slower', 'snapdragon', 'onlin', 'review', 'show', 'kirin', 'faster', 'snapdragon', 'make', 'happi', 'mate', 'default', 'power', 'scheme', 'power', 'saver', 'might', 'save', 'batteri', 'bit', 'not', 'use', 'full', 'power', 'cpu', 'set', 'full', 'power', 'sacrific', 'littl', 'standbi', 'time', 'big', 'respons', 'time', 'happi', 'mate', 'owner', 'alway', 'like', 'big', 'screen', 'phone', 'awesom', 'phone', 'meet', 'want', 'big', 'phone', 'con', 'might', 'perform', 'per', 'core', 'might', 'not', 'great', 'snapdragon', 'not', 'slow', 'much'], ['phone', 'forget', 'lg', 'phone', 'samsung', 'best', 'phone', 'money', 'buy', 'awesom', 'batteri', 'life', 'still', 'flagship', 'phone', 'even', 'extrem', 'snappi', 'lag'], ['amaz', 'batteri', 'long', 'ever', 'serious', 'concern', 'non', 'standard', 'android', 'interfac', 'well', 'better', 'nake', 'android', 'folk', 'love', 'aspect', 'screen', 'digit', 'fingerprint', 'id', 'access'], ['not', 'geek', 'highend', 'gpu', 'game', 'overh', 'batteri', 'killer', 'better', 'choic'], ['great', 'product'], ['cell', 'phone', 'bad'], ['not', 'recommend', 'product', 'buy', 'two', 'differ', 'vendedor', 'batteri', 'failur', 'alon', 'without', 'reason'], ['like', 'phone', 'much', 'beauti', 'design', 'thin', 'great', 'build', 'qualiti', 'ui', 'kind', 'copi', 'io', 'actual', 'pretti', 'concis', 'gps', 'work', 'great', 'display', 'great', 'even', 'sunshin', 'especi', 'satisfi', 'camera', 'photo', 'qualiti', 'whole', 'system', 'work', 'smooth', 'good', 'job', 'huawei'], ['exel'], ['great', 'phone', 'realli', 'like', 'expect'], ['headset', 'miss', 'not', 'came', 'phone'], ['start', 'well', 'start', 'malfunct', 'today', 'manag', 'complet', 'ruin', 'sd', 'card', 'eras', 'everyth', 'button', 'not', 'even', 'work', 'well', 'app', 'freez', 'receiv', 'phone', 'call', 'type', 'messag', 'hardest', 'thing', 'phone', 'work', 'well', 'one', 'month', 'look', 'good', 'first', 'month', 'feel', 'like', 'wast', 'money', 'time', 'not', 'even', 'return', 'anymor', 'sever', 'time', 'wish', 'could', 'bash', 'wall', 'not', 'usual', 'phone', 'use', 'communic', 'import', 'wast', 'invest', 'bought', 'worth', 'right', 'dear', 'wast'], ['say', 'tlf', 'specif', 'not', 'espeñold', 'languag', 'laid', 'not', 'purchas', 'live', 'venezuela', 'not', 'use'], ['excel', 'cost', 'reason'], ['love'], ['phone', 'not', 'come', 'spanish', 'problem'], ['excel', 'product'], ['great', 'product'], ['excel', 'thank', 'everyth'], ['batteri', 'get', 'hot', 'not', 'enought', 'memori'], ['excel', 'respons', 'first'], ['excel'], ['excel', 'product', 'work', 'well', 'venezuela', 'good', 'fast', 'servic'], ['excel'], ['work', 'nice', 'travel', 'coverag', 'us', 'quit', 'limit', 'restrict', 'us', 'provid', 'product', 'well', 'design', 'batteri', 'life', 'good'], ['work', 'well', 'afghanistan', 'roshan', 'network', 'easi', 'set', 'use', 'big', 'bundl', 'data', 'packag'], ['travel', 'intern', 'avail', 'need', 'internet', 'access', 'without', 'usb', 'stick', 'instal', 'driver', 'may', 'devic', 'not', 'usb', 'like', 'tablet', 'smart', 'phone', 'great', 'littl', 'devic', 'use', 'wan', 'access', 'point', 'lan', 'access', 'point', 'benefit', 'separ', 'devic', 'keep', 'next', 'window', 'somewher', 'strong', 'consist', 'signal', 'laptop', 'sit', 'want', 'recharg', 'batteri', 'last', 'good', 'hour', 'not', 'provid', 'charger', 'port', 'use', 'charg', 'huawei', 'app', 'avail', 'io', 'android', 'help', 'set', 'manag', 'seem', 'part', 'base', 'sim', 'card', 'discov', 'gsm', 'provid', 'apn', 'one', 'thing', 'configur', 'dns', 'server', 'could', 'access', 'internet', 'download', 'app', 'phone', 'use', 'undocu', 'function', 'put', 'devic', 'mode', 'turn', 'inact', 'not', 'access', 'configur', 'number', 'ethernet', 'port', 'devic', 'nice', 'plus', 'singl', 'ethernet', 'cabl', 'avail', 'provid', 'internet', 'connect', 'sever', 'peopl', 'need', 'use', 'meet', 'use', 'devic', 'allow', 'peopl', 'share', 'ethernet', 'via', 'wifi', 'peopl', 'get', 'wifi', 'not', 'need', 'ethernet', 'cheaper', 'model', 'devic', 'wifi', 'signal', 'strong', 'within', 'room', 'drop', 'move', 'next', 'room', 'ssid', 'password', 'network', 'encrypt', 'key', 'note', 'insid', 'batteri', 'cover', 'use', 'littl', 'thing', 'need', 'cheap', 'internet', 'access', 'oversea', 'period', 'time', 'abil', 'obtain', 'sim', 'card', 'charg', 'data', 'plan'], ['get', 'better', 'signal', 'share', 'across', 'recommend', 'friend', 'bought', 'previous', 'version', 'one', 'power'], ['great', 'devic'], ['excelent'], ['esperé', 'cerca', 'de', 'un', 'mes', 'mi', 'smartphon', 'enviaron', 'una', 'cubierta', 'espero', 'mi', 'teléfono', 'reintegren', 'mi', 'dineroi', 'wait', 'month', 'smartphon', 'sent', 'cover', 'hope', 'phone', 'money', 'reintegr'], ['product', 'well', 'made', 'high', 'end', 'qualiti', 'excel', 'packag', 'safe', 'shipment', 'recommend', 'came', 'estim', 'time', 'arriv', 'date', 'respons', 'reliabl', 'seller', 'thank'], ['arriv', 'time', 'fedex', 'look', 'like', 'phone', 'real', 'thing', 'imei', 'came', 'back', 'clear', 'decent', 'price', 'dollar', 'buy', 'straight', 'googl', 'not', 'live', 'side', 'us'], ['almost', 'perfect', 'nice', 'design', 'good', 'screen', 'fingerprint', 'sensor', 'sd', 'card', 'con', 'ui', 'not', 'smooth', 'compar', 'iphon', 'android', 'phone'], ['phone', 'anyon', 'sick', 'pay', 'someth', 'break', 'year'], ['bought', 'amazon', 'one', 'day', 'explor', 'realiz', 'not', 'wifi', 'call', 'featur', 'like', 'android', 'phone', 'insid', 'build', 'basement', 'not', 'cell', 'signal', 'screw', 'serious', 'consid', 'return', 'phone', 'amazon'], ['not', 'buy', 'phone', 'advertis', 'unlock', 'not', 'believ', 'said', 'could', 'contact', 'huawei', 'unlock', 'bootload', 'fals', 'wish', 'could', 'return', 'buy', 'phone', 'support', 'stuck', 'ota', 'futur', 'yet', 'amazon', 'still', 'sell', 'phone', 'know', 'app', 'never', 'work', 'phone', 'longer', 'support'], ['easili', 'best', 'big', 'screen', 'smartphon', 'budget', 'market', 'right', 'scoff', 'display', 'inch', 'screen', 'forget', 'monitor', 'far', 'larger', 'either', 'resolut', 'stretch', 'display', 'look', 'sharp', 'book', 'requir', 'ppi', 'screen', 'obvious', 'x', 'huawei', 'use', 'jdi', 'panel', 'offer', 'one', 'sharpest', 'experi', 'ip', 'panel', 'lower', 'energi', 'cost', 'slim', 'bezel', 'side', 'make', 'grip', 'phone', 'firm', 'lest', 'drop', 'tri', 'not', 'cover', 'part', 'screen', 'thumb', 'not', 'make', 'use', 'auto', 'bright', 'find', 'lower', 'screen', 'bright', 'much', 'darker', 'room', 'tend', 'stick', 'screen', 'phone', 'compris', 'either', 'plastic', 'side', 'glossi', 'smooth', 'finish', 'back', 'cover', 'fine', 'grippi', 'textur', 'plastic', 'think', 'polycarbon', 'back', 'camera', 'aperatur', 'camera', 'poor', 'low', 'light', 'need', 'flash', 'help', 'brighten', 'scene', 'front', 'camera', 'equal', 'problem', 'ideal', 'subject', 'diffus', 'light', 'sourc', 'shine', 'otherwis', 'hard', 'frontal', 'light', 'harsh', 'backlight', 'result', 'fuzzi', 'excel', 'often', 'get', 'full', 'bar', 'lte', 'least', 'less', 'satur', 'lte', 'area', 'gps', 'work', 'great', 'usual', 'get', 'solid', 'lock', 'within', 'second', 'bluetooth', 'good', 'mediocr', 'fast', 'pair', 'howev', 'android', 'version', 'ship', 'suffer', 'audio', 'video', 'sync', 'issu', 'stream', 'video', 'audio', 'usual', 'fast', 'second', 'hope', 'futur', 'updat', 'kitkat', 'resolv', 'life', 'downright', 'spectacular', 'i', 'multitask', 'self', 'profess', 'power', 'user', 'easili', 'squeez', 'day', 'singl', 'charg', 'mean', 'hour', 'standbi', 'time', 'sleep', 'hour', 'game', 'hour', 'stream', 'video', 'hour', 'stream', 'audio', 'hour', 'web', 'surf', 'email', 'end', 'usual', 'still', 'charg', 'left'], ['phone', 'week', 'absolut', 'love', 'home', 'lock', 'screen', 'decid', 'freez', 'complet', 'spaz', 'i', 'done', 'restart', 'rememb', 'request', 'refund'], ['love', 'huawei', 'ascend', 'mate', 'get', 'day', 'heavi', 'usag', 'hour', 'screen', 'not', 'not', 'spend', 'lot', 'money', 'phone', 'big', 'screen', 'huawei', 'way', 'use', 'att', 'get', 'lte', 'everi', 'pop', 'ur', 'micro', 'sim', 'card', 'readi', 'go', 'not', 'mess', 'apn', 'set', 'work', 'right', 'box'], ['phone', 'batteri', 'long', 'time', 'reason', 'bought', 'first', 'place', 'howev', 'screen', 'bright', 'not', 'chang', 'whether', 'dark', 'room', 'sun', 'total', 'fine', 'night', 'bright', 'sun', 'geez', 'cover', 'screen', 'hand', 'make', 'dark', 'order', 'read', 'anyth', 'liter', 'not', 'read', 'anyth', 'screenif', 'sun', 'henc', 'two', 'star'], ['bought', 'phone', 'say', 'unlock', 'get', 'block'], ['nice', 'smart', 'phone', 'plus', 'batteri', 'life', 'best', 'market', 'lte', 'unlock', 'phone'], ['far', 'phone', 'amaz', 'i', 'not', 'techi', 'knew', 'get', 'great', 'phone', 'batteri', 'life', 'amazebal', 'phone', 'two', 'day', 'moder', 'use', 'left', 'includ', 'youtub', 'watch', 'larg', 'heavi', 'use', 'like', 'phablet', 'meant', 'mate', 'android', 'upgrad', 'platform', 'bare', 'bone', 'burn', 'clean', 'sleek', 'like', 'display', 'amaz', 'i', 'hand', 'blu', 'life', 'pure', 'xl', 'today', 'far', 'batteri', 'not', 'handl', 'amaz', 'light', 'cute', 'ui', 'sloppi', 'chili', 'bother', 'plus', 'not', 'get', 'nice', 'case', 'blu', 'love', 'mate'], ['phone', 'stellar', 'love'], ['great', 'phone', 'bought', 'dad', 'think', 'get', 'one'], ['great', 'phone', 'complain'], ['got', 'phone', 'sister', 'peac', 'corp', 'zambia', 'got', 'said', 'great', 'batteri', 'life', 'go', 'multipl', 'day', 'without', 'need', 'charg', 'side', 'note', 'hard', 'time', 'batteri', 'life', 'well', 'weird', 'thing', 'softwar', 'updat', 'fine'], ['excelent'], ['not', 'go', 'iphon', 'android', 'like', 'unless', 'brave', 'phone', 'rock', 'amaz', 'batteri', 'life', 'crappi', 'cover', 'though', 'get', 'better'], ['screen', 'huge', 'critic', 'may', 'nit', 'pick', 'ppi', 'screen', 'resolut', 'unless', 'becom', 'anal', 'look', 'phone', 'inch', 'yes', 'may', 'notic', 'minor', 'pixel', 'phone', 'meet', 'even', 'exceed', 'high', 'end', 'phone', 'cost', 'twice', 'amount', 'thing', 'notic', 'phone', 'support', 'lte', 'extrem', 'googl', 'map', 'blast', 'abl', 'scroll', 'zoom', 'lag', 'load', 'batteri', 'humong', 'replac', 'take', 'phone', 'apart', 'phone', 'last', 'hour', 'box', 'hard', 'qualiti', 'camera', 'mode', 'option', 'actual', 'work', 'automat', 'shoot', 'smile', 'quick', 'respons'], ['far', 'phone', 'everyth', 'could', 'ask', 'oper', 'like', 'galaxi', 'note', 'fraction', 'price', 'get', 'recept', 'place', 'iphon', 'not'], ['good', 'phone'], ['perfect', 'product', 'screen', 'big', 'even', 'read', 'pdf', 'paper', 'batteri', 'super', 'strong', 'also', 'interest', 'softwar', 'instal', 'torch', 'use', 'flash', 'light', 'torch'], ['great', 'big', 'phone', 'peopl', 'mistaken', 'iphon', 'plus', 'love', 'phone', 'huge', 'screen', 'play', 'game', 'use', 'mani', 'hour', 'best', 'part', 'singl', 'charg', 'use', 'two', 'day', 'issu', 'phone', 'need', 'phone', 'powerhous', 'need', 'sinc', 'i', 'phone', 'time', 'batteri', 'lot', 'long', 'time', 'cpu', 'work', 'great', 'pictur', 'qualiti', 'realli', 'crisp', 'phone', 'good', 'fianc', 'jealous', 'buy', 'one'], ['great', 'phone'], ['nice', 'telephon', 'price', 'rang', 'solid', 'recepción', 'big', 'screen', 'camera', 'not', 'extrem', 'clear', 'pictur', 'movi', 'usabl', 'take', 'mind', 'mid', 'rang', 'cel', 'phone', 'overal', 'excel', 'featur', 'price', 'question', 'user', 'manufactur', 'said', 'hold', 'maximun', 'gb', 'micro', 'sim', 'car', 'heard', 'mani', 'user', 'put', 'samsung', 'class', 'evo', 'microcard', 'work', 'real', 'good', 'someon', 'input', 'thankful'], ['receiv', 'mate', 'yesterday', 'absolut', 'love', 'lag', 'clear', 'beauti', 'screen', 'hard', 'put', 'put', 'adw', 'launcher', 'work', 'like', 'charm', 'app', 'drawer'], ['second', 'cell', 'phoe', 'huawei', 'mate', 'ii', 'love'], ['best', 'phone', 'ever', 'say', 'i', 'purchas', 'understand', 'metal', 'worker', 'metal', 'abras', 'dust', 'get', 'insid', 'kind', 'phone', 'buy', 'kill', 'speaker', 'microphon', 'keep', 'come', 'back', 'one', 'ridicul', 'long', 'batteri', 'life', 'i', 'gone', 'almost', 'day', 'without', 'charg', 'yeah'], ['junk', 'not', 'buy', 'not', 'take', 'charg', 'useless', 'brick'], ['great', 'phone', 'equal', 'phone', 'price', 'time', 'higher'], ['great', 'phone', 'great', 'batteri', 'life'], ['best', 'market', 'excel', 'product', 'top', 'old', 'samsung', 'not', 'imagin', 'buy', 'iphon', 'one', 'quick', 'easi', 'oper', 'batteri', 'best', 'market', 'display', 'function', 'top', 'anyth', 'take', 'great', 'pictur', 'memori', 'gb', 'card', 'money', 'one'], ['took', 'pretti', 'well'], ['durabl', 'batteri'], ['nice', 'phone', 'money', 'purchas', 'phone', 'primarili', 'batteri', 'life', 'amaz', 'constant', 'charg', 'older', 'iphon', 'time', 'daili', 'price', 'steal', 'photo', 'qualiti', 'best', 'older', 'iphon', 'despit', 'resolut', 'still', 'look', 'good', 'nake', 'eye', 'dollar', 'not', 'go', 'wrong'], ['great'], ['nice', 'android', 'phone', 'super', 'larg', 'screen', 'batteri', 'lower', 'price', 'although', 'think', 'iphon', 'ui', 'faster', 'better', 'android', 'think', 'price', 'get', 'high', 'cost', 'perform', 'phone', 'compar', 'android', 'news', 'indic', 'mate', 'abl', 'upgrad', 'version', 'first', 'half', 'year', 'use', 'galaxi', 'one', 'year', 'time', 'purchas', 'money', 'mate', 'daili', 'use', 'not', 'find', 'someth', 'better', 'realli', 'worthi', 'high', 'price', 'attach', 'pic', 'iphon'], ['phone', 'phone', 'everyth', 'see', 'everyth', 'eas', 'say', 'wow', 'thank', 'everyth', 'came', 'right', 'time', 'jerri', 'ellison', 'first', 'phone', 'compani', 'made', 'jump', 'deal', 'fast', 'make', 'good', 'stuff'], ['peopl', 'drool'], ['amaz'], ['phone', 'work', 'perfect', 'cricket', 'speed', 'app', 'open'], ['like', 'thing', 'improv', 'upon', 'speed', 'good', 'drop', 'far', 'not', 'break', 'someon', 'small', 'may', 'not', 'best', 'technic', 'thing', 'i', 'see', 'not', 'read', 'manual', 'nokia', 'video', 'not', 'see', 'video', 'call', 'featur', 'would', 'download', 'app', 'call', 'volum', 'put', 'call', 'speaker', 'realli', 'hear', 'big', 'uncomfort', 'hold', 'ear', 'also', 'unabl', 'download', 'text', 'messag', 'peopl', 'keep', 'say', 'could', 'not', 'receiv', 'give', 'internet', 'great', 'batteri', 'life', 'also', 'built', 'lastest', 'updat', 'instal', 'pictur', 'qualiti', 'much', 'better', 'updat', 'pictur', 'dull', 'not', 'look', 'like', 'taken'], ['like', 'awesom', 'fan', 'android', 'not', 'bound', 'contract', 'resal', 'valu', 'phone', 'chang', 'mind', 'though', 'keep', 'mind', 'phone', 'hopper', 'love', 'often', 'not', 'lot', 'option', 'flip', 'case', 'phone', 'recommend', 'flip', 'case', 'make', 'easier', 'carri', 'phone', 'small', 'purs', 'essenti', 'card', 'cash', 'touchscreen', 'respons', 'work', 'fair', 'well', 'daylight', 'batteri', 'realli', 'last', 'two', 'day', 'screen', 'crisp', 'clear', 'howev', 'lost', 'crisp', 'compar', 'know', 'upfront', 'like', 'notic', 'come', 'phone', 'size', 'peopl', 'not', 'like', 'stock', 'interfac', 'like', 'like', 'could', 'tweak', 'bit', 'stuck', 'font', 'not', 'bad', 'thing', 'found', 'signal', 'strong', 'bar', 'phone', 'bar', 'tether', 'work', 'great', 'not', 'way', 'encrypt', 'phone', 'not', 'phone', 'anyth', 'would', 'want', 'secur', 'phone', 'i', 'go', 'best', 'peopl', 'want', 'larg', 'phone', 'abil', 'read', 'webpag', 'email', 'effortless', 'game', 'not', 'phone', 'resal', 'not', 'lack', 'resal', 'valu', 'lack', 'clariti', 'fan', 'boy', 'fan', 'girl', 'review', 'peopl', 'not', 'think', 'fun', 'mod', 'thing', 'review', 'averag', 'person', 'want', 'relat', 'inexpens', 'contract', 'avail', 'app', 'android', 'case', 'use', 'huawei', 'ascend', 'mate', 'case', 'demomm', 'tm', 'flip', 'pu', 'leather', 'wallet', 'case', 'holder', 'cover', 'stand', 'slot', 'card', 'huawei', 'ascend', 'mate', 'ii'], ['father', 'like'], ['great'], ['could', 'not', 'say', 'enough', 'phone', 'everyth', 'samsung', 'iphon', 'part', 'reason', 'price', 'size', 'perfect', 'batteri', 'last', 'forev', 'use', 'phone', 'lot', 'batteri', 'last', 'day', 'easili', 'overal', 'fantast', 'purchas', 'take', 'great', 'pictur', 'pictur', 'qualiti', 'top', 'notch', 'also', 'blurr', 'resist', 'previous', 'phone', 'give', 'one', 'high', 'recommend', 'come', 'receiv', 'amaz', 'review', 'wall', 'street', 'journal', 'glove', 'mail'], ['still', 'new', 'want', 'say', 'bought', 'msd', 'phone', 'recogn', 'samsung', 'sd', 'card', 'amazon', 'class'], ['expect', 'price', 'recommend', 'fellow', 'friend'], ['excel', 'phone', 'camera', 'could', 'better', 'otherwis', 'excel'], ['phone', 'problem', 'lock', 'touch', 'screen', 'unknown', 'reason', 'reboot', 'sever', 'time', 'useabl'], ['screen', 'defect', 'way', 'return'], ['great', 'phone', 'great', 'batteri', 'life', 'smooth', 'interfac', 'lollipop', 'best', 'phone', 'i', 'seen'], ['excel', 'long', 'time', 'batteri', 'fast', 'us', 'mexico', 'camera', 'good', 'front', 'back', 'not', 'use', 'tablet', 'check', 'processor', 'fasti', 'tri', 'buy', 'anoth', 'day', 'deliveri', 'much'], ['use', 'daili'], ['love', 'phone', 'bought', 'hubbi', 'complain', 'big', 'love'], ['best', 'phone', 'ever', 'one', 'not', 'worri', 'brand', 'name', 'would', 'not', 'trade', 'phone', 'anyth', 'except', 'cpu', 'power', 'ram', 'storag', 'bigger', 'screen', 'believ', 'max', 'i', 'consid', 'get', 'one', 'not', 'nfc', 'never', 'need', 'use', 'yes', 'not', 'heart', 'rate', 'puls', 'sensor', 'fitbit', 'much', 'bell', 'whistl', 'phone', 'devic', 'alreadi', 'want', 'pay', 'phone', 'get', 'rememb', 'phone', 'break', 'lose', 'everyth', 'phone', 'break', 'fitbit', 'still', 'run', 'bell', 'whistl'], ['new', 'champion', 'mate', 'fantast', 'phone', 'blaze', 'fast', 'samsung', 'loyalist', 'lol', 'huawei', 'new', 'top', 'dog', 'seller', 'excel', 'deliveri'], ['need', 'iphon', 'qualiti', 'offer', 'incompar', 'price', 'huawei'], ['artiv', 'expect', 'time', 'phone', 'good', 'worri', 'ip', 'screen', 'use', 'amol', 'screen', 'realli', 'surpris', 'ip', 'way', 'better', 'inch', 'screenlong', 'last', 'batteryquick', 'chargingfastest', 'processorfingerprint', 'reader', 'accuratecam', 'phone', 'cover', 'screen', 'protector', 'metal', 'ram', 'not', 'enough', 'clear', 'memorycamera', 'averag', 'especi', 'video', 'bad', 'dim', 'lightsroot', 'complex', 'use', 'root', 'phone', 'customis'], ['one', 'best', 'phone'], ['thing', 'not', 'read', 'chiness', 'navig', 'stuff', 'chiness', 'not', 'understand', 'phone', 'great', 'softwar', 'program', 'shuld', 'english', 'sinc', 'american', 'user'], ['amaz', 'phone', 'fast', 'set', 'even', 'easier', 'work', 'well', 'lte', 'nice', 'packag', 'also', 'univers', 'wall', 'adapt', 'charg', 'charg', 'phone', 'hour', 'phone', 'last', 'day', 'good', 'qualiti', 'phone', 'easi', 'use', 'would', 'recommend'], ['absolut', 'fantast', 'phone', 'want', 'qualiti', 'phone', 'realli', 'good', 'camera', 'one', 'mani', 'featur', 'yet', 'see', 'phone', 'camera', 'take', 'smart', 'speci', 'beauti', 'shot', 'slum', 'face', 'desir', 'even', 'profession', 'set', 'friend', 'see', 'phone', 'awe', 'yet', 'find', 'undesir', 'less', 'stellar', 'featur', 'phone', 'glad', 'got', 'samsung', 'bandwagon', 'price', 'save', 'hundr', 'dollar', 'win', 'win'], ['big', 'phone', 'mean', 'massiv', 'ad', 'bazel', 'black', 'invis', 'screen', 'bazel', 'top', 'bottom', 'pictur', 'tend', 'minim', 'big', 'time', 'get', 'product', 'disappoint', 'word', 'buy', 'phone', 'bazel', 'top', 'bottom', 'appear', 'slim', 'actual', 'not', 'great', 'disappoint', 'mate', 'impress', 'lost', 'faith', 'huawei', 'along', 'samsung', 'appl', 'innov', 'far', 'design', 'goe', 'also', 'custom', 'servic', 'us', 'buyer', 'disappoint', 'product', 'end', 'fool', 'stuck', 'phone', 'massiv', 'bazel', 'despit', 'buy', 'sole', 'avoid'], ['good', 'phone', 'reason', 'not', 'understand', 'freez', 'sometim'], ['california', 'give', 'g', 'network', 'sick', 'love', 'phone', 'tri', 'compani', 'give', 'want', 'want', 'money', 'back'], ['receiv', 'phone', 'describ', 'nice', 'call', 'attent', 'att', 'abl', 'get', 'servic', 'phone', 'get', 'connect', 'good', 'bought', 'googl', 'alreadi', 'instal', 'paid', 'extra', 'imag', 'clear', 'pictur', 'clear', 'well', 'love', 'use', 'school', 'well', 'connect', 'car', 'easi', 'love'], ['second', 'mediapad', 'love', 'phone'], ['screen', 'size', 'realli', 'decent', 'phone', 'superior', 'qualiti', 'drawback', 'lack', 'support', 'att'], ['great', 'phone', 'price', 'i', 'own', 'thousand', 'devic', 'one', 'far', 'favorit', 'look', 'great', 'color', 'got', 'aluminum', 'gold', 'case', 'realli', 'want', 'gold', 'would', 'cost', 'extra', 'phone', 'beat', 'big', 'phone', 'also', 'fair', 'light', 'run', 'strong', 'android', 'nougat', 'huge', 'upgrad', 'date', 'lg'], ['littl', 'larger', 'expect', 'still', 'worth', 'price', 'updat', 'android', 'work', 'perfect', 'far'], ['nexus', 'amaz', 'phone', 'wari', 'intern', 'version', 'vs', 'us', 'version', 'want', 'use', 'googl', 'amaz', 'network', 'project', 'fi', 'like', 'sad', 'disappoint', 'intern', 'version', 'not', 'compat', 'project', 'fi', 'confirm', 'project', 'fi', 'support', 'cours', 'better', 'purchas', 'direct', 'project', 'fi', 'sinc', 'price', 'gb', 'version', 'sinc', 'also', 'come', 'sim', 'card', 'pay', 'tax', 'amazon', 'not', 'howev', 'look', 'realli', 'great', 'smartphon', 'bring', 'whatev', 'plan', 'definit', 'go', 'head', 'though', 'price', 'get', 'much', 'better', 'spec', 'phone', 'oneplus', 'howev', 'oneplus', 'work', 'believ', 'cellular', 'network', 'keep', 'mind', 'would', 'gone', 'not', 'sprint'], ['awesom', 'use', 'phone', 'month', 'great', 'price', 'great'], ['not', 'live', 'expect', 'exceed', 'brand', 'new', 'box', 'phone', 'work', 'incred'], ['phone', 'arriv', 'quick', 'work', 'great', 'charger', 'not', 'work', 'expect', 'sinc', 'not', 'usa', 'compat'], ['excel', 'phone', 'beauti', 'littl', 'problem', 'color', 'seller', 'quick', 'solv'], ['good', 'product'], ['speaker', 'stop', 'work', 'week', 'seller'], ['amaz', 'phone', 'deliveri', 'time', 'phone', 'legit', 'wifi', 'problem', 'mine', 'hope', 'get', 'fix', 'updat', 'otherwis', 'perfect'], ['worst', 'phone', 'custom', 'servic', 'bad', 'audio', 'batteri', 'devic', 'screen', 'issu', 'not'], ['terribl', 'camera', 'get', 'hot', 'cpu', 'throttl', 'lag', 'cool'], ['awesom', 'phone', 'could', 'not', 'happier', 'everyth', 'want', 'smartphon', 'well'], ['even', 'though', 'phone', 'year', 'old', 'i', 'still', 'satisfi', 'perform', 'everyth', 'butteri', 'smooth', 'origin', 'think', 'get', 'pixel', 'xl', 'howev', 'due', 'expens', 'price', 'tag', 'opt', 'get', 'i', 'glad', 'made', 'decis', 'love', 'size', 'screen', 'great', 'speaker', 'regard', 'camera', 'i', 'still', 'test', 'far', 'would', 'give', 'first', 'time', 'own', 'googl', 'phone', 'definit', 'not', 'last'], ['second', 'huawei', 'phone', 'two', 'year', 'beauti', 'product', 'think', 'better', 'brand', 'phone', 'sell', 'twice', 'much', 'major', 'nation', 'carrier'], ['second', 'huawei', 'phone', 'two', 'year', 'beauti', 'product', 'think', 'better', 'brand', 'phone', 'sell', 'twice', 'much', 'major', 'nation', 'carrier'], ['met', 'recommend', 'deliveri'], ['love', 'nice'], ['excel'], ['ok'], ['great'], ['dual', 'sim', 'not', 'work', 'need', 'firmwar', 'wast', 'time'], ['work', 'perfect', 'peru', 'nice', 'cellphon', 'price'], ['excel'], ['like', 'lot'], ['excel'], ['todo', 'ok'], ['dear', 'problem', 'wich', 'wifi', 'senial'], ['todo', 'ok'], ['good', 'thank'], ['like', 'lot'], ['amaz'], ['el', 'peor', 'venezuela', 'sólo', 'funciona', 'con', 'movistar', 'digitel', 'sólo', 'levanta', 'edg', 'ademá', 'al', 'cabo', 'de', 'una', 'semana', 'e', 'podía', 'conectar', 'wifi', 'ni', 'le', 'servía', 'el', 'bluetooth', 'con', 'la', 'red', 'móvil', 'se', 'le', 'va', 'la', 'señal', 'por', 'completo', 'hay', 'que', 'reiniciarlo', 'para', 'poder', 'retomar', 'conexión'], ['excel', 'cell', 'phone'], ['uncrown', 'name', 'cheap', 'cell', 'phone', 'perform', 'almost', 'iphon', 'samsung'], ['lte'], ['like', 'phone', 'phone', 'work', 'excel', 'accord', 'price'], ['use', 'almost', 'year', 'good', 'reliabl', 'phone', 'easi', 'use', 'well'], ['excelent'], ['great', 'phone'], ['good', 'perfom', 'not', 'rotat', 'screen'], ['i', 'bought', 'amazon', 'one', 'earphon', 'thank'], ['great', 'phone', 'nice', 'display', 'nice', 'sound', 'qualiti', 'good', 'camera', 'thank', 'downsid', 'batteri', 'life', 'not', 'best', 'awesom'], ['phone', 'look', 'great', 'month', 'complet', 'unus', 'phone', 'liter', 'restart', 'everi', 'second', 'not', 'charg', 'not', 'turn', 'aw', 'i', 'order', 'complet', 'differ', 'phone', 'lower', 'review', 'other', 'experi', 'awesom', 'three', 'month', 'not', 'expect', 'much', 'beyond'], ['worth'], ['love', 'phone', 'take', 'bit', 'configur', 'need', 'launcher', 'super', 'customiz', 'sinc', 'not', 'tie', 'servic', 'provid', 'not', 'come', 'bs', 'bloat', 'app', 'dump', 'devic', 'ultim', 'activ', 'hoop', 'could', 'not', 'help', 'get', 'lte', 'signal', 'kept', 'say', 'imei', 'devic', 'end', 'troubleshoot', 'final', 'got', 'signal', 'factori', 'wipe', 'devic', 'alreadi', 'activ', 'sim', 'insert', 'old', 'devic', 'inch', 'screen', 'move', 'bit', 'concern', 'hard', 'notic', 'physic', 'phone', 'lighter', 'overal', 'feel', 'better', 'old', 'lg', 'point', 'long', 'servic', 'hold', 'think', 'futur', 'phone', 'intern', 'unlock', 'devic', 'plus', 'i', 'not', 'stuck', 'servic', 'provid', 'pay', 'new', 'phone', 'ad', 'month', 'fast', 'fingerprint', 'unlock', 'secur', 'safe', 'vault', 'encrypt', 'file', 'storag', 'leica', 'camera', 'slr', 'function', 'nfc', 'version', 'unlik', 'dual', 'sim', 'model', 'quick', 'transfer', 'enabl', 'mode', 'headphon', 'port', 'flashlight', 'singl', 'speaker', 'factori', 'music', 'app', 'could', 'better', 'launcher', 'default', 'ir', 'blaster', 'control', 'tv', 'plus', 'model', 'featur'], ['excelent', 'servicio', 'recomendado'], ['excelent', 'servicio', 'recomendado'], ['good', 'phone', 'ram', 'not', 'enough', 'version', 'would', 'better', 'back', 'camera', 'not', 'meet', 'expect'], ['expect'], ['excelent'], ['fit', 'lte', 'straight', 'talk', 'best', 'smart', 'phone', 'far', 'appl', 'fallen', 'behind'], ['excelent'], ['not', 'duo', 'simcard', 'slot', 'one', 'sim', 'card', 'slot', 'sd', 'sim', 'card', 'nano', 'kind', 'not', 'work', 'micro', 'sin', 'card'], ['love', 'phone'], ['outstand', 'equip'], ['receiv', 'accord', 'time', 'problem', 'phone', 'far', 'high', 'recommend'], ['look', 'global', 'unlock', 'phone', 'premium', 'featur', 'phone', 'meet', 'need', 'downsid', 'accessori', 'harder', 'come', 'case', 'bought', 'ship', 'china', 'phone', 'common'], ['look', 'global', 'unlock', 'phone', 'premium', 'featur', 'phone', 'meet', 'need', 'downsid', 'accessori', 'harder', 'come', 'case', 'bought', 'ship', 'china', 'phone', 'common'], ['great', 'money', 'fast', 'good', 'batteri', 'accept', 'camera'], ['end', 'buy', 'two', 'great', 'price', 'though', 'phone', 'flaw', 'far', 'enjoy', 'phone', 'arriv', 'box', 'seal', 'round', 'shape', 'notic', 'phone', 'seem', 'brand', 'new', 'assum', 'open', 'phone', 'came', 'unlock', 'check', 'prefer', 'oper', 'network', 'set', 'one', 'phone', 'phone', 'mani', 'mobil', 'carrier', 'list', 'turn', 'phone', 'need', 'set', 'calibr', 'set', 'complet', 'redund', 'set', 'phone', 'automat', 'updat', 'time', 'also', 'need', 'thin', 'not', 'sharp', 'avoid', 'damag', 'tool', 'calibr', 'touch', 'screen', 'stylus', 'would', 'help', 'tap', 'phone', 'tap', 'work', 'not', 'well', 'slide', 'not', 'expect', 'work', 'like', 'came', 'cool', 'app', 'radio', 'account', 'weather', 'batteri', 'work', 'fine', 'normal', 'usag', 'last', 'hour', 'idl', 'last', 'softwar', 'work', 'window', 'not', 'mac', 'sd', 'card', 'read', 'not', 'compat', 'phone', 'phone', 'data', 'access', 'sd', 'card', 'not', 'even', 'storag', 'media', 'bought', 'insert', 'sd', 'card', 'most', 'packag', 'come', 'handfre', 'earphon', 'plug', 'not', 'standard', 'stereo', 'instead', 'share', 'slot', 'power', 'port', 'also', 'cover', 'slot', 'well', 'protect', 'dust', 'get', 'observ', 'usual', 'call', 'drop', 'show', 'servic', 'emerg', 'call', 'not', 'sure', 'phone', 'screen', 'lock', 'come', 'right', 'call', 'connect', 'call', 'place', 'need', 'press', 'would', 'hate', 'not', 'want', 'disabl', 'screen', 'lock', 'not', 'figur', 'deal', 'problem'], ['good', 'phone', 'work', 'us', 'african', 'spend', 'brand'], ['good', 'phone', 'work', 'us', 'african', 'spend', 'brand'], ['skeptic', 'order', 'admit', 'i', 'still', 'nervous', 'phone', 'crap', 'futur', 'time', 'tell', 'first', 'day', 'phone', 'put', 'sim', 'card', 'soon', 'far', 'phone', 'look', 'great', 'came', 'batteri', 'nice', 'charger', 'screen', 'respond', 'soon', 'touch', 'download', 'wifi', 'work', 'well', 'made', 'phone', 'call', 'skype', 'wifi', 'brother', 'said', 'sound', 'good', 'voicemail', 'not', 'excel', 'not', 'sound', 'distant', 'sound', 'littl', 'differ', 'screen', 'good', 'not', 'seem', 'detail', 'phone', 'howev', 'still', 'camera', 'seem', 'not', 'much', 'intern', 'space', 'sd', 'card', 'fix', 'phone', 'inexpens', 'compar', 'altern', 'option', 'plus', 'dual', 'sim', 'card', 'slot', 'nice', 'freedom', 'chang', 'provid', 'updat', 'come', 'sim', 'card', 'instal', 'day', 'instal', 'sim', 'card', 'simmobil', 'use', 'tower', 'good', 'talk', 'recept', 'data', 'work', 'well', 'gps', 'navig', 'slow', 'find', 'locat', 'work', 'wonder', 'wifi', 'work', 'well', 'sometim', 'data', 'stop', 'watch', 'movi', 'phone', 'problem', 'servic', 'provid', 'problem', 'exchang', 'phone', 'dead', 'pixel', 'background', 'complaint', 'realli', 'wish', 'headphon', 'input', 'univers', 'speaker', 'get', 'pulsat', 'nois', 'plug', 'speaker', 'one', 'came', 'pretti', 'good', 'tell', 'screen', 'littl', 'cheaper', 'not', 'realli', 'work', 'well', 'need', 'adjust', 'set', 'get', 'better', 'pictur', 'blurri', 'first', 'set', 'adjust', 'pic', 'intern', 'storag', 'not', 'format', 'sd', 'card', 'unless', 'want', 'old', 'pic', 'delet', 'batteri', 'life', 'better', 'samsung', 'smartphon', 'heavi', 'phone', 'user'], ['l', 'would', 'high', 'recommend', 'buy', 'phone', 'read', 'review', 'seem', 'go', 'get', 'cheaper', 'qualiti', 'phone', 'made', 'differ', 'thank', 'wrong', 'phone', 'like', 'galaxi', 'note', 'minor', 'differ', 'center', 'physic', 'button', 'rather', 'touch', 'pad', 'power', 'button', 'side', 'instead', 'screen', 'great', 'movi', 'gamescom', 'charger', 'headphon', 'two', 'back', 'cover', 'two', 'batteri', 'one', 'instruct', 'manualexact', 'like', 'android', 'phoneswifi', 'bluetooth', 'dual', 'sim', 'card', 'sd', 'card', 'slot', 'gpswork', 'protector', 'put', 'previous', 'arrivalrear', 'forward', 'face', 'cameraconsfeel', 'littl', 'cheap', 'light', 'isjust', 'littl', 'big', 'fit', 'back', 'pocketdo', 'not', 'beam', 'not', 'expect', 'one', 'friend', 'ask', 'thoughcharg', 'realli', 'slow', 'die', 'slower', 'came', 'batteri', 'not', 'complain', 'flash', 'not', 'greatth', 'speaker', 'back', 'phone', 'make', 'littl', 'difficult', 'hear', 'video', 'playingdo', 'not', 'come', 'stylusi', 'phone', 'week', 'updat', 'month', 'find', 'issu', 'bought', 'phone', 'upgrad', 'six', 'month', 'away', 'iphon', 'done', 'phone', 'great', 'money', 'great', 'buy', 'real', 'concern', 'littl', 'bigger', 'expect', 'awesom'], ['case', 'big', 'android', 'note', 'hole', 'camera', 'head', 'set', 'not', 'line', 'phone', 'shake', 'arround', 'insid', 'case'], ['replac', 'old', 'motorola', 'krazer', 'smart', 'phone', 'went', 'small', 'huge', 'use', 'sever', 'month', 'problem', 'phone', 'pop', 'standard', 'size', 'sim', 'work', 'also', 'insert', 'travel', 'sim', 'went', 'countri', 'vacat', 'not', 'data', 'plan', 'use', 'lot', 'hotel', 'hot', 'spot', 'abl', 'retriev', 'email', 'surf', 'web', 'problem', 'carri', 'laptop', 'complaint', 'screen', 'imposs', 'see', 'bright', 'sunlight'], ['bought', 'phone', 'sister', 'took', 'month', 'get', 'hous', 'ok', 'disappoint', 'receiv', 'phone', 'took', 'us', 'week', 'get', 'set', 'phone', 'messag', 'pictur', 'text', 'not', 'work', 'shut', 'phone', 'numer', 'time', 'reset', 'yet', 'still', 'noth', 'phone', 'not', 'worth', 'price', 'paid', 'serious', 'piec', 'junk'], ['cell', 'phone', 'amaz', 'like', 'galaxi', 'note', 'work', 'excel', 'app', 'friend', 'around', 'also', 'amaz', 'great', 'qualiti', 'cours', 'price', 'high', 'recomend', 'amazon', 'custom'], ['servic', 'aw', 'would', 'not', 'recommend', 'anyon', 'purchas', 'phone', 'unsatisfi', 'phone', 'purchas'], ['not', 'satisfi', 'product', 'came', 'japanes', 'figur', 'convert', 'final', 'abl', 'connect', 'home', 'wifi', 'internet', 'japanes', 'well', 'never', 'recogn', 'sim', 'card', 'return', 'never', 'got', 'refund', 'not', 'order', 'cell', 'phone'], ['fast', 'receiv', 'exact', 'le', 'kind', 'phone', 'want', 'futur', 'smartphon', 'also', 'take', 'two', 'sim', 'card', 'make', 'happi'], ['could', 'not', 'receiv', 'text', 'messag', 'store', 'could', 'not', 'get', 'phone', 'receiv', 'unlock', 'call', 'foreign', 'phone', 'not', 'seem', 'compati', 'tri', 'get', 'approv', 'return', 'far', 'not', 'abl', 'return', 'high', 'disappoint', 'not', 'purchas', 'seller'], ['great', 'option', 'not', 'want', 'spend', 'lot', 'money', 'phone', 'work', 'realli', 'great', 'come', 'simcard', 'andi', 'gsm', 'carrier', 'best', 'batteri', 'flip', 'cover', 'headphon', 'android', 'os', 'awsom'], ['great', 'phone', 'use', 'resourc', 'app', 'avail', 'download', 'convien', 'everyday', 'profession', 'entertain', 'etc', 'would', 'recommend', 'phone', 'con', 'phone', 'wish', 'could', 'got', 'black', 'instead', 'white'], ['order', 'phone', 'came', 'time', 'found', 'advertis', 'problem', 'get', 'phone', 'servic', 'compani', 'activ', 'sprint', 'said', 'not', 'recogn', 'sent', 'phone', 'son', 'verizon', 'servic', 'problem', 'get', 'phone', 'activ'], ['not', 'use', 'mobil', 'phone', 'want', 'need', 'use', 'use', 'mobil', 'get', 'phone', 'self', 'nice', 'price'], ['spec', 'clear', 'state', 'phone', 'rom', 'capacit', 'android', 'dual', 'sim', 'smart', 'phone', 'rom', 'turn', 'phone', 'checkk', 'storag', 'show', 'like', 'realli', 'want', 'order', 'phone', 'not', 'said', 'befast', 'deliveri', 'product', 'rip'], ['phone', 'wonder', 'take', 'minut', 'get', 'everyth', 'way', 'want', 'term', 'set', 'well', 'worth', 'draw', 'back', 'phone', 'come', 'regular', 'headset', 'need', 'earbud', 'love', 'music', 'speaker', 'wonder', 'not', 'come', 'across', 'app', 'would', 'not', 'work', 'yet', 'excel', 'purchas', 'price', 'peopl', 'alway', 'look', 'say', 'let', 'see', 'samsung', 'galaxi', 'note'], ['got', 'phone', 'today', 'thought', 'go', 'awesom', 'phone', 'slow', 'internet', 'not', 'work', 'tri', 'everyth', 'nope', 'not', 'work', 'not', 'send', 'receiv', 'pic', 'video', 'pictur', 'qualiti', 'horrifi', 'terribl', 'overal', 'terribl', 'not', 'think', 'phone', 'made'], ['daughter', 'pleas', 'phone', 'not', 'use', 'phone', 'purpos', 'phone', 'instal', 'app', 'music', 'use', 'camera', 'far', 'wonder', 'feel', 'great', 'hand', 'husband', 'said', 'today', 'plan', 'get', 'one', 'well', 'alreadi', 'son', 'go', 'order', 'one', 'well', 'order', 'mine', 'christi', 'great', 'respond', 'within', 'minut', 'everi', 'time', 'email', 'wish', 'gotten', 'color', 'request', 'next', 'time', 'order', 'littl', 'demand'], ['goe', 'airport', 'mode', 'everi', 'coupl', 'minut', 'cut', 'call', 'hook', 'headset', 'speaker', 'make', 'realli', 'loud', 'buzz', 'blurri', 'revers', 'cam', 'stop', 'work', 'restart', 'phone', 'make', 'aw', 'batteri', 'life', 'wors', 'great', 'screen', 'great', 'text', 'search', 'internet', 'second', 'one', 'first', 'one', 'speaker', 'problem', 'not', 'go', 'airport', 'gift', 'i', 'thank', 'not', 'waist', 'money', 'second', 'make', 'want', 'go', 'back', 'flip', 'phone', 'dumb', 'smart', 'phone', 'lol', 'gallaxi', 'worth', 'extra', 'money'], ['worst', 'phone', 'ever', 'save', 'money'], ['like', 'not', 'theon', 'order', 'work', 'not', 'not', 'happi', 'not', 'order', 'case', 'i', 'not', 'happi'], ['nice', 'phone', 'husband', 'love', 'mani', 'year', 'broke'], ['beauti', 'phone', 'work', 'great', 'friend', 'jealous', 'great', 'deal', 'gotten', 'i', 'tell', 'everyon', 'phone'], ['poor', 'qualiti', 'say', 'note', 'note', 'accessori', 'not', 'fit', 'misrepres'], ['actual', 'like', 'phone', 'first', 'everyth', 'work', 'realli', 'fine', 'sudden', 'morn', 'phone', 'said', 'could', 'not', 'read', 'sim', 'card', 'wtf', 'could', 'fix', 'realli', 'happi', 'not', 'want', 'money', 'back', 'soon', 'possibl'], ['unmatch', 'replica', 'samsung', 'product', 'charact', 'firm', 'built', 'last', 'recommend', 'anyon', 'place', 'anoth', 'brand', 'model'], ['never', 'phone', 'hahahaha', 'idea', 'peopl', 'even', 'buy', 'piec', 'crap', 'omg', 'bad', 'batteri', 'awe', 'aw'], ['realli', 'hope', 'write', 'nice', 'review', 'realli', 'like', 'look', 'feel', 'phone', 'week', 'guess', 'screen', 'gone', 'black', 'reboot', 'ndroid', 'signal', 'freez', 'replac', 'refund', 'money', 'guess', 'review', 'pleas', 'pleas', 'not', 'buy'], ['first', 'got', 'phone', 'great', 'hour', 'power', 'button', 'complet', 'stop', 'work', 'tri', 'return', 'cost', 'almost', 'dollar', 'ship', 'wast', 'time', 'money', 'advis', 'not', 'get'], ['almost', 'two', 'month', 'like', 'got', 'fulfil', 'amazon', 'first', 'not', 'work', 'email', 'seller', 'work', 'help', 'phone', 'fast', 'screen', 'perfect', 'problem', 'qualiti', 'pictur', 'camera', 'poor', 'perfect', 'husband', 'think', 'phone', 'big', 'not', 'like', 'big', 'phone', 'not', 'right', 'one'], ['absolut', 'love', 'phone', 'want', 'origin', 'note', 'larg', 'screen', 'like', 'read', 'book', 'kindl', 'watch', 'netflix', 'class', 'phone', 'perfect', 'download', 'fave', 'app', 'gmail', 'instagram', 'facebook', 'essenti', 'app', 'law', 'student', 'barbri', 'westlaw', 'fastcas', 'serious', 'not', 'found', 'problem', 'phone', 'everyon', 'keep', 'ask', 'got', 'love', 'love', 'love'], ['phone', 'glitch', 'figur', 'get', 'get', 'one', 'day', 'took', 'phone', 'bag', 'screen', 'white', 'natur', 'took', 'batteri', 'think', 'back', 'still', 'white', 'repeat', 'step', 'sever', 'time', 'period', 'hour', 'still', 'white', 'phone', 'less', 'day', 'awesom'], ['got', 'smartphon', 'could', 'accept', 'credit', 'card', 'busi', 'squar', 'got', 'found', 'not', 'run', 'googl', 'app', 'android', 'known', 'would', 'not', 'gotten', 'go', 'tri', 'return', 'wast', 'time', 'money', 'seem', 'work', 'well', 'network', 'not', 'troubl', 'connect', 'seem', 'like', 'nice', 'phone', 'not', 'want', 'phone'], ['k', 'anyon', 'els', 'havin', 'problem', 'picturemil', 'abl', 'receiv', 'pictur', 'nt', 'send', 'not', 'give', 'problem', 'receiv', 'anyon', 'help'], ['hola', 'como', 'se', 'pone', 'el', 'equipo', 'en', 'idioma', 'ingl', 'gracia', 'favor', 'de', 'mandar', 'un', 'mensaj', 'lo', 'ant', 'pocibl', 'graciastengo', 'un', 'poco', 'de', 'dificultad', 'en', 'usarlo', 'gracia'], ['bad', 'bad', 'not', 'lost', 'money'], ['excel', 'product', 'work', 'fine', 'venezuela'], ['four', 'month', 'still', 'wait', 'phone', 'not', 'get', 'back', 'money', 'get', 'phone'], ['terribl', 'phone', 'not', 'g', 'kept', 'day', 'touch', 'screen', 'phone', 'antiqu'], ['love'], ['great', 'phone', 'husband', 'love'], ['sorri', 'say', 'product', 'not', 'busi', 'person', 'child', 'want', 'tablet', 'would', 'perfect', 'keep', 'reboot', 'devis', 'screen', 'worst'], ['bad', 'android', 'not', 'work', 'right', 'didnot', 'even', 'get', 'use', 'indigi', 'took', 'money', 'noth', 'feel', 'like', 'got', 'rip'], ['rise', 'phablet', 'alreadi', 'wild', 'popular', 'everywher', 'perform', 'well', 'see', 'smart', 'phone', 'tablet', 'hit', 'ground', 'run'], ['tablet', 'stop', 'work', 'three', 'not', 'know', 'hw', 'return'], ['one', 'languag', 'not', 'say', 'bought', 'producto', 'year', 'old', 'boy', 'live', 'dominican', 'republ', 'languag', 'spanish', 'compani', 'not', 'translat', 'cartridg', 'languag', 'solut', 'explain', 'anounc', 'product', 'web'], ['good', 'pre', 'program', 'download', 'not', 'work', 'well', 'outsid', 'hous'], ['enjoy'], ['nice', 'watch', 'bit', 'bulki', 'cheap', 'plastic', 'case', 'ok', 'need'], ['phone', 'slow', 'even', 'right', 'box', 'get', 'lot', 'popup', 'add', 'game', 'instal', 'request'], ['happi'], ['big'], ['could', 'not', 'make', 'work', 'sim', 'card', 'regret', 'buy'], ['great', 'product'], ['great', 'phone', 'love', 'fast', 'ship', 'thank'], ['amaz', 'equip', 'real', 'connect'], ['phone', 'bought', 'express', 'understand', 'factori', 'unlock', 'not', 'case', 'unabl', 'use', 'time', 'batteri', 'good', 'dead'], ['perfect'], ['exact', 'need', 'receiv', 'within', 'hour', 'origin', 'belt', 'clip', 'break', 'pleas', 'entir', 'order', 'process', 'order', 'anoth', 'one', 'break', 'work', 'flawless'], ['husband', 'daughter', 'happi', 'clip', 'thank', 'great', 'job'], ['pleas'], ['item', 'great', 'like', 'real', 'one', 'without', 'lock', 'clip', 'love', 'great', 'buy'], ['came', 'quick', 'advertis', 'great', 'purchas', 'price'], ['work', 'perfect'], ['clip', 'may', 'look', 'like', 'origin', 'one', 'come', 'bewar', 'garbag', 'would', 'never', 'buy', 'purchas', 'seller', 'order', 'broken', 'came', 'asia', 'not', 'read', 'packag', 'label', 'sinc', 'japanes', 'not', 'wait', 'replac', 'write', 'one', 'life', 'littl', 'learn', 'experi', 'may', 'fool'], ['muy', 'bueno'], ['bought', 'cheap', 'enough', 'see', 'broken', 'alreadi', 'save', 'money', 'buy', 'real', 'thing', 'not', 'cheap', 'crap', 'china'], ['long', 'defend', 'case', 'order', 'guy', 'clip', 'penni', 'dollar', 'side', 'not', 'swivel', 'live'], ['met', 'expect'], ['good', 'cheap', 'recommend', 'replac'], ['cheap', 'qualiti', 'not', 'par', 'like', 'real', 'otterbox', 'said', 'job', 'phone', 'not', 'super', 'secur', 'wear', 'waist'], ['cheap', 'made'], ['great'], ['wrong', 'size'], ['exceed', 'expect'], ['good'], ['phone', 'defect', 'not', 'hold', 'charg'], ['miss', 'part', 'hold', 'simcard', 'return', 'mention', 'descript'], ['not', 'complain', 'best', 'price', 'could', 'find'], ['dislik', 'product', 'sent', 'wrong', 'phone', 'phone', 'not', 'work', 'came', 'crack', 'would', 'like', 'refund'], ['bought', 'clear', 'black', 'case', 'cheap', 'get', 'pay', 'ring', 'around', 'pho', 'e', 'made', 'cheap', 'plastic', 'look', 'like', 'break', 'first', 'drop', 'clear', 'part', 'not', 'truli', 'clear', 'tint', 'blue', 'matt', 'black', 'phone', 'look', 'navi', 'would', 'not', 'recommend'], ['expect', 'low', 'price', 'qualiti', 'case', 'pretti', 'aw', 'could', 'see', 'straight', 'box', 'wool', 'fray', 'look', 'felt', 'like', 'case', 'use', 'sever', 'year', 'alreadi', 'sad', 'excus', 'imit', 'leather', 'attach', 'uneven', 'waver', 'stitch', 'alreadi', 'begin', 'fray', 'keep', 'mind', 'direct', 'box', 'case', 'fit', 'well', 'design', 'modern', 'stylish', 'could', 'not', 'put', 'qualiti', 'minut', 'worst', 'part', 'amazon', 'make', 'pay', 'return', 'disappoint', 'not', 'wast', 'time', 'unless', 'not', 'care', 'qualiti'], ['yes', 'far'], ['great', 'love', 'gave', 'gift', 'n', 'appreci', 'work', 'well', 'could', 'not', 'ask', 'better'], ['great', 'love', 'gave', 'gift', 'n', 'appreci', 'work', 'well', 'could', 'not', 'ask', 'better'], ['got', 'shipment', 'fast', 'build', 'phone', 'nice', 'iphon', 'look', 'feel', 'hardwar', 'nice', 'great', 'cpu', 'ram', 'rom', 'good', 'display', 'perfect', 'phone', 'impress', 'fail', 'area', 'compani', 'websit', 'state', 'model', 'gyroscop', 'not', 'phone', 'quick', 'heat', 'might', 'due', 'cpu', 'clock', 'issu', 'ui', 'need', 'work', 'like', 'us', 'phone', 'class', 'regard', 'ui', 'good', 'phone', 'dual', 'sim', 'great', 'featur', 'one', 'period', 'good', 'back', 'one', 'servic', 'not', 'pick', 'elimin', 'roam', 'not', 'great', 'high', 'end', 'game', 'take', 'regard', 'like', 'vr', 'cardboard', 'not', 'phone', 'state', 'previous', 'review', 'need', 'gyroscop', 'function', 'correct', 'vr', 'experi', 'overal', 'first', 'impress', 'not', 'bad', 'phone', 'would', 'recommend', 'person', 'switch', 'googl', 'platform'], ['make', 'call', 'send', 'text', 'could', 'not', 'get', 'internet', 'data', 'cricket', 'not', 'happi', 'get', 'pay'], ['wish', 'zero', 'rate', 'son', 'excit', 'smh'], ['purchas', 'phone', 'littl', 'sister', 'would', 'say', 'low', 'budget', 'phone', 'work', 'fine', 'like', 'samsung', 'brand', 'sinc', 'high', 'school', 'not', 'want', 'get', 'expens', 'phone', 'work', 'fine', 'sister', 'love', 'phone', 'hard', 'depart', 'would', 'definit', 'give', 'irulu', 'star'], ['phone', 'good', 'littl', 'month', 'half', 'realli', 'good', 'money', 'pretti', 'much', 'knockoff', 'galaxi', 'sure', 'rememb', 'not', 'lte', 'phone', 'oper', 'well', 'downsid', 'instruct', 'manual', 'general', 'camera', 'not', 'best', 'still', 'not', 'bad', 'though', 'biggest', 'reason', 'gave', 'wall', 'charger', 'came', 'phone', 'not', 'work', 'usb', 'cord', 'work', 'take', 'cord', 'use', 'old', 'wall', 'charger', 'charg', 'phone', 'also', 'come', 'headphon', 'mic', 'work', 'sound', 'qualiti', 'not', 'best', 'littl', 'short', 'opinion', 'not', 'make', 'purchas', 'headphon', 'good', 'phone', 'reason', 'stop', 'use', 'day', 'ago', 'fell', 'pocket', 'tri', 'drop', 'pant', 'use', 'rest', 'room', 'fell', 'toilet', 'got', 'water', 'damag', 'screen', 'not', 'light'], ['product', 'quit', 'cover', 'spectat'], ['good', 'phone', 'price', 'hardwar', 'good'], ['good', 'batteri', 'life'], ['awesom', 'price', 'phone', 'good', 'great', 'qualiti'], ['nice', 'design', 'easi', 'use', 'nj', 'place', 'could', 'not', 'get', 'signal', 'previous', 'cell', 'phone', 'jitterbug', 'work', 'fine', 'everywher', 'go', 'purchas', 'jitterbug', 'amazon', 'troubl', 'get', 'activ', 'greatcal', 'greatcal', 'custom', 'servic', 'good', 'phone', 'easili', 'cancel', 'not', 'give', 'good', 'servic', 'far', 'i', 'happi', 'phone', 'servic'], ['pretti', 'expens', 'littl', 'phone', 'speed', 'dial', 'number', 'text', 'littl', 'exact', 'want', 'phone', 'pretti', 'well', 'easili', 'pick', 'current', 'carrier', 'upon', 'plug', 'sim', 'card', 'work', 'well', 'ever', 'sinc'], ['sold', 'us', 'dollar', 'cheap', 'resel'], ['super', 'excit', 'receiv', 'phone', 'up', 'pull', 'hand', 'packag', 'immedi', 'went', 'charg', 'not', 'charg', 'turn', 'disappoint'], ['high', 'review', 'phone', 'not', 'true', 'feel', 'like', 'scam', 'first', 'time', 'amazon', 'beyond', 'disappoint', 'phone', 'serious', 'problem', 'make', 'complet', 'useless', 'past', 'time', 'would', 'abl', 'return', 'oversea', 'vacat', 'screen', 'phone', 'flash', 'tab', 'fli', 'across', 'screen', 'random', 'constant', 'make', 'imposs', 'make', 'receiv', 'call', 'caus', 'serious', 'hazard', 'situat', 'last', 'week', 'car', 'problem', 'night', 'lone', 'road', 'return', 'state', 'word', 'strong', 'letter', 'amazon', 'not', 'think', 'allow', 'compani', 'paid', 'give', 'phoen', 'free', 'exchang', 'review', 'peopl', 'gave', 'review', 'phone', 'not', 'possibl', 'true', 'bought', 'mani', 'phone', 'amazon', 'seller', 'way', 'phone', 'star', 'crap', 'not', 'buy', 'phone', 'need', 'emerg', 'phone', 'could', 'put', 'life', 'risk', 'need', 'help', 'not', 'work', 'read', 'review', 'see', 'anoth', 'person', 'not', 'paid', 'given', 'free', 'item', 'review', 'also', 'problem', 'believ', 'someth', 'faulti', 'phone', 'know', 'phone', 'work', 'week', 'numer', 'issu', 'make', 'imposs', 'use', 'believ', 'seller', 'awar', 'problem', 'phone', 'livid'], ['phone', 'slow', 'take', 'min', 'one', 'app', 'pop', 'camera', 'crap', 'well', 'peep', 'price', 'cours', 'would'], ['awesom', 'phone', 'i', 'own', 'iphon', 'worri', 'long', 'would', 'take', 'figur', 'new', 'phone', 'simpl', 'easi', 'plus', 'extra', 'storag', 'wonder', 'awesom', 'low', 'price', 'pay', 'smartphon', 'get', 'one', 'function', 'less', 'tenth', 'price', 'i', 'phone', 'day', 'work', 'great', 'ad', 'applic', 'facebook', 'stuff', 'like', 'say', 'amaz', 'phone', 'price', 'slim', 'easi', 'use', 'honest', 'not', 'sure', 'phone', 'place', 'order', 'noww', 'glad', 'got', 'place', 'order', 'anoth', 'one', 'cousin', 'christma', 'gift'], ['not', 'launch', 'facebook', 'app', 'facebook', 'messeng', 'app', 'unfortun', 'two', 'app', 'reason', 'bought', 'phone'], ['not', 'problem', 'item', 'ever', 'sinc', 'start', 'use', 'i', 'quit', 'satisfi', 'qualiti', 'reliabl', 'product'], ['mani', 'thing', 'like', 'product', 'price', 'great', 'give', 'owner', 'plenti', 'bang', 'buck', 'got', 'big', 'nice', 'screen', 'come', 'sort', 'extra', 'like', 'case', 'bag', 'screen', 'protector', 'wish', 'btw', 'item', 'avail', 'sale', 'also', 'extra', 'sinc', 'i', 'alreadi', 'manag', 'scratch', 'screen', 'protector', 'speak', 'manag', 'lose', 'balanc', 'drop', 'devic', 'right', 'littl', 'bag', 'ici', 'park', 'lot', 'drop', 'sever', 'feet', 'skid', 'sever', 'feet', 'came', 'rest', 'ici', 'wet', 'batch', 'slush', 'got', 'minor', 'ding', 'not', 'break', 'still', 'work', 'flawless', 'allow', 'far', 'absolut', 'everyth', 'throw', 'use', 'chiefli', 'media', 'devic', 'includ', 'video', 'sometim', 'i', 'basic', 'use', 'word', 'process', 'busi', 'applic', 'absolut', 'complaint', 'perform', 'realli', 'realli', 'like', 'devic', 'said', 'howev', 'malwar', 'situat', 'unfortun', 'wish', 'much', 'kocaso', 'would', 'provid', 'updat', 'set', 'master', 'app', 'not', 'sure', 'proper', 'phrase', 'mean', 'total', 'reset', 'would', 'not', 'put', 'malwar', 'onto', 'devic', 'longer', 'pleas', 'i', 'android', 'devic', 'year', 'differ', 'manufactur', 'vari', 'recogniz', 'name', 'brand', 'samsung', 'asus', 'cheap', 'chines', 'stuff', 'impress', 'way', 'i', 'use', 'lot', 'kocaso', 'devic', 'one', 'ever', 'given', 'sort', 'headach', 'malwar', 'absurd', 'unnecessari', 'i', 'never', 'factori', 'reset', 'devic', 'kocaso', 'find', 'not', 'trust', 'item', 'certain', 'app', 'would', 'like', 'use', 'app', 'contain', 'vital', 'person', 'inform', 'realli', 'realli', 'wish', 'kocaso', 'would', 'address', 'issu', 'origin', 'malwar', 'eventu', 'caus', 'unwant', 'thing', 'show', 'not', 'still', 'i', 'give', 'four', 'star', 'tell', 'much', 'impress', 'still', 'say', 'caveat', 'emptor', 'bummer'], ['samsung', 'galaxi', 'stop', 'work', 'mani', 'drop', 'lot', 'research', 'decid', 'get', 'durabl', 'torqu', 'husband', 'construct', 'phone', 'perfect', 'work', 'condit'], ['not', 'buy', 'phone', 'not', 'work', 'expect', 'disappoint', 'product'], ['super', 'function', 'beauti', 'screen', 'access', 'main', 'app', 'back', 'pop', 'easili', 'even', 'think', 'realli', 'snap', 'good', 'littl', 'much', 'pressur', 'side', 'loos', 'readi', 'pop', 'drop', 'bag', 'not', 'use', 'enough', 'matter', 'mean', 'i', 'mega', 'awar', 'anyth', 'go', 'left', 'back', 'friend', 'car', 'first', 'time', 'use', 'also', 'batteri', 'longev', 'kind', 'meh'], ['got', 'sister', 'love', 'could', 'not', 'believ', 'got'], ['buy', 'equip', 'work', 'one', 'day', 'lost', 'money'], ['good'], ['nice', 'phone', 'price', 'work', 'fine'], ['product', 'came', 'broken', 'not', 'much', 'help', 'resolut', 'never', 'buy'], ['phone', 'mani', 'softwar', 'hardwar', 'problem'], ['verri', 'good'], ['yeah', 'phone', 'suck', 'not', 'let', 'skype', 'best', 'believ', 'not', 'buy', 'anoth', 'phone', 'i', 'readi', 'new', 'phone', 'anoth', 'compani', 'come'], ['good', 'prudect'], ['great', 'phone', 'youtub', 'app', 'not', 'work', 'use', 'browser', 'watch', 'youtub'], ['good', 'expect'], ['con', 'mucha', 'demora', 'mas', 'de', 'dia'], ['verri', 'good'], ['buy', 'lote', 'problem', 'firt', 'freez', 'mani', 'time', 'youtub', 'app', 'not', 'work', 'poor', 'ítem'], ['good', 'nice', 'phone', 'bad', 'put', 'languag', 'mani', 'inform', 'bring', 'team', 'english', 'lenovo', 'explanatori', 'hey', 'import', 'good', 'team'], ['amaz', 'love', 'smartphon', 'issu', 'touch', 'screen', 'sensibl', 'take', 'screen', 'protector', 'resolv', 'hesit', 'buy', 'phone', 'tell', 'smartphon', 'good', 'expens', 'happi', 'purchas'], ['excel'], ['terribl', 'product'], ['good', 'morn', 'wonder', 'help', 'lenovo', 'sold', 'could', 'enjoy', 'one', 'month', 'team', 'ask', 'updat', 'updat', 'made', 'team', 'stay', 'not', 'recogn', 'sim', 'card', 'venezuela', 'movilnet', 'movistar', 'digitel', 'use', 'not', 'recogn', 'cellular', 'oper', 'would', 'kind', 'enough', 'answer', 'mail'], ['bought', 'phone', 'month', 'ago', 'genuin', 'like', 'good', 'size', 'look', 'lot', 'like', 'galaxi', 'back', 'leatherlik', 'cover', 'cool', 'camera', 'superior', 'actual', 'everyth', 'phone', 'awesom', 'except', 'signal', 'strength', 'never', 'signal', 'home', 'go', 'outsid', 'make', 'call', 'ridicul', 'see', 'cell', 'phone', 'tower', 'clear', 'home', 'reason', 'lose', 'signal', 'much', 'one', 'els', 'home', 'phone', 'annoy', 'went', 'die', 'morn', 'not', 'drop', 'not', 'seen', 'water', 'kept', 'case', 'screen', 'protector', 'put', 'charger', 'last', 'night', 'wake', 'morn', 'not', 'power', 'ask', 'replac', 'refund', 'afteral', 'month', 'old', 'seller', 'compli', 'edit', 'review', 'give', 'star', 'reflect', 'posit', 'experi'], ['ecelent'], ['excel', 'compar', 'price'], ['phone', 'terribl', 'never', 'work', 'virus', 'download', 'porn', 'site', 'continu', 'tri', 'contact', 'lenovo', 'not', 'return', 'email', 'call', 'would', 'never', 'recommend', 'lenovo', 'product', 'never', 'buy', 'one', 'technic', 'support', 'product', 'not', 'buy'], ['not', 'new', 'refurbish', 'came', 'dirti', 'bag', 'full', 'spywar', 'virus', 'solut', 'read', 'bottom', 'especi', 'chines', 'one', 'spi', 'seller', 'say', 'refurbish', 'least', 'disclos', 'repair', 'technician', 'may', 'tamper', 'phone', 'way', 'clean', 'unless', 'root', 'regular', 'uninstal', 'recogn', 'instal', 'spywar', 'protect', 'root', 'also', 'danger', 'coupl', 'applic', 'malwar', 'avast', 'antivirus', 'scream', 'monitor', 'everi', 'keystrok', 'scari', 'login', 'alia', 'credenti', 'never', 'use', 'real', 'email', 'inform', 'followingsolutionhowev', 'go', 'http', 'kingo', 'app', 'via', 'pc', 'root', 'devic', 'plug', 'run', 'exe', 'file', 'follow', 'instruct', 'pc', 'coupl', 'minut', 'root', 'not', 'affili', 'free', 'donat', 'save', 'time', 'root', 'download', 'uninstal', 'googl', 'market', 'place', 'similar', 'app', 'delet', 'annoy', 'not', 'return', 'root', 'use', 'gps'], ['work', 'expect'], ['drop', 'internet', 'connect', 'frequent', 'sit', 'feet', 'router', 'fire', 'tablet', 'problem', 'heed', 'rate'], ['good', 'phone', 'mine', 'came', 'problem', 'not', 'play', 'video', 'tube', 'problem', 'dual', 'sim', 'work', 'one', 'time'], ['phone', 'take', 'great', 'pictur', 'howev', 'lag', 'slow'], ['like', 'everyth', 'phone'], ['could', 'not', 'ask', 'better', 'phone'], ['akku', 'ausgezeichnet', 'intern', 'speicher', 'zu', 'gere'], ['excel'], ['recent', 'got', 'phone', 'yesterday', 'phone', 'red', 'plug', 'charger', 'not', 'turn', 'press', 'power', 'button', 'someon', 'pleas', 'respond', 'back', 'soon', 'possibl', 'thank'], ['muy', 'bueno'], ['todo', 'good', 'fast', 'fine', 'good', 'good'], ['good'], ['excelent'], ['excelent'], ['good'], ['good', 'cell', 'phone'], ['not', 'work', 'overheat', 'load', 'lose', 'fast', 'not', 'recommend'], ['love', 'take', 'good', 'processor', 'fast', 'android', 'platform', 'give', 'alot', 'option', 'brows', 'fault', 'phone', 'far'], ['need', 'trip', 'china', 'combin', 'china', 'mobil', 'sim', 'card', 'not', 'worri', 'intern', 'phone', 'charg', 'trip'], ['bueno'], ['wonder', 'phone'], ['excel'], ['work', 'perfect', 'itali', 'use', 'home', 'radio', 'sinc', 'digit', 'fm', 'tune', 'decent', 'speaker', 'slight', 'less', 'power', 'cheap', 'bluetooth', 'speaker', 'also', 'mention', 'batter', 'thing', 'last', 'long', 'time', 'left', 'week', 'straight', 'still', 'batteri', 'life', 'left'], ['cheapdual', 'simmega', 'bright', 'torchnic', 'batterymicro', 'usb', 'charger', 'main', 'android', 'phone', 'definit', 'recommend'], ['item', 'state', 'ad', 'cart', 'item', 'wireless', 'expert', 'fulfil', 'amazon', 'note', 'click', 'item', 'today', 'see', 'differ', 'seller', 'click', 'hour', 'later', 'seller', 'differ', 'idea', 'amazon', 'i', 'seen', 'item', 'amazon', 'previous', 'review', 'phone', 'manual', 'languag', 'thatwa', 'not', 'understand', 'mine', 'came', 'spanish', 'seller', 'not', 'honest', 'descript', 'item', 'see', 'howto', 'english', 'far', 'day', 'pleas', 'phone', 'instal', 'global', 'sim', 'compani', 'call', 'roam', 'simpl', 'test', 'text', 'make', 'call', 'usa', 'connect', 'well', 'i', 'not', 'use', 'outsid', 'usa', 'yet', 'get', 'connect', 'call', 'qualiti', 'varyin', 'eu', 'base', 'countri', 'citi', 'etc', 'use', 'phone', 'eu', 'call', 'qualiti', 'clariti', 'us', 'fine', 'sim', 'connect', 'usa', 'dual', 'sim', 'nice', 'featur', 'use', 'one', 'countri', 'cheap', 'countri', 'rate', 'sim', 'use', 'yourintern', 'travel', 'global', 'fine', 'previous', 'review', 'peopl', 'mention', 'issu', 'fm', 'radio', 'work', 'note', 'adjust', 'volum', 'use', 'center', 'button', 'text', 'full', 'qwerti', 'keyboard', 'text', 'year', 'ago', 'clock', 'alarm', 'stopwatch', 'calculatorbatteri', 'mine', 'came', 'lg', 'great', 'still', 'show', 'fulli', 'flashlight', 'nice', 'featur', 'press', 'center', 'button', 'direct', 'turn', 'great', 'size', 'web', 'internet', 'access', 'model', 'not', 'expect', 'call', 'sim', 'buy', 'countri', 'specif', 'argentina', 'region', 'eu', 'sim', 'may', 'notget', 'servic', 'phone', 'usa', 'bought', 'global', 'sim', 'check', 'sim', 'provid', 'english', 'box', 'english', 'hope', 'manual', 'would', 'not', 'spent', 'hour', 'look', 'manual', 'found', 'full', 'english', 'user', 'guid', 'lg', 'australiaweb', 'site', 'search', 'lg', 'site', 'model', 'appear', 'soldto', 'spanish', 'portugues', 'brazil', 'countri', 'manual', 'not', 'english', 'lg', 'brazil', 'site', 'power', 'power', 'suppli', 'usa', 'plug', 'not', 'tell', 'dual', 'voltag', 'phone', 'chargerallow', 'plug', 'non', 'usa', 'power', 'outlet', 'convers', 'plug', 'use', 'apow', 'convert', 'search', 'amazon', 'convert', 'may', 'need', 'convert', 'thanactu', 'transform', 'convert', 'power', 'peopl', 'talk', 'cover', 'problem', 'gentl', 'press', 'back', 'cover', 'gentl', 'slide', 'slight', 'inch', 'back', 'cover', 'extend', 'past', 'end', 'phone', 'lift', 'batteri', 'ever', 'phone', 'simpl', 'note', 'sim', 'slot', 'batteri', 'cover', 'back', 'not', 'slide', 'cover', 'start', 'place', 'cover', 'back', 'posit', 'whereyou', 'pop', 'slide', 'inch', 'lock', 'batteryth', 'power', 'input', 'cord', 'rubber', 'cover', 'left', 'side', 'open', 'way', 'phone', 'side', 'power', 'cover', 'appear', 'left', 'gentl', 'pri', 'rubber', 'cover', 'lift', 'itat', 'right', 'edg', 'right', 'edg', 'slight', 'larger', 'left', 'edg', 'rubber', 'cover', 'lift', 'ofan', 'inch', 'swing', 'get', 'usa', 'power', 'plug', 'plug', 'phone', 'usa', 'outlet', 'charg', 'languag', 'phone', 'languag', 'set', 'portugues', 'get', 'hold', 'button', 'also', 'button', 'phone', 'power', 'press', 'upper', 'left', 'button', 'repli', 'si', 'yes', 'use', 'upper', 'right', 'enter', 'set', 'ajust', 'configuracion', 'enter', 'languag', 'enter', 'english', 'ingl'], ['good', 'phone', 'intern', 'gsm', 'network', 'purchas', 'intern', 'sim', 'use', 'us', 'work', 'fine', 'problem', 'not', 'make', 'outgo', 'call', 'receiv', 'call', 'text', 'send', 'text', 'think', 'main', 'due', 'network', 'limit', 'not', 'phone'], ['bought', 'travel', 'europ', 'not', 'use', 'yet', 'exact', 'want', 'basic', 'unlock', 'phone', 'put', 'sim', 'card', 'get', 'europ', 'qualiti', 'seem', 'fine'], ['happi', 'phone', 'other', 'state', 'not', 'easiest', 'use', 'dark', 'button', 'not', 'light', 'screen', 'goe', 'dark', 'import', 'thing', 'recept', 'seem', 'work', 'well', 'pull', 'sim', 'anoth', 'phone', 'could', 'not', 'get', 'signal', 'phone', 'reach', 'made', 'connect', 'work', 'well', 'work', 'around', 'minor', 'drawback'], ['price', 'not', 'know', 'mean', 'unlock'], ['work', 'perfect', 'europ', 'buy', 'cheap', 'month', 'servic', 'worth', 'prepaid', 'call', 'sim', 'perfect', 'read', 'manual', 'get', 'english', 'version', 'onlin', 'need', 'get', 'prefix', 'info'], ['work', 'uae', 'phone', 'perfect', 'basic', 'voic', 'text', 'servic', 'cowork', 'purchas', 'sever', 'work', 'fine', 'seem', 'hold', 'well', 'take', 'longer', 'text', 'due', 'old', 'style', 'key', 'pad', 'voic', 'concern', 'cheap', 'option', 'dual', 'sim', 'choos', 'one', 'use', 'dial', 'regular', 'size', 'sim', 'not', 'micro', 'sim', 'micro', 'use', 'adapt', 'kit', 'work', 'fine'], ['great'], ['thank'], ['great', 'quad', 'band', 'unlock', 'inexpens', 'instruct', 'lousi', 'minim', 'mani', 'extra', 'featur', 'flashlight', 'torch', 'fm', 'radio', 'good', 'basic', 'phone', 'great', 'price'], ['product', 'correct', 'work', 'perfect'], ['good', 'batteri', 'life'], ['could', 'not', 'get', 'speakout', 'sim', 'card', 'work', 'work', 'phone', 'soon', 'tri', 'activ', 'sim', 'card', 'got', 'phone', 'repeat', 'flash', 'would', 'not', 'stop', 'sim', 'card', 'remov', 'frustrat', 'wast', 'time', 'money', 'would', 'give', 'zero', 'could'], ['great', 'product', 'african', 'trip', 'fm', 'radio', 'plus', 'electr', 'goe'], ['use', 'littl', 'guy', 'two', 'week', 'ireland', 'month', 'kuwait', 'dual', 'micro', 'sd', 'conveni', 'easi', 'master', 'oper', 'long', 'batteri', 'life', 'charger', 'alreadi', 'oversea', 'type', 'c', 'plug', 'also', 'came', 'us', 'plug', 'adapt', 'bit', 'music', 'tone', 'key', 'entri', 'make', 'add', 'charm', 'easi', 'remov', 'back', 'cover', 'access', 'micro', 'sd', 'slot', 'slide', 'cover', 'toward', 'bottom', 'phone', 'text', 'not', 'smartphon', 'data', 'addict'], ['exact', 'need', 'like', 'make', 'call', 'europ', 'usa', 'send', 'text', 'batteri', 'last', 'almost', 'two', 'week', 'take', 'get', 'use', 'old', 'school', 'keypad', 'overal', 'pleas'], ['need', 'basic', 'phone', 'work', 'difficult', 'environ', 'dual', 'sim', 'need', 'go', 'day', 'without', 'access', 'use', 'simpl', 'swap', 'sim', 'card', 'travel', 'batteri', 'last', 'forev', 'great', 'flashlight'], ['took', 'phone', 'west', 'africa', 'use', 'phone', 'simpl', 'not', 'even', 'camera', 'well', 'made', 'happi', 'function', 'flashlight', 'eas', 'gift', 'phone', 'friend', 'left', 'would', 'glad', 'buy', 'next', 'time', 'need', 'simpl', 'phone'], ['phone', 'program', 'spanish', 'instruct', 'provid', 'english', 'chang', 'program', 'oper', 'phone', 'worthless', 'unless', 'speak', 'read', 'spanish'], ['tough', 'littl', 'phone', 'use', 'harshest', 'circumst', 'still', 'go', 'strong'], ['work', 'great', 'vietnam'], ['piec', 'junk', 'photo', 'mislead', 'would', 'return', 'thing', 'would', 'cost', 'paid', 'thing'], ['not', 'quit', 'appear', 'photo', 'identif', 'sim', 'sim', 'not', 'clear', 'shown', 'exampl', 'given', 'also', 'set', 'instruct', 'would', 'help', 'three', 'day', 'final', 'crack', 'help', 'global', 'sim', 'provid', 'enter', 'new', 'contact', 'global', 'sim', 'requir', 'number', 'end', 'number', 'except', 'text', 'mean', 'entri', 'contact', 'appar', 'lg', 'quirk', 'not', 'sim', 'issu', 'success', 'came', 'third', 'day', 'immedi', 'test', 'prove', 'satisfactori', 'live', 'area', 'signal', 'poor', 'mani', 'phone', 'not', 'pick', 'indoor', 'lg', 'win', 'everi', 'time', 'excel', 'pick', 'potenti', 'i', 'begin', 'like', 'want', 'switch', 'exist', 'global', 'sim', 'card', 'phone', 'may', 'bit', 'work', 'contact', 'number'], ['came', 'time', 'work', 'well'], ['love', 'phone'], ['not', 'believ', 'phone', 'new', 'noth', 'problem', 'feel', 'defect', 'phone', 'year', 'numer', 'problem', 'would', 'like', 'return', 'get', 'money', 'back', 'kept', 'overlook', 'problem', 'came', 'longer', 'go', 'back', 'old', 'phone', 'not', 'use', 'longer', 'bought', 'card', 'still', 'not', 'load', 'music', 'put', 'approxim', 'littl', 'thing', 'gone', 'wrong', 'thank', 'karen', 'spelbr'], ['great'], ['phone', 'great', 'altern', 'buy', 'full', 'price', 'phone', 'screen', 'littl', 'sensit', 'overal', 'good', 'phone'], ['work', 'perfect', 'verizon', 'even', 'though', 'item', 'descript', 'indic', 'minor', 'scratch', 'none', 'near', 'new', 'best', 'part', 'get', 'phone', 'back', 'without', 'resign', 'new', 'contract'], ['great'], ['purchas', 'phone', 'daughter', 'christma', 'within', 'day', 'touch', 'screen', 'stop', 'work', 'email', 'vendor', 'amazon', 'sinc', 'march', 'keep', 'get', 'runaround', 'tell', 'noth', 'past', 'day', 'start', 'communic', 'not', 'reason', 'past', 'day', 'would', 'never', 'give', 'answer', 'replac', 'refund', 'item', 'never'], ['phone', 'cheaper', 'buy', 'new', 'one', 'wish', 'knew', 'go', 'scratch', 'work', 'fine', 'not', 'realli', 'complain', 'price', 'arriv', 'time', 'everyth', 'need'], ['quit', 'work', 'sudden', 'week'], ['good', 'phone', 'look', 'non', 'smartphon', 'data', 'love'], ['not', 'get', 'signal', 'call', 'verizon', 'reason', 'not', 'work', 'said', 'think', 'hardwar', 'issu', 'return'], ['biggest', 'wast', 'money', 'ever', 'phone', 'not', 'last', 'two', 'month', 'touch', 'screen', 'longer', 'oper', 'could', 'not', 'send', 'text', 'messag', 'make', 'call', 'never', 'busi', 'peopl', 'cours', 'tri', 'return', 'warranti', 'return', 'day', 'look', 'throw', 'away', 'phone', 'get', 'one', 'think', 'cheaper', 'one'], ['thank'], ['readi', 'go', 'alreadi', 'contract', 'verizon', 'simpli', 'activ', 'good', 'go', 'thank', 'would', 'definit', 'repurchas', 'phone', 'take', 'beat', 'not', 'swim', 'previous', 'phone', 'last', 'year', 'still', 'function', 'quit', 'well', 'till', 'droop', 'cup', 'water', 'great', 'phone', 'great', 'seller', 'great', 'price'], ['work', 'great', 'thank', 'alot'], ['lg', 'cosmo', 'cell', 'phone', 'work', 'great', 'hard', 'cover', 'great', 'need', 'outsid', 'work', 'fit', 'perfect', 'pant', 'pocket', 'new', 'batteri', 'last', 'hour', 'thank', 'amazon', 'keep', 'one', 'shelf'], ['phone', 'good', 'basic', 'phone', 'nice', 'keyboard', 'bigger', 'finger', 'get', 'great', 'servic', 'small', 'enough', 'not', 'uncomfort', 'pocket'], ['not', 'phone', 'week', 'screen', 'alreadi', 'went', 'black', 'go', 'verizon', 'get', 'new', 'phone', 'need', 'phone', 'done', 'buy', 'phone', 'amazon'], ['great', 'inconveni', 'not', 'get', 'manuel', 'figur', 'thin', 'gs', 'go'], ['great', 'replac', 'phone', 'bell', 'whistl', 'expens', 'phone', 'speakeer', 'phone', 'great', 'voic', 'call', 'id', 'date', 'camera', 'good'], ['son', 'lost', 'new', 'verison', 'phone', 'made', 'cell', 'phone', 'lost', 'purchas', 'use', 'phone', 'amazon', 'item', 'ship', 'time', 'reason', 'price', 'use', 'cell', 'phone', 'work', 'great', 'least', 'lose', 'anoth', 'phone', 'not', 'cost', 'arm', 'leg', 'replac'], ['like', 'type', 'phone', 'use', 'emergi', 'call', 'road', 'drive', 'locat', 'good', 'recept', 'clear', 'talk', 'someon'], ['hey', 'referb', 'phone', 'price', 'not', 'beat', 'not', 'save', 'lot', 'money', 'phone', 'bill', 'i', 'not', 'pay', 'crazi', 'markup', 'price', 'buy', 'retail', 'selv'], ['phone', 'horribl', 'keyboard', 'not', 'work', 'bunch', 'button', 'broken', 'phone', 'random', 'shut', 'charg', 'not', 'work'], ['satifi'], ['look', 'basic', 'phone', 'lg', 'perfect', 'phone', 'coupl', 'day', 'pleas', 'ship', 'phone', 'qualiti', 'not', 'even', 'look', 'like', 'use', 'love', 'keyboard', 'messag', 'overal', 'qualiti', 'smart', 'phone', 'discontinu', 'servic', 'not', 'need', 'bell', 'whistl', 'save', 'money', 'not', 'data', 'phone', 'plus', 'contract', 'verizon', 'custom', 'wear', 'hear', 'aid', 'phone', 'hear', 'impair', 'includ', 'bluetooth', 'neckloop', 'user'], ['wife', 'enjoy', 'phone', 'problem', 'not', 'work', 'well', 'tumbl', 'wash', 'machin'], ['work', 'like', 'noth', 'fanci', 'job', 'someon', 'not', 'need', 'bell', 'whistl', 'smartphon', 'provid'], ['work', 'great', 'good', 'servic', 'data', 'fast', 'messag', 'facebook', 'want', 'post', 'buy', 'anyday'], ['exact', 'advertis', 'phone', 'clean', 'scrub', 'abl', 'instant', 'switch', 'servic', 'work', 'without', 'flaw', 'sinc', 'servic', 'deliveri', 'prompt', 'well', 'would', 'recommend', 'buyer'], ['say', 'great', 'cell', 'phone', 'like', 'way', 'phone', 'work', 'look', 'week', 'seller', 'handl', 'transact', 'time', 'manner', 'product', 'arriv', 'time', 'manner', 'one', 'piec', 'overal', 'great', 'experi'], ['receiv', 'schedul', 'time', 'quick', 'easi', 'activ', 'user', 'friend'], ['ship', 'right', 'place', 'order', 'arriv', 'sunday', 'school', 'start', 'appreci', 'lot', 'phone', 'look', 'not', 'bad', 'pretti', 'good', 'deal', 'guy', 'best'], ['ph', 'good', 'option', 'rearrang', 'desktop', 'pictur', 'taken', 'not', 'need', 'steadi'], ['beat', 'not', 'expect', 'not', 'worth', 'still', 'wait', 'wait', 'hear', 'bsrcelluar', 'return', 'thank'], ['bought', 'mani', 'item', 'onlin', 'worst', 'purchas', 'ever', 'make', 'receiv', 'call', 'batteri', 'need', 'charg'], ['made', 'mistak', 'not', 'order', 'alreadi', 'configur', 'network', 'love', 'phone'], ['bought', 'phone', 'need', 'new', 'phone', 'phone', 'got', 'excit', 'put', 'charg', 'pick', 'next', 'morn', 'sure', 'enough', 'button', 'phone', 'not', 'work', 'angri', 'contact', 'said', 'bad', 'happen'], ['phone', 'arriv', 'not', 'sent', 'wrong', 'batteri', 'also', 'wrong', 'cover', 'plate', 'well', 'bit', 'piec', 'various', 'fair', 'i', 'own', 'lg', 'vu', 'past', 'work', 'condit', 'realli', 'love', 'phone', 'touch', 'screen', 'work', 'well', 'without', 'over', 'sensit', 'camera', 'amaz', 'qualiti', 'take', 'better', 'pictur', 'digit', 'camera', 'high', 'reccomend', 'phone', 'also', 'reccomend', 'care', 'order', 'onlin'], ['wari', 'order', 'phone', 'onlin', 'not', 'make', 'mistak', 'item', 'seller', 'item', 'ship', 'quick', 'phone', 'brand', 'new', 'condit', 'work', 'like', 'brand', 'new', 'phone', 'put', 'sim', 'card'], ['lg', 'one', 'best', 'cheap', 'phone', 'work', 'well', 'price', 'got', 'mani', 'featur', 'compat', 'latest', 'smart', 'phone', 'like', 'blackberri', 'samsung', 'one', 'best', 'phone', 'recent', 'market'], ['seller', 'done', 'great', 'job', 'make', 'sure', 'everyth', 'right', 'n', 'happi'], ['thank'], ['celphon', 'guy', 'would', 'use', 'flagship', 'mobil', 'galaxi', 'one', 'soni', 'blackberri', 'iphon', 'lg', 'lot', 'review', 'net', 'youtub', 'want', 'say', 'someth', 'bsae', 'week', 'use', 'screen', 'quad', 'recogniz', 'test', 'put', 'preload', 'photo', 'soni', 'xperia', 'put', 'togeth', 'guess', 'could', 'see', 'detail', 'preload', 'photo', 'brigther', 'notic', 'test', 'one', 'rear', 'speaker', 'yes', 'unbeliverbl', 'could', 'hear', 'ring', 'away', 'insid', 'anoth', 'room', 'review', 'said', 'poor', 'speaker', 'not', 'buy', 'antutu', 'one', 'soni', 'result', 'soni', 'one', 'soni', 'least', 'point', 'ui', 'beati', 'smart', 'use', 'not', 'need', 'power', 'button', 'add', 'button', 'homelin', 'not', 'home', 'back', 'nice', 'design', 'enjoy', 'much', 'lg', 'not', 'touch', 'galaxi', 'iphon', 'samsung', 'eat', 'batteri', 'tiger', 'slow', 'chang', 'app', 'noth', 'benmark', 'point', 'slow', 'not', 'soft', 'iphon', 'got', 'iphon', 'nfc', 'open', 'bluetooth', 'easi', 'manag', 'file', 'without', 'conect', 'pc', 'big', 'screen', 'sorri', 'none', 'better', 'price', 'oh', 'never', 'pay', 'money', 'buy', 'flagship', 'android', 'phone', 'htc', 'one', 'soni', 'xperia', 'good', 'could', 'help'], ['nice', 'phone', 'bought', 'phone', 'said', 'lte', 'sent', 'phone', 'disappoint'], ['awesom', 'phone', 'work', 'perfect', 'australia', 'anyon', 'want', 'know'], ['i', 'first', 'day', 'use', 'devic', 'seem', 'good', 'moreov', 'ship', 'fast', 'least', 'i', 'satisfi'], ['great', 'product'], ['great', 'phone', 'best', 'far', 'fast'], ['use', 'phone', 'two', 'month', 'think', 'two', 'month', 'enough', 'time', 'abl', 'give', 'object', 'review', 'far', 'best', 'phone', 'ever', 'last', 'phone', 'soni', 'xperia', 'soni', 'xperia', 'z', 'lg', 'optimus', 'g', 'htc', 'one', 'iphon', 'love', 'way', 'phone', 'built', 'light', 'look', 'great', 'plastic', 'feel', 'like', 'metal', 'button', 'back', 'easili', 'reachabl', 'altough', 'rare', 'use', 'not', 'like', 'mm', 'jack', 'bottom', 'screen', 'superb', 'qhd', 'best', 'get', 'today', 'super', 'respons', 'look', 'amaz', 'indoor', 'outdoor', 'anoth', 'stori', 'put', 'bright', 'control', 'abl', 'see', 'direct', 'sun', 'light', 'screen', 'wow', 'excel', 'camera', 'result', 'amaz', 'shoot', 'pictur', 'mpx', 'mpx', 'pictur', 'dual', 'tone', 'flash', 'realli', 'help', 'dark', 'imag', 'crisp', 'clear', 'also', 'record', 'full', 'hd', 'hd', 'fps', 'video', 'video', 'also', 'great', 'front', 'face', 'camera', 'ok', 'noth', 'spectacular', 'not', 'bad', 'either', 'wish', 'lg', 'would', 'given', 'user', 'option', 'manual', 'batteri', 'life', 'good', 'use', 'phone', 'hour', 'normal', 'day', 'screen', 'long', 'batteri', 'suffer', 'drastic', 'drop', 'general', 'good', 'not', 'great', 'great', 'perform', 'run', 'game', 'app', 'smooth', 'get', 'antutu', 'not', 'go', 'popular', 'opinion', 'realli', 'like', 'lg', 'android', 'feel', 'android', 'vanilla', 'limit', 'realli', 'not', 'enjoy', 'vanilla', 'android', 'experi', 'interfac', 'pretti', 'icon', 'nice', 'transit', 'awesom', 'lot', 'choos', 'android', 'call', 'phone', 'call', 'sound', 'great', 'signal', 'alway', 'good', 'one', 'big', 'problem', 'fact', 'not', 'get', 'lte', 'phone', 'without', 'get', 'lg', 'hidden', 'menu', 'option', 'simpli', 'not', 'get', 'hidden', 'menu', 'go', 'lte', 'select', 'band', 'manual', 'get', 'reboot', 'phone', 'phone', 'amaz', 'buy', 'price', 'not', 'go', 'wrong', 'oh', 'someth', 'els', 'batteri', 'remov', 'take', 'micro', 'sd', 'card', 'gb'], ['not', 'buy', 'phone', 'phone', 'shut', 'batteri', 'plus', 'batteri', 'drain', 'extrem', 'fast'], ['great', 'phone'], ['wife', 'realli', 'love', 'great', 'phone', 'best', 'price'], ['order', 'phone', 'get', 'wth'], ['waz', 'amaz', 'reciev', 'product', 'time', 'recommend'], ['excel', 'punto'], ['touch', 'screen', 'not', 'work', 'month', 'use', 'say', 'warranti', 'i', 'stuck', 'useless', 'phone', 'sad'], ['excel', 'smartphon', 'bought', 'wife', 'love'], ['must', 'say', 'arriv', 'quick', 'via', 'amazon', 'prime', 'appear', 'new', 'like', 'gold', 'color', 'complaint', 'research', 'read', 'review', 'purchas', 'charg', 'use', 'disast', 'start', 'unfold', 'not', 'hold', 'batteri', 'quick', 'drain', 'alway', 'charger', 'close', 'although', 'charg', 'pretti', 'quick', 'next', 'annoy', 'thing', 'phone', 'person', 'end', 'not', 'hear', 'unless', 'take', 'case', 'put', 'speaker', 'phone', 'someon', 'pocket', 'got', 'piec', 'end', 'buy', 'new', 'proper', 'function', 'phone', 'never', 'buy', 'phone', 'onlin', 'go', 'store', 'experi'], ['purchas', 'product', 'month', 'month', 'sinc', 'start', 'use', 'motherboard', 'stop', 'work', 'without', 'contact', 'front', 'situat', 'get', 'answer', 'noth', 'go', 'fix', 'local', 'cell', 'store', 'decept', 'not', 'better', 'word', 'describ', 'not', 'recommend', 'buy', 'store', 'problem', 'nobodi', 'help', 'case', 'not', 'broken', 'screen', 'user', 'problem', 'produc', 'warranti', 'mobil', 'store', 'ignor', 'bad', 'servic', 'care'], ['great', 'camera', 'batteri'], ['great', 'phone', 'awesom', 'qualityth', 'bad', 'thing', 'batteri', 'drain', 'like', 'crazi', 'charger', 'need', 'differ', 'usual', 'one'], ['real', 'deal', 'unlock', 'love'], ['buy', 'cel', 'wife', 'not', 'open', 'facebook', 'messeng', 'download', 'not', 'say', 'not', 'bring', 'extern', 'memori', 'intern', 'real', 'unhappi'], ['model', 'overh', 'issu', 'go', 'instead', 'great'], ['phone', 'mess', 'phone', 'shut', 'phone', 'run', 'hot'], ['great', 'phone', 'price', 'point', 'problem', 'ship', 'part', 'took', 'long', 'wait', 'worth'], ['phone', 'work', 'great', 'us', 'featur', 'awesom', 'howev', 'charger', 'not', 'work', 'us', 'i', 'charg', 'via', 'laptop', 'take', 'longer', 'drain', 'faster', 'i', 'constant', 'keep', 'charg'], ['nice', 'phone'], ['excel', 'product', 'need'], ['get', 'heat', 'quick', 'minim', 'use', 'app', 'run', 'take', 'lot', 'time', 'fulli', 'charg', 'batteri', 'expect', 'think', 'not', 'fast', 'charg', 'capabl', 'batteri', 'drain', 'quick', 'not', 'even', 'handl', 'minim', 'usag', 'day', 'issu', 'phone', 'work', 'great', 'crucial', 'call', 'good', 'phone', 'think'], ['not', 'met', 'expect', 'camer', 'low', 'qualiti', 'not', 'like', 'lg', 'not', 'understand', 'model'], ['great', 'price', 'fast', 'ship', 'love', 'product'], ['larg', 'sometim', 'get', 'glitchi', 'also', 'not', 'group', 'chat', 'complaint', 'great', 'phone'], ['gift', 'friend'], ['muy', 'bien', 'todo'], ['work', 'good'], ['nice', 'cell'], ['bad', 'phone', 'tone', 'problem', 'could', 'not', 'get', 'money', 'back'], ['expect', 'like', 'lg', 'phone', 'not', 'look', 'alik', 'not', 'oper', 'slow', 'hate', 'phone', 'moment', 'turn'], ['front', 'camera', 'not', 'great'], ['great', 'product', 'thank'], ['nice', 'phone', 'ton', 'great', 'featur', 'eleg', 'design'], ['come', 'mani', 'year', 'iphon', 'want', 'mobil', 'larger', 'size', 'last', 'iphon', 'iphon', 'find', 'price', 'plus', 'total', 'crazi', 'found', 'interet', 'good', 'refer', 'lg', 'first', 'delight', 'android', 'find', 'much', 'logic', 'intuit', 'manag', 'io', 'not', 'mention', 'nightmar', 'itun', 'lg', 'exceed', 'best', 'expect', 'happi', 'choic', 'deliveri', 'time', 'recommend'], ['simpl', 'best', 'phone', 'best', 'look', 'devic', 'market', 'power', 'need', 'lte', 'rang', 'awesom'], ['satisfi'], ['use', 'phone', 'india', 'good', 'latest', 'featur', 'nice', 'camera', 'tv', 'remot', 'fulli', 'satisfi'], ['great', 'phone', 'not', 'issu'], ['excel', 'product'], ['great', 'phone'], ['not', 'work', 'like'], ['love', 'problem', 'not', 'wait', 'use', 'turkey'], ['absolut', 'love', 'new', 'phone', 'deliveri', 'fast', 'noth', 'could', 'complain'], ['perfect', 'everi', 'way'], ['not', 'use', 'friend', 'complain', 'batteri', 'not', 'review', 'otherwis', 'think', 'pretti', 'neat', 'phone'], ['great', 'phone', 'awesom', 'price'], [], ['love', 'first', 'lg', 'phone', 'say', 'soo', 'hd', 'screen', 'best', 'ever', 'camera', 'good', 'hight', 'densiti', 'softwar', 'fast', 'phone', 'beauty', 'dese', 'anyway', 'great', 'great', 'phone', 'love'], ['hi', 'bought', 'phone', 'phone', 'exact', 'year', 'like', 'wifi', 'not', 'stay', 'keep', 'turn', 'whenev', 'tri', 'turn', 'not', 'wrong', 'not', 'know', 'phone', 'never', 'fell', 'disappoint'], ['legit'], ['arriv', 'broken', 'screen'], ['exact', 'i', 'would', 'hope', 'came', 'good', 'time'], ['love', 'charger', 'not', 'charg', 'phone'], ['extrem', 'happi', 'new', 'phone', 'titl', 'say', 'got', 'ad', 'micro', 'sd', 'got', 'think', 'max', 'sd', 'plus', 'came', 'with', 'phone', 'someth', 'like', 'storag', 'display', 'big', 'iphon', 'plus', 'anyway', 'spec', 'good', 'not', 'better', 'issu', 'would', 'batteri', 'not', 'great', 'i', 'would', 'think', 'not', 'care', 'sinc', 'portabl', 'power', 'bank', 'phone', 'make', 'iphon', 'friend', 'feel', 'uncomfort'], ['love', 'phone', 'perfect'], ['realli', 'fast', 'great', 'look'], ['enough', 'understand', 'devic', 'eye', 'set', 'devic', 'perfect', 'like', 'great', 'phone', 'heat', 'fast', 'batteri', 'fast', 'requir', 'long', 'time', 'first', 'charg', 'use', 'besid', 'everyth', 'nice', 'honest', 'descript', 'seller', 'new', 'high', 'qualiti', 'headphon', 'etc'], ['nice', 'unlock', 'phone', 'i', 'use', 'sever', 'countri', 'local', 'carri', 'work', 'fine'], ['excelent', 'producto'], ['ok'], ['work', 'perfect', 'venezuela', 'movistar', 'nice', 'phone'], ['love', 'phone', 'power', 'never', 'experi', 'lag', 'build', 'qualiti', 'absolut', 'fantast', 'quad', 'hd', 'display', 'amaz', 'eye', 'qualiti', 'perfect', 'front', 'rear', 'though', 'feel', 'inbuilt', 'camera', 'featur', 'quiet', 'less', 'not', 'show', 'stopper', 'alway', 'use', 'camera', 'app', 'store', 'realli', 'like', 'magic', 'got', 'phone', 'android', 'superb', 'hear', 'upgrad', 'mashmallow'], ['best', 'phone', 'ever'], ['price', 'best', 'option', 'screen', 'wonder', 'big', 'screen', 'content', 'size', 'shame', 'softwar', 'not', 'complet', 'optim', 'best', 'disabl', 'smart', 'bulletin', 'smooth', 'desktop', 'far', 'good', 'updat', 'review', 'problem'], ['awesom', 'sauc'], ['awesom', 'devic', 'great', 'servic', 'seller'], ['mobil', 'amaz', 'fast', 'beauti', 'appear', 'thin', 'batteri', 'low', 'complet', 'day', 'without'], ['best', 'phone', 'ever', 'issu', 'i', 'batteri', 'drain', 'keep', 'wall', 'charger', 'everyth', 'els', 'wonder', 'camera', 'audio', 'qualiti', 'i', 'use', 'lg', 'g', 'watch', 'total', 'recomend'], ['lg', 'fast', 'screen', 'beauti', 'reconfirm', 'not', 'work', 'us', 'cricket', 'wireless', 'network', 'connect', 'plenti', 'fast', 'enough', 'need', 'want', 'screen', 'also', 'user', 'replac', 'batteri', 'expand', 'storag', 'excel', 'user', 'would', 'like', 'keep', 'phone', 'longer', 'life', 'good', 'easili', 'last', 'throughout', 'day', 'averag', 'updat', 'could', 'frequent', 'phone', 'still', 'android', 'rumor', 'releas', 'wait', 'lg', 'softwar', 'overlay', 'function', 'not', 'detract', 'experi', 'camera', 'take', 'excel', 'photo', 'extrem', 'fast', 'focus', 'camera', 'beyond', 'ever', 'need', 'smartphon', 'even', 'use', 'phone', 'remot', 'control', 'featur', 'not', 'greatest', 'due', 'poor', 'think', 'still', 'phone', 'avail', 'screen', 'price', 'rang', 'extra', 'gb', 'ram', 'intern', 'version', 'appreci', 'recommend', 'buy', 'glass', 'screen', 'cover', 'protect', 'beauti', 'screen'], ['one', 'favorit', 'phone', 'ever', 'own', 'look', 'solid', 'feel', 'second', 'hand', 'phone', 'i', 'variant', 'say', 'without', 'doubt', 'want', 'get', 'gigabyt', 'version', 'extra', 'ram', 'space', 'necessari', 'screen', 'shine', 'star', 'get', 'use', 'screen', 'look', 'outdat', 'cheap', 'minus', 'soni', 'screen', 'look', 'great', 'bought', 'outright', 'full', 'price', 'droid', 'turbo', 'htc', 'one', 'soni', 'xperia', 'blu', 'life', 'pure', 'mini', 'oneplus', 'one', 'iphon', 'lg', 'coupl', 'other', 'daili', 'driver', 'replac', 'note', 'not', 'reason', 'want', 'phone', 'fingerprint', 'scanner', 'big', 'screen', 'bought', 'price', 'low', 'fine', 'devic', 'atlas', 'anoth', 'year', 'mayb', 'even', 'two', 'quick', 'everyth', 'els', 'bad', 'intl', 'version', 'usa', 'mine', 'plenti', 'fast', 'h', 'may', 'realli', 'bug', 'peopl', 'one', 'issu', 'alway', 'phone', 'person', 'though', 'soc', 'sd', 'beast', 'soc', 'pair', 'adreno', 'hall', 'ball', 'not', 'quit', 'readi', 'power', 'screen', 'handl', 'heavi', 'notic', 'place', 'get', 'use', 'noth', 'noteworthi', 'start', 'realli', 'throw', 'lot', 'task', 'phone', 'see', 'screen', 'stutter', 'quit', 'bit', 'first', 'amazon', 'aw', 'sound', 'aux', 'port', 'mean', 'bad', 'new', 'gig', 'sound', 'could', 'not', 'better', 'loud', 'clear', 'appl', 'qualiti', 'chalk', 'bad', 'experi', 'first', 'one', 'bad', 'would', 'recommend', 'phone', 'anyon', 'want', 'flagship', 'screen', 'not', 'want', 'spend', 'ton', 'money', 'outright', 'unless', 'ton', 'youtub', 'mobil', 'data', 'plan', 'lack', 'lte', 'go', 'unnot', 'afford', 'spend', 'extra', 'get', 'galaxi', 'note'], ['phone', 'mess', 'phone', 'shut', 'phone', 'run', 'hot'], ['problem', 'languag', 'hebrew', 'rest', 'good'], ['awesom', 'cell', 'one', 'best', 'ever', 'hav', 'right', 'design', 'abil', 'app', 'processor', 'everi', 'thing', 'star', 'love', 'never', 'lg', 'cell', 'order', 'expect', 'honest', 'perform', 'par', 'excel', 'thank', 'lg', 'launch', 'mind', 'blow', 'phone'], ['order', 'lg', 'gb', 'delov', 'lg'], ['get', 'heat', 'quick', 'minim', 'use', 'app', 'run', 'take', 'lot', 'time', 'fulli', 'charg', 'batteri', 'expect', 'think', 'not', 'fast', 'charg', 'capabl', 'batteri', 'drain', 'quick', 'not', 'even', 'handl', 'minim', 'usag', 'day', 'issu', 'phone', 'work', 'great', 'crucial', 'call', 'good', 'phone', 'think'], ['realli', 'like', 'phone', 'howev', 'lock', 'button', 'back', 'not', 'function', 'even', 'doubl', 'tap', 'function', 'batteri', 'better', 'iphon', 'not', 'great', 'amaz', 'camera', 'love', 'high', 'def', 'screen', 'batteri', 'broke', 'year', 'month', 'need', 'new', 'batteri', 'want', 'abl', 'use', 'phone', 'second', 'disconnect'], ['excelent'], ['receiv', 'brand', 'new', 'intern', 'version', 'phone', 'good', 'damag', 'far', 'good'], ['excel'], ['write', 'review', 'use', 'devic', 'month', 'go', 'straight', 'forward', 'review', 'without', 'go', 'much', 'use', 'devic', 'safe', 'say', 'best', 'beast', 'phone', 'perform', 'top', 'notch', 'instal', 'like', 'game', 'alreadi', 'includ', 'dytona', 'race', 'asphalt', 'etc', 'run', 'smoothlyscreen', 'gorgeous', 'screen', 'use', 'till', 'date', 'text', 'sharp', 'screen', 'problem', 'face', 'use', 'devic', 'direct', 'sunlight', 'bright', 'use', 'safe', 'say', 'among', 'best', 'camera', 'mobil', 'devic', 'cours', 'lg', 'comparison', 'phone', 'howev', 'manual', 'control', 'perform', 'mind', 'blow', 'instal', 'game', 'asphalt', 'dytona', 'race', 'subway', 'surfer', 'etc', 'handl', 'without', 'medium', 'usag', 'last', 'day', 'medium', 'high', 'usag', 'last', 'day', 'high', 'user', 'charg', 'devic', 'nice', 'output', 'read', 'speaker', 'music', 'process', 'headphon', 'good', 'beauti', 'ui', 'knock', 'knock', 'code', 'featur', 'favorit', 'lg', 'ui', 'offer', 'lot', 'option', 'sum', 'not', 'go', 'wrong', 'choos', 'lg', 'bang', 'buck'], ['purchas', 'product', 'month', 'month', 'sinc', 'start', 'use', 'motherboard', 'stop', 'work', 'without', 'contact', 'front', 'situat', 'get', 'answer', 'noth', 'go', 'fix', 'local', 'cell', 'store', 'decept', 'not', 'better', 'word', 'describ', 'not', 'recommend', 'buy', 'store', 'problem', 'nobodi', 'help', 'case', 'not', 'broken', 'screen', 'user', 'problem', 'produc', 'warranti', 'mobil', 'store', 'ignor', 'bad', 'servic', 'care'], ['lg', 'say', 'excel', 'qualiti', 'realli', 'fast', 'sharp', 'display', 'wish', 'batteri', 'last', 'like', 'old', 'lg', 'not', 'bad', 'either', 'price', 'better', 'lot', 'new', 'phone'], ['awesom', 'love'], ['fabul', 'amaz', 'featur', 'design', 'human', 'use', 'lg', 'exceed', 'expect'], ['bought', 'phone', 'month', 'ago', 'realli', 'nice', 'problem', 'right', 'side', 'touch', 'screen', 'not', 'alway', 'work', 'not', 'bad', 'screen', 'insid', 'fade', 'corner', 'not', 'bad', 'not', 'usabl', 'price', 'awsom', 'phone', 'camera', 'good'], ['great', 'phone'], ['good'], ['purchas', 'phone', 'week', 'ago', 'keerkeer', 'wireless', 'realli', 'like', 'howev', 'one', 'issu', 'say', 'seller', 'phone', 'advertis', 'sold', 'new', 'phone', 'not', 'new', 'phone', 'lifetim', 'call', 'timer', 'not', 'reset', 'show', 'hour', 'usag', 'phone', 'data', 'timer', 'also', 'show', 'lot', 'use', 'new', 'phone', 'find', 'fals', 'advertis', 'wrong', 'like', 'phone', 'good', 'condit', 'paid', 'new', 'phone', 'phone', 'receiv', 'not', 'new', 'phone', 'also', 'upset', 'amazon', 'allow', 'take', 'place', 'compani', 'work', 'not', 'believ', 'not', 'know', 'take', 'place', 'one', 'happen'], ['calcul', 'not', 'work', 'front', 'screen', 'not', 'light', 'phone', 'call', 'phone', 'shut', 'speaker', 'not', 'work', 'either', 'pictur', 'not', 'eras', 'person', 'phone'], ['realli', 'like', 'phone', 'seller', 'honest', 'descript', 'product', 'easi', 'fun', 'use'], ['i', 'env', 'touch', 'lot', 'peopl', 'complain', 'screen', 'come', 'unlock', 'put', 'pocket', 'i', 'never', 'problem', 'pocket', 'dial', 'peopl', 'simpli', 'hit', 'side', 'lock', 'button', 'twice', 'screen', 'goe', 'black', 'not', 'anyth', 'pocket', 'purchas', 'second', 'phone', 'today', 'neglig', 'broke', 'first', 'one', 'pictur', 'qualiti', 'great', 'light', 'weight', 'simpl', 'not', 'confus', 'could', 'lil', 'louder', 'need', 'whole', 'world', 'know', 'got', 'text', 'call', 'time', 'i', 'problem', 'phone', 'need', 'system', 'updat', 'would', 'shut', 'whenev', 'got', 'onlin', 'simpl', 'trip', 'verizon', 'store', 'free', 'updat', 'problem', 'solv', 'i', 'would', 'recommend', 'phone', 'anyon'], ['bought', 'year', 'old', 'daughter', 'not', 'pay', 'smart', 'phone', 'data', 'seem', 'like', 'good', 'phone', 'text', 'talk', 'send', 'text', 'month', 'issu', 'phone', 'text', 'eas'], ['thank'], ['ok', 'phone'], ['horribl', 'phone', 'wast', 'money', 'wait', 'week', 'get', 'refund', 'bought', 'phone', 'arriv', 'super', 'fast', 'not', 'work', 'messag', 'say', 'pleas', 'use', 'genuin', 'batteri', 'never', 'work', 'turn', 'horribl', 'horribl', 'horribl'], ['bad', 'purchas', 'constant', 'garbl', 'text', 'messag', 'get', 'rid'], ['bought', 'yr', 'old', 'daughter', 'replac', 'contract', 'phone', 'broke', 'abl', 'add', 'verizon', 'plan', 'easili', 'not', 'extend', 'contract', 'time', 'consid', 'phone', 'futur', 'love', 'phone', 'besid', 'tini', 'scratch', 'around', 'camera', 'hole', 'would', 'never', 'know', 'use', 'fast', 'shipment', 'realli', 'like', 'letter', 'mail', 'ask', 'chanc', 'make', 'right', 'prior', 'leav', 'negat', 'feedback', 'memori', 'not', 'much', 'would', 'defin', 'recommend', 'get', 'addit', 'sd', 'card', 'plan', 'download', 'music'], ['kind', 'phone', 'might', 'great', 'might', 'crappi', 'look', 'never', 'use', 'phone', 'definit', 'not', 'go', 'dealer', 'bought', 'even', 'though', 'worri', 'review', 'receiv', 'phone', 'sure', 'enough', 'sign', 'minor', 'use', 'scratch', 'verizon', 'told', 'activ', 'call', 'ask', 'dealscali', 'either', 'guarante', 'new', 'phone', 'send', 'full', 'refund', 'got', 'refund', 'appar', 'not', 'sell', 'new', 'phone', 'head'], ['take', 'horribl', 'pictur', 'touch', 'pad', 'suck', 'got', 'phone', 'not', 'want', 'learn', 'new', 'phone', 'time', 'mistak'], ['great', 'gift'], ['replac', 'prior', 'item', 'exact', 'type', 'model', 'final', 'wore', 'like', 'much', 'bought', 'replac', 'not', 'last', 'forev', 'know'], ['love', 'love', 'love', 'phone', 'got', 'replac', 'samsung', 'intens', 'ii', 'not', 'like', 'switch', 'phone', 'great', 'love', 'featur', 'phone', 'well', 'simplic', 'use', 'touch', 'screen', 'draw', 'pictur', 'even', 'write', 'messag', 'not', 'good', 'flip', 'keyboard', 'write', 'messag', 'way', 'love', 'eas', 'get', 'around', 'menus', 'find', 'everi', 'featur', 'pretti', 'easili', 'camera', 'great', 'shoot', 'video', 'pictur', 'got', 'mine', 'refurbish', 'not', 'tell', 'not', 'scratch', 'anyth', 'one', 'thing', 'though', 'definit', 'batteri', 'phone', 'cheap', 'buy', 'not', 'bad', 'buy', 'extra', 'batteri', 'first', 'one', 'definit', 'goe', 'fast', 'not', 'phone', 'would', 'perfect', 'edit', 'i', 'phone', 'four', 'month', 'still', 'love', 'reason', 'specifi', 'microphon', 'stop', 'work', 'anybodi', 'call', 'not', 'hear', 'thing'], ['samsung', 'zeal', 'stop', 'work', 'sever', 'year', 'use', 'got', 'thing', 'instead', 'anoth', 'zeal', 'think', 'would', 'littl', 'current', 'not', 'bought', 'anoth', 'zeal', 'anyth', 'els', 'realli', 'recept', 'realli', 'bad', 'samsung', 'format', 'littl', 'easier', 'use', 'opinion', 'kind', 'bulki', 'phone', 'stinker'], ['phone', 'attempt', 'updat', 'four', 'day', 'way', 'never', 'accomplish', 'updat', 'time', 'not', 'use', 'phone', 'get', 'messag', 'updat', 'pleas', 'wait', 'not', 'turn', 'phone'], ['good', 'phone', 'held', 'back', 'suspect', 'batteri', 'high', 'chanc', 'key', 'may', 'stop', 'work'], ['front', 'not', 'work'], ['still', 'work', 'still', 'use', 'love', 'phone'], ['screen', 'crack', 'pocket', 'week', 'own', 'would', 'rate', 'one', 'star', 'not', 'bad', 'phone', 'flimsi'], ['love', 'phone', 'not', 'put', 'finger', 'screen', 'use', 'much', 'cleaner', 'one', 'phone', 'sever', 'year', 'final', 'wore', 'happi', 'abl', 'replac'], ['receiv', 'product', 'time', 'great', 'son', 'first', 'turn', 'phone', 'batteri', 'error', 'look', 'error', 'internet', 'see', 'fixabl', 'fix', 'problem', 'coupl', 'week', 'phone', 'turn', 'coupl', 'day', 'error', 'back', 'time', 'not', 'fixabl', 'turn', 'son', 'stuck', 'phone', 'last', 'week', 'disappoint', 'compani', 'purchas', 'phone', 'test', 'phone', 'sell'], ['phone', 'got', 'good', 'condit', 'far', 'look', 'go', 'part', 'everyth', 'reason', 'not', 'like', 'phone', 'got', 'like', 'shut', 'use', 'mad', 'imposs', 'use'], ['although', 'phone', 'cosmet', 'good', 'condit', 'letter', 'either', 'stick', 'not', 'type', 'right', 'away', 'light', 'number', 'outsid', 'light', 'open', 'phone', 'lock', 'text', 'messag', 'voicemail', 'messag', 'not', 'remov', 'phone', 'press', 'symbol', 'button', 'not', 'alway', 'work', 'either'], ['not', 'sure', 'batteri', 'charger', 'phone', 'either', 'way', 'dead', 'batteri', 'say', 'fulli', 'charg', 'within', 'coupl', 'minut', 'instant', 'die', 'use', 'devic', 'order', 'new', 'batteri', 'phone', 'see', 'issu'], ['good', 'phone', 'great', 'qualiti', 'came', 'time', 'work', 'well'], ['hope', 'keep', 'buy', 'phone', 'rest', 'life', 'not', 'want', 'need', 'smart', 'phone', 'screen', 'size', 'easi', 'use', 'button', 'perfect', 'plain', 'wonder'], ['love', 'everyth', 'said', 'receiv', 'ahead', 'date', 'schedul', 'receiv', 'great', 'surpris', 'sinc', 'origin', 'phone', 'stolen', 'need', 'phone'], ['easi', 'use', 'batteri', 'stay', 'charg', 'long', 'time', 'button', 'user', 'friend', 'big', 'enough', 'not', 'hit', 'wrong', 'combo'], ['best', 'smartphon', 'screen', 'i', 'found', 'quad', 'core', 'processor', 'imag', 'bright', 'clear', 'color', 'photo', 'video', 'occasion', 'slow', 'respons', 'most', 'quick', 'enough', 'take', 'micro', 'sdhc', 'card', 'extend', 'memori', 'would', 'nice', 'would', 'handl', 'gb', 'card', 'price', 'i', 'not', 'complain', 'android', 'downsid', 'mine', 'former', 'phone', 'run', 'tracfon', 'legaci', 'softwar', 'intrud', 'text', 'not', 'realli', 'work', 'not', 'seem', 'get', 'rid'], ['phone', 'deliv', 'quick', 'perfect', 'shape', 'new', 'state', 'work', 'great', 'problem'], ['want', 'job'], ['sinc', 'item', 'not', 'elig', 'return', 'replac', 'although', 'phone', 'less', 'two', 'month', 'must', 'give', 'unfavor', 'feedback', 'phone', 'drop', 'percent', 'call', 'also', 'drop', 'bluetooth', 'connect', 'purchas', 'anoth', 'phone', 'not', 'compani'], ['happi', 'purchas'], ['sever', 'design', 'flaw', 'make', 'pretti', 'miser', 'screen', 'touch', 'face', 'call', 'phone', 'hang', 'button', 'turn', 'volum', 'direct', 'across', 'button', 'lock', 'screen', 'hold', 'button', 'time', 'use', 'one', 'hand', 'natur', 'way', 'wake', 'screen', 'swipe', 'unlock', 'hold', 'button', 'sever', 'second', 'definit', 'becom', 'slide', 'phone', 'open', 'use', 'insid', 'key', 'pad', 'check', 'voicemail', 'screen', 'button', 'send', 'text', 'messag', 'make', 'easi', 'send', 'messag', 'readyseem', 'phone', 'not', 'text', 'put', 'market'], ['work', 'well', 'look', 'littl', 'larger', 'phone'], ['order', 'friend', 'mine', 'not', 'want', 'use', 'plan', 'data', 'charg', 'want', 'talk', 'text', 'pleas', 'phone', 'especi', 'slider', 'keyboard'], ['beauti', 'perfect', 'size', 'fit', 'pocket', 'purs', 'need', 'glass', 'need', 'dial', 'number'], ['not', 'accept'], ['like', 'phone', 'far', 'except', 'heat', 'problem', 'less', 'year', 'phone', 'start', 'get', 'hot', 'hang', 'start', 'use', 'use', 'map', 'lot', 'not', 'abl', 'use', 'map', 'phone', 'soon', 'start', 'map', 'locat', 'servic', 'phone', 'would', 'start', 'hang', 'start', 'get', 'hot', 'batteri', 'drain', 'super', 'fast'], ['phone', 'not', 'unlock', 'not', 'origin', 'softwar', 'not', 'happi', 'purchas'], ['husband', 'spend', 'lot', 'time', 'research', 'tablet', 'low', 'end', 'price', 'rang', 'got', 'refurbish', 'found', 'best', 'design', 'price', 'featur', 'ip', 'screen', 'clariti', 'good', 'though', 'not', 'top', 'line', 'like', 'samsung', 'mobil', 'phone', 'certain', 'best', 'need', 'lte', 'tablet', 'use', 'commut'], ['not', 'unlock', 'advertis', 'took', 'mexico', 'gift', 'got', 'back', 'spanish', 'option', 'told', 'largest', 'mexican', 'carrier', 'would', 'not', 'abl', 'use', 'mexico', 'unlock', 'would', 'charg', 'lot', 'guarante', 'would', 'work'], ['phone', 'specif', 'nice'], ['good'], ['amaz', 'phone', 'first', 'though', 'littl', 'thrown', 'dual', 'sim', 'show', 'sim', 'card', 'miss', 'not', 'true', 'took', 'littl', 'bit', 'figur', 'one', 'yes', 'one', 'sim', 'miss', 'dual', 'sim', 'phone', 'i', 'yrs', 'old', 'not', 'tech', 'savvi', 'great', 'recept', 'carrier', 'walmart', 'famili', 'mobil', 'power', 'seller', 'wonder', 'advis', 'devic', 'not', 'work', 'not', 'play', 'game', 'download', 'app', 'use', 'screen', 'size', 'amaz', 'work', 'fast', 'love', 'voic', 'search', 'googl', 'map', 'etc', 'high', 'recommend', 'phone', 'seller', 'well', 'lot', 'patienc'], ['got', 'phone', 'not', 'love', 'lot', 'nice', 'featur', 'quick', 'vibrant', 'color', 'take', 'nice', 'photo', 'pleas', 'far'], ['excel'], ['not', 'good', 'phone', 'sent', 'regist', 'someon', 'els', 'name', 'unabl', 'use', 'sim', 'card', 'although', 'activ', 'sim', 'alreadi', 'i', 'keep', 'use', 'sim', 'card', 'came', 'phone', 'month', 'payment'], ['good', 'cellphon', 'price'], ['great', 'phone'], ['pleas', 'purchas', 'deliv', 'att', 'phone', 'wireless', 'rep', 'walk', 'detail', 'configur', 'not', 'expect', 'satisfi', 'santa', 'monica'], ['love'], ['work', 'perfect', 'ok', 'price'], ['great', 'cell', 'phone', 'thank'], ['say', 'lg', 'vista', 'unlock', 'got', 'verizon', 'phone', 'not', 'work', 'want', 'money', 'back'], ['purchas', 'smaller', 'one'], ['got', 'tore', 'talk', 'speaker', 'phone', 'piec', 'crap', 'get', 'say', 'replac', 'well', 'never', 'happen', 'mention', 'suppos', 'new', 'phone', 'yea', 'use'], ['great', 'phone', 'lot', 'power', 'useful', 'design', 'smart', 'knock', 'screen', 'well', 'design', 'think', 'easi', 'use', 'long', 'batteri', 'last', 'plus'], ['fast', 'deliveri', 'exel', 'product', 'great', 'price', 'need', 'recomend'], ['phone', 'work', 'alright', 'first', 'coupl', 'day', 'start', 'glitch', 'not', 'use', 'speaker', 'phone', 'anymor', 'not', 'hear', 'i', 'say', 'not', 'fulli', 'impress'], ['cellphon', 'great', 'fast', 'best', 'phone', 'love', 'guarante'], ['terrifi', 'night', 'got', 'phone', 'read', 'review', 'get', 'phone', 'lock', 'although', 'advertis', 'unlock', 'let', 'us', 'say', 'came', 'unlock', 'everyth', 'work', 'connect', 'metro', 'pcs', 'although', 'ladi', 'counter', 'struggl', 'get', 'internet', 'work', 'sinc', 'origin', 'phone', 'abl', 'sort', 'anyway', 'phone', 'great', 'buy', 'phone', 'broke', 'say', 'although', 'came', 'rough', 'time', 'phone', 'feel', 'like', 'refresh', 'upgrad', 'great', 'watch', 'youtub', 'video', 'fps', 'overal', 'phone', 'feel', 'fast', 'strong', 'great', 'buy'], ['awesom', 'phone', 'mani', 'thing', 'stylish', 'pictur', 'video', 'perfect', 'clear', 'could', 'not', 'better'], ['good'], ['love', 'phone', 'work', 'great', 'came', 'fast', 'never', 'problem', 'tri', 'differ', 'sim', 'card', 'work', 'star'], ['realli', 'great', 'phone', 'setup', 'realli', 'easi', 'work', 'servic', 'perfect', 'metro', 'pcs'], ['good', 'item'], ['great', 'love', 'headphon'], ['wait', 'sever', 'day', 'ship', 'worthi', 'phone', 'beauti', 'hold', 'right', 'hand', 'camera', 'awesom', 'crispi', 'sharp', 'use', 'googl', 'camera', 'instead', 'app', 'though', 'give', 'better', 'pictur', 'taken', 'not', 'know', 'probabl', 'best', 'phone', 'buy', 'budget', 'phone', 'came', 'lock', 'wireless', 'depot', 'sent', 'unlock', 'code', 'realli', 'quick', 'realli', 'respons', 'custom', 'support', 'except', 'crappi', 'disgust', 'bloatwar', 'instal', 'like', 'one', 'much'], ['great', 'phone', 'realli', 'worth', 'price'], ['phone', 'fast', 'reliabl', 'issu', 'ever'], ['first', 'like', 'phone', 'screen', 'seem', 'give', 'sharp', 'pictur', 'screen', 'size', 'nice', 'phone', 'thin', 'week', 'pictur', 'start', 'flicker', 'becam', 'dull', 'time', 'would', 'improv', 'use', 'phone', 'happen', 'constant', 'would', 'use', 'phone', 'fifteen', 'minut', 'pictur', 'becom', 'crisp', 'batteri', 'life', 'terribl', 'would', 'go', 'coupl', 'hour', 'without', 'even', 'use', 'quicker', 'phone', 'use', 'constant', 'charg', 'camera', 'not', 'better', 'iphon', 'camera', 'disappoint', 'antenna', 'not', 'not', 'get', 'good', 'coverag', 'hous', 'phone', 'got', 'coverag', 'anoth', 'phone', 'servic', 'gps', 'terribl', 'waze', 'not', 'work', 'phone', 'work', 'anoth', 'phone', 'servic', 'kept', 'get', 'drop', 'googl', 'mayb', 'android', 'phone', 'bad', 'either', 'way', 'return', 'phone', 'not', 'tri'], ['excelent'], ['great', 'product'], ['muy', 'bueno'], ['love', 'new', 'phone'], ['good', 'phone', 'low', 'price', 'work', 'well', 'android', 'lollipop', 'i', 'disappoint', 'earphon', 'come', 'phone', 'first', 'time', 'see'], ['excelent', 'seller', 'love', 'new', 'phone'], ['excel', 'product', 'price'], ['good', 'phone', 'one', 'half', 'month', 'one', 'speaker', 'stop', 'work'], ['purchas', 'son', 'far', 'seem', 'satisfi'], ['good', 'phone', 'low', 'cost'], ['thank', 'good'], ['screen', 'go', 'coupl', 'hour', 'devic', 'shut', 'not', 'turn', 'back', 'never', 'buy', 'anoth', 'lg'], ['week', 'not', 'found', 'anyth', 'not', 'love'], ['phone', 'husband', 'found', 'easi', 'use'], ['bought', 'fan', 'replac', 'samsung', 'note', 'cool', 'fast', 'enjoy', 'lot', 'use', 'go', 'work', 'nice', 'screen', 'sound', 'great', 'well'], ['cellphon', 'not', 'even', 'turn'], ['great', 'phone', 'price'], ['nice', 'size', 'larg', 'hand', 'great', 'batteri', 'life', 'smooth', 'function', 'great', 'price'], ['great', 'phone', 'fast', 'smooth'], ['greatt', 'phone'], ['expect', 'good', 'review', 'great', 'price', 'great', 'phone'], ['realli', 'love', 'phone', 'drop', 'distanc', 'glass', 'shatter'], ['awesom', 'phone'], ['screen', 'stop', 'work'], ['excel', 'could', 'not', 'ask'], ['great', 'phone'], ['arriv', 'broken', 'lcd', 'defect', 'could', 'not', 'even', 'get', 'replac'], ['nice', 'phone', 'good', 'camera', 'video', 'record', 'thing', 'see', 'need', 'improv', 'speaker'], ['poor', 'qualiti', 'aw', 'sound', 'batteri', 'not', 'stay', 'charg', 'long'], ['amaiz', 'one', 'good', 'deal'], ['screen', 'went', 'black', 'septemb', 'month', 'would', 'not', 'recommend'], ['size', 'iphon', 'not', 'big', 'today', 'standard', 'still', 'manag', 'fit', 'big', 'batteri', 'big', 'bright', 'screen', 'small', 'enough', 'fit', 'pant', 'pocket', 'screen', 'signific', 'larger', 'iphon', 'batteri', 'last', 'longer', 'almost', 'day', 'android', 'phone', 'perfect', 'balanc', 'featur', 'could', 'bought', 'newer', 'phone', 'either', 'big', 'shorter', 'batteri', 'live', 'smaller', 'screen', 'plus', 'lg', 'much', 'less', 'expens', 'almost', 'newer', 'phone'], ['super', 'phone', 'angri', 'batteri', 'realli', 'give', 'one', 'star', 'super', 'anoy', 'charg', 'lot', 'day', 'found', 'use', 'low', 'amp', 'charger', 'help', 'amp', 'lowest', 'better', 'amp', 'come'], ['great', 'product', 'fast', 'ship', 'con', 'found', 'phone', 'came', 'without', 'happi', 'new', 'phone'], ['excel'], ['work', 'great', 'argentina'], ['thank', 'good'], ['everyth', 'ok', 'bt', 'got', 'lockd'], ['phone', 'came', 'work', 'condit', 'camera', 'len', 'damag', 'need', 'replac', 'suppos', 'refurbish', 'phone', 'well', 'use', 'best'], ['mobil', 'hotspot'], ['bought', 'phone', 'week', 'ago', 'amazon', 'phone', 'work', 'fine', 'camera', 'shaki', 'know', 'abnorm', 'anoth', 'lg', 'one', 'camera', 'perfect', 'photo', 'attach', 'one', 'old', 'lg', 'one', 'new', 'lg', 'i', 'bought', 'amazon', 'differ', 'clear', 'i', 'realli', 'realli', 'upset'], ['like', 'phone'], ['phone', 'describ', 'great', 'phone', 'great', 'price', 'good', 'batteri', 'life', 'fast', 'cell', 'phone', 'took', 'week', 'come', 'came', 'within', 'expect', 'ship', 'date', 'quot', 'well', 'worth', 'wait'], ['phone', 'came', 'china', 'seller', 'excel', 'market', 'gps', 'not', 'work', 'open', 'back', 'cover', 'tweek', 'gps', 'antenna', 'batteri', 'not', 'new', 'display', 'alway', 'dim', 'light', 'sensor', 'cover', 'someth', 'camera', 'qualiti', 'poor', 'though', 'bodi', 'phone', 'new', 'part', 'refurbish', 'even', 'assembl', 'poor', 'total', 'unexpect', 'amazon', 'not', 'return', 'put', 'scratch', 'open'], ['phone', 'work', 'perfect', 'networki', 'love', 'phone', 'not', 'slot', 'memori', 'card', 'bet', 'not', 'need', 'anyway'], ['awesom', 'like', 'batteri', 'life', 'import', 'detail', 'made', 'decid', 'one', 'plus', 'check', 'spec', 'pretti', 'good', 'phone', 'overal'], ['pretti', 'good', 'scratch', 'screen', 'wad', 'not', 'disclos', 'littl', 'glitch', 'scroll', 'overal', 'good', 'condit', 'much', 'better', 'wet', 'phone'], ['everyth', 'great', 'realiz', 'gps', 'not', 'work', 'proper', 'matter', 'set', 'chang', 'gps', 'would', 'rare', 'lock', 'would', 'not', 'updat', 'locat', 'drove', 'make', 'use', 'navig', 'option', 'googl', 'map', 'pointless', 'luckili', 'realiz', 'within', 'day', 'receiv', 'phone', 'usa', 'wireless', 'let', 'return', 'receiv', 'refund', 'within', 'week', 'receiv', 'item'], ['happi', 'item', 'came', 'describ', 'ship', 'time'], ['lot', 'better', 'last', 'phone', 'never', 'buy', 'latest', 'greatest', 'not', 'i', 'cheap', 'phone', 'stupid', 'internet', 'relat', 'fast', 'function', 'like', 'android', 'lot', 'featur', 'old', 'phone', 'not', 'check', 'time', 'weather', 'net', 'i', 'good'], ['fantast', 'batteri', 'life', 'good', 'perform', 'latest', 'android', 'bloatwar', 'would', 'expect', 'got', 'pair', 'wife', 'send', 'mine', 'back', 'lg', 'twice', 'warranti', 'work', 'due', 'bad', 'microphon', 'kind', 'frustrat', 'process', 'pretti', 'painless', 'turnaround', 'pretti', 'quick', 'wife', 'problem', 'i', 'slight', 'concern', 'batteri', 'not', 'user', 'replac', 'wish', 'support', 'band'], ['never'], ['well', 'product', 'good', 'condit', 'expect'], ['send', 'back', 'boo', 'plug', 'phone', 'hour', 'turn', 'phone', 'began', 'download', 'previous', 'app', 'becam', 'hot', 'i', 'phone', 'time', 'exact', 'love', 'memori', 'awesom', 'honest', 'better', 'new', 'phone', 'market', 'not', 'even', 'want', 'updat', 'version', 'phone', 'one', 'awesom', 'may', 'happen', 'get', 'faulti', 'phone', 'otherwis', 'know', 'would', 'like', 'star'], ['phone', 'great', 'first', 'week', 'realli', 'nice', 'screen', 'pictur', 'qualiti', 'run', 'app', 'smooth', 'etc', 'except', 'week', 'screen', 'start', 'touch', 'open', 'random', 'app', 'close', 'app', 'open', 'basic', 'make', 'life', 'miser', 'turn', 'common', 'problem', 'not', 'easi', 'fix', 'screen', 'digit', 'need', 'replac', 'due', 'poor', 'design', 'want', 'love', 'phone', 'would', 'not', 'recommend', 'imposs', 'use', 'half', 'time', 'screen', 'issu'], ['good'], ['best', 'phone', 'i', 'ever', 'fast', 'amaz', 'storag', 'problem', 'lag', 'game', 'stream', 'video'], ['great', 'cellphon', 'rival'], ['love', 'phone', 'excel', 'camera', 'fast', 'great', 'screen', 'price', 'best', 'phone', 'would', 'buy', 'recommend', 'work', 'perfect', 'movistar', 'movilnet', 'venezuelan', 'h', 'function', 'pretti', 'good', 'simpl', 'easi', 'user', 'even', 'avail', 'version', 'kit', 'kat', 'run', 'realli', 'not', 'put', 'negat', 'aspect', 'realli', 'like', 'lock', 'unlock', 'screen', 'two', 'touch', 'phone', 'incred', 'good'], ['excelent', 'phone', 'bad', 'thing', 'android', 'kitkat', 'yet', 'excelent', 'batteri', 'life', 'display', 'ram', 'speed', 'qualiti'], ['muy', 'bueno'], ['buen', 'producto'], ['exelent'], ['first', 'lg', 'phone', 'i', 'found', 'realli', 'good', 'phone', 'fast', 'respons', 'clear', 'screen', 'nice', 'camera', 'recommend'], ['great', 'phone', 'far', 'snappi', 'smooth', 'voic', 'recognit', 'work', 'well', 'not', 'long', 'enough', 'complaint'], ['lg', 'complet', 'android', 'cellphon', 'releas', 'year', 'ago', 'equip', 'quit', 'big', 'high', 'perform', 'ghz', 'process', 'unit', 'megapixel', 'back', 'face', 'camera', 'front', 'camera', 'get', 'better', 'idea', 'phone', 'featur', 'get', 'deeper', 'detail'], ['smartphon', 'good', 'expect', 'good', 'deal', 'price', 'qualiti', 'good', 'present'], ['fast', 'light', 'excelent', 'batteri', 'life', 'recomend', 'like', 'play', 'video', 'game', 'email', 'pretti', 'hd', 'screen'], ['one', 'better', 'telephon', 'rang', 'mpx', 'camera', 'remot', 'control', 'tv', 'dvd', 'fm', 'radio', 'micro', 'sd', 'bay', 'cost', 'great', 'option', 'sure', 'white', 'gran', 'teléfono', 'en', 'su', 'gama', 'control', 'remoto', 'cámara', 'mpx', 'radio', 'soport', 'micro', 'sd', 'hasta', 'al', 'meno', 'gb', 'sin', 'duda', 'una', 'gran', 'opción'], ['phone', 'memori'], ['realli', 'good', 'phone', 'price'], ['best', 'afford', 'cell', 'phone', 'avail', 'batteri', 'last', 'day', 'light', 'use', 'share', 'interest', 'featur', 'expens', 'lg', 'pair', 'well', 'ultra', 'mobil', 'new', 'york', 'citi', 'mhz', 'alreadi', 'avail', 'high', 'recommend'], ['great', 'travel', 'great', 'phone', 'price'], ['recommend'], ['best', 'phone'], ['great', 'product', 'satisfi', 'h', 'watter'], ['great', 'phone'], ['excel'], ['met', 'expact'], ['great', 'phone', 'meet', 'expect', 'speed', 'user', 'adapt', 'eas', 'use', 'good', 'batteri', 'life', 'respect', 'other', 'overh', 'problem'], ['perfect'], ['excelent', 'product'], ['phone', 'work', 'pretti', 'good', 'use', 'outsid', 'usa', 'without', 'problem'], ['great', 'phone', 'fast'], ['great', 'mid', 'rang', 'phone', 'latest', 'kit', 'kat', 'softwar', 'lg', 'softwar', 'enhanc', 'includ', 'knock', 'knock', 'light', 'larg', 'screen', 'small', 'bezel', 'use', 'tmobil', 'get', 'around', 'meg', 'download', 'surpris', 'mani', 'carrier', 'not', 'offer', 'sale'], ['best', 'seller'], ['amaz', 'live', 'cellphon', 'work', 'good'], ['love', 'phone', 'took', 'littl', 'get', 'neither', 'name', 'trailer', 'number', 'ad', 'packag', 'end', 'track', 'postal', 'servic', 'great', 'phone', 'charger', 'came', 'not', 'work', 'end', 'replac', 'verizon', 'good', 'ever', 'sinc'], ['wors', 'phone', 'ever', 'not', 'see', 'pleas', 'not', 'buy', 'phone'], ['great', 'phone', 'bought', 'mom', 'good', 'camera', 'intuit', 'smooth', 'decent', 'size', 'screen', 'great', 'interfac'], ['phone', 'excel', 'crisp', 'display', 'batteri', 'back', 'two', 'thing', 'alway', 'look', 'new', 'phone', 'intern', 'memori', 'space', 'let', 'alway', 'add', 'ad', 'microsd', 'card', 'flaw', 'find', 'phone', 'power', 'button', 'volum', 'switch', 'back', 'back', 'camera', 'need', 'bit', 'get', 'use', 'also', 'messag', 'shown', 'insid', 'hangout', 'app', 'not', 'sure', 'case', 'new', 'android', 'phone', 'bought', 'phone', 'altern', 'travel', 'asia', 'work', 'well', 'provid', 'not', 'commend', 'usag', 'provid', 'us', 'not', 'use'], ['return', 'product', 'internet', 'incompat', 'usa', 'carrier', 'metro', 'pcs', 'everi', 'function', 'work', 'internet', 'spoke', 'lg', 'expert', 'said', 'phone', 'design', 'uk', 'return', 'product'], ['thank', 'phone', 'came', 'fine', 'accesori'], ['love'], ['key', 'japanes', 'languag', 'phone', 'work', 'fine', 'get', 'data', 'email', 'slow', 'att', 'first', 'thought', 'servic', 'would', 'bar', 'phone', 'buy', 'anoth', 'lg', 'phone', 'phone', 'ebay', 'amazon', 'time', 'disappoint'], ['realli', 'not', 'not', 'pictur', 'show', 'amazon', 'cellphon', 'keep', 'turn', 'without', 'anyth'], ['great', 'phone', 'love'], ['foreign', 'phone', 'not', 'work', 'us', 'internet'], ['good'], ['best', 'phone', 'great', 'experi', 'power', 'last', 'longer', 'smartphon', 'recommend', 'phone', 'bodi', 'buy', 'doubt'], ['would', 'give', 'zero', 'star', 'sold', 'use', 'piec', 'differ', 'charger', 'headphon', 'not', 'trust', 'better', 'avoid'], ['wonder', 'cell', 'phone', 'far', 'love'], ['perfecto'], ['love', 'phone'], ['arriv', 'screen', 'unrespons', 'touch'], ['need', 'detail', 'not', 'us'], ['good'], ['great', 'phone'], ['love', 'phone', 'still', 'discov', 'new', 'thing', 'everi', 'day'], ['phone', 'seem', 'not', 'new', 'box', 'open', 'even', 'though', 'list', 'new', 'box', 'phone', 'not', 'work', 'expect', 'return', 'prompt', 'refund'], ['i', 'phone', 'coupl', 'month', 'not', 'work', 'half', 'time', 'i', 'kept', 'otterbox', 'sinc', 'receiv', 'phone', 'histori', 'shut', 'freez', 'screen', 'right', 'not', 'even', 'turn', 'chanc', 'ever', 'get', 'lg', 'slim', 'chanc', 'order', 'phone', 'pretti', 'much', 'realli', 'disappoint', 'product'], ['love'], ['cell', 'phone', 'not', 'work', 'mess'], ['phone', 'not', 'know', 'annoy'], ['love', 'everyth', 'phone', 'good', 'memori', 'nice', 'feel', 'great', 'ap', 'quick'], ['defect', 'item', 'return', 'batteri', 'bad', 'took', 'hour', 'charg', 'full', 'drain', 'quick', 'last', 'hour', 'screen', 'effect', 'touch'], ['switch', 'lg', 'nokia', 'xpressmus', 'one', 'earli', 'generat', 'smartphon', 'general', 'love', 'lg', 'phone', 'larg', 'screen', 'total', 'respons', 'great', 'touch', 'experi', 'lot', 'featur', 'order', 'phone', 'twice', 'two', 'differ', 'seller', 'share', 'experi', 'phone', 'two', 'section', 'first', 'review', 'lg', 'general', 'second', 'problem', 'ran', 'believ', 'specif', 'experi', 'lg', 'larg', 'screen', 'reluct', 'begin', 'buy', 'larg', 'phone', 'larg', 'screen', 'though', 'hard', 'manag', 'larg', 'phone', 'carri', 'around', 'pocket', 'howev', 'believ', 'mistaken', 'phone', 'great', 'definit', 'worth', 'carri', 'around', 'turn', 'not', 'hard', 'great', 'touch', 'experi', 'phone', 'realli', 'respons', 'lg', 'done', 'great', 'job', 'ad', 'anim', 'swipe', 'effect', 'make', 'experi', 'touch', 'screen', 'better', 'knock', 'code', 'featur', 'also', 'work', 'comput', 'power', 'phone', 'come', 'strong', 'processor', 'ram', 'opinion', 'enough', 'handheld', 'devic', 'time', 'play', 'game', 'phone', 'great', 'experi', 'lag', 'upgrad', 'oper', 'system', 'phone', 'come', 'kitkat', 'oper', 'system', 'upgrad', 'lollipop', 'unlock', 'phone', 'phone', 'unlock', 'describ', 'tri', 'base', 'network', 'communic', 'lg', 'support', 'wide', 'rang', 'communic', 'technolog', 'includ', 'lte', 'multipl', 'band', 'believ', 'capabl', 'model', 'regard', 'support', 'wide', 'rang', 'lte', 'band', 'includ', 'use', 'howev', 'found', 'disabl', 'model', 'explain', 'batteri', 'life', 'base', 'usag', 'moder', 'check', 'email', 'brows', 'call', 'batteri', 'last', 'around', 'day', 'mean', 'charg', 'everi', 'night', 'may', 'compar', 'old', 'phone', 'batteri', 'last', 'day', 'least', 'base', 'hear', 'friend', 'differ', 'brand', 'galaxi', 'iphon', 'guess', 'heat', 'experienc', 'littl', 'heat', 'problem', 'howev', 'visibl', 'download', 'larg', 'file', 'play', 'heavi', 'face', 'model', 'experienc', 'follow', 'problem', 'phone', 'not', 'sure', 'phone', 'someth', 'wrong', 'specif', 'piec', 'got', 'report', 'support', 'found', 'disabl', 'model', 'use', 'although', 'hardwar', 'support', 'disabl', 'firmwar', 'idea', 'found', 'enabl', 'root', 'devic', 'not', 'tri', 'problem', 'use', 'lte', 'network', 'connect', 'lte', 'network', 'not', 'receiv', 'call', 'also', 'place', 'call', 'connect', 'lte', 'connect', 'drop', 'edg', 'remain', 'way', 'search', 'net', 'found', 'may', 'limit', 'network', 'look', 'like', 'miss', 'protocol', 'overcom', 'issu', 'rep', 'could', 'not', 'anyth', 'work', 'assum', 'work', 'fine', 'sinc', 'brand', 'lte', 'although', 'peopl', 'net', 'say', 'manag', 'use', 'lte', 'network', 'model', 'could', 'not', 'work', 'talk', 'rep', 'twice', 'could', 'not', 'help', 'get', 'work', 'connect', 'edg', 'network', 'hardwar', 'cover', 'lte', 'band', 'except', 'band', 'not', 'sure', 'fix', 'devic', 'wireless', 'charg', 'base', 'learn', 'net', 'not', 'support', 'qi', 'wireless', 'charg', 'support', 'anoth', 'protocol', 'call', 'pma', 'not', 'tri', 'notic', 'not', 'phone', 'come', 'wireless', 'charg', 'antenna', 'back', 'phone', 'cover', 'mention', 'earlier', 'order', 'two', 'seller', 'one', 'phone', 'wireless', 'charg', 'antenna', 'manufactur', 'warranti', 'may', 'void', 'us', 'contact', 'seller', 'buy', 'import', 'believ', 'lg', 'great', 'phone', 'high', 'comput', 'power', 'usabl', 'interfac', 'good', 'look', 'high', 'screen', 'bodi', 'ratio', 'one', 'main', 'factor', 'choos', 'phone', 'believ', 'plan', 'use', 'not', 'communic', 'problem', 'experienc'], ['phone', 'exact', 'look', 'deliveri', 'fast'], ['need', 'power', 'ram', 'core', 'remov', 'batteri', 'screen', 'better', 'hd'], ['blatant', 'fals', 'advertis', 'worst', 'seller', 'ever', 'phone', 'said', 'brand', 'new', 'clear', 'use', 'worst', 'part', 'screen', 'lift', 'bottom', 'buy', 'phone', 'list', 'brand', 'new', 'brand', 'new', 'matter', 'horribl', 'seller'], ['month', 'usag', 'devic', 'lg', 'stop', 'work', 'case', 'month', 'like', 'physic', 'enough', 'button', 'layout', 'doubl', 'tap', 'screen', 'turn', 'buy', 'lg', 'get', 'soon', 'get', 'area', 'near', 'power', 'button', 'hot', 'screen', 'keep', 'phone', 'caseless', 'tri', 'avoid', 'experi', 'drop', 'screen', 'crack', 'took', 'fall', 'even', 'bought', 'case', 'unfortun', 'i', 'town', 'month', 'crack', 'unabl', 'return', 'devic', 'guess', 'expens', 'brick', 'guy'], ['oh', 'god', 'real', 'fantast', 'phone', 'great', 'sound', 'pictur', 'qualiti', 'neat', 'run', 'perfect', 'happi', 'bought', 'phone', 'advis', 'anyon', 'interest', 'get', 'work', 'fantast', 'well'], ['defect', 'upon', 'arriv', 'not', 'lock', 'like', 'descript', 'say', 'end', 'buy', 'unlock', 'code', 'onlin', 'attempt', 'put', 'straight', 'talk', 'account', 'phone', 'not', 'read', 'sim', 'card', 'unfortun', 'return', 'phone', 'back', 'shop', 'elsewher'], ['phone', 'take', 'great', 'pic', 'unlock', 'brand', 'new', 'also', 'origin', 'not', 'fake', 'mobil', 'phone', 'took', 'att', 'contract', 'plan', 'time', 'town', 'work', 'insid', 'larg', 'metal', 'concret', 'build', 'nice', 'video', 'qualiti', 'loud', 'speaker', 'use', 'etern', 'speaker', 'high', 'speed', 'pictur', 'thingi', 'found', 'accid', 'shoot', 'alot', 'pictur', 'realli', 'qualiti', 'fine', 'realli', 'like', 'new', 'phone', 'att', 'said', 'got', 'good', 'price', 'use', 'word', 'make', 'power', 'point', 'necessari', 'say', 'good', 'thing', 'work', 'straight', 'talk', 'use', 'sim', 'mistak', 'not', 'town', 'move', 'att', 'made', 'work', 'thier', 'network', 'minut', 'excel', 'sinc'], ['definit', 'recommend', 'one', 'time', 'cell', 'purchas', 'product', 'got', 'mine', 'brand', 'new', 'i', 'extrem', 'happi', 'thank', 'guy', 'deliveri', 'fast', 'got', 'within', 'day', 'purchas'], ['receiv', 'devic', 'new', 'condit', 'seal', 'new', 'item', 'like', 'charger', 'cord', 'batteri', 'work', 'perfect', 'beyond', 'expect', 'also', 'got', 'earlier', 'predict', 'deliveri', 'date'], ['receiv', 'refurbish', 'product', 'screen', 'detach', 'dissapoint'], ['cell', 'aesthet', 'alon', 'nice', 'big', 'screen', 'vibrant', 'batteri', 'useless', 'crap', 'though', 'purchas', 'cell', 'brand', 'new', 'not', 'abl', 'use', 'alway', 'stuck', 'boot', 'loop', 'not', 'charg', 'either', 'lg', 'quit', 'expens', 'defect', 'batteri', 'i', 'buy', 'batteri', 'asid', 'spend', 'much', 'money', 'phone', 'begin', 'buyer', 'pleas', 'research', 'extens'], ['would', 'definit', 'recommend', 'buy', 'hesit', 'first', 'i', 'not', 'crazi', 'refurbish', 'phone', 'complaint', 'i', 'realli', 'satisfi', 'love', 'way', 'ahead', 'time', 'still', 'put', 'phone', 'shame'], ['not', 'complain', 'ship', 'actual', 'realli', 'fast', 'want', 'said', 'lie', 'detail', 'product', 'reciv', 'refurbish', 'phone', 'batteri', 'not', 'work', 'make', 'reset', 'everi', 'time', 'open', 'app', 'phone', 'day', 'total', 'die', 'want', 'money', 'back'], ['bought', 'phone', 'advertis', 'new', 'fact', 'not'], ['great', 'purchas', 'love'], ['great', 'product', 'servic', 'item', 'arriv', 'time', 'describ'], ['phone', 'great', 'softwar', 'talk', 'use', 'not', 'not', 'work'], ['phone', 'fine', 'think', 'charger', 'not', 'origin', 'lg', 'charger', 'charg', 'phone', 'fast', 'one', 'take', 'long', 'appear', 'messag', 'say', 'slow', 'charg', 'connect', 'standard', 'charger'], ['great', 'phone', 'fast', 'ship'], ['wonder', 'phone', 'expect', 'also', 'purchas', 'abl', 'updat', 'phone', 'android', 'marshmallow', 'problem', 'otherwis', 'excel', 'phone', 'small', 'group', 'pixel', 'middl', 'screen', 'constant', 'brighter', 'rest', 'screen', 'annoy', 'toler'], ['lg', 'bought', 'phone', 'awhil', 'back', 'fell', 'love', 'much', 'bought', 'daughter', 'phone', 'arriv', 'describ', 'camera', 'super', 'fast', 'highest', 'pictur', 'screen', 'qualiti', 'i', 'tri', 'mani', 'phone'], ['weak', 'screen', 'screen', 'break', 'reason', 'i', 'alreadi', 'break', 'pretti', 'ty', 'phone', 'year'], ['yes', 'love', 'arriv', 'time', 'look', 'brand', 'new', 'origin', 'logo', 'case', 'gsm', 'unlock', 'thing', 'expect', 'not', 'includ', 'sim', 'card', 'box', 'outsid', 'box', 'said', 'includ', 'batteri', 'not', 'made', 'korea', 'friend', 'bought', 'phone', 'batteri', 'made', 'korea', 'would', 'like', 'suggest', 'lg', 'manufactur', 'includ', 'lg', 'earbud', 'headphon', 'box', 'like', 'other', 'manufactur', 'anyway', 'would', 'like', 'recommend', 'custom', 'want', 'order', 'product', 'order', 'seller', 'wrap', 'ship', 'amazon'], ['phone', 'came', 'time', 'everyth', 'phone', 'advertis', 'batteri', 'seal', 'caseth', 'phone', 'excel', 'unlockedno', 'problem', 'phone', 'great', 'purchas'], ['nice', 'phone', 'wi', 'fi', 'call', 'featur', 'unreli'], ['work', 'great', 'problem'], ['great', 'phone', 'seller', 'perform', 'expect'], ['recommend', 'phone', 'anyon', 'look', 'reason', 'price', 'good', 'qualiti', 'option'], ['pretti', 'disappoint', 'see', 'camera', 'scratch', 'bad', 'everi', 'pictur', 'blurri', 'bought', 'specif', 'great', 'camera', 'make', 'sure', 'get', 'brand', 'new', 'like', 'new'], ['order', 'phone', 'friend', 'cuba', 'natur', 'took', 'deliv', 'person', 'unfortun', 'phone', 'numer', 'problem', 'tri', 'return', 'littl', 'month', 'purchas', 'natur', 'much', 'time', 'taken', 'get', 'phone', 'cuba', 'despit', 'detail', 'least', 'signific', 'perform', 'problem', 'taken', 'place', 'almost', 'immedi', 'return', 'request', 'immedi', 'deni', 'past', 'return', 'period', 'disappoint', 'perform', 'product', 'custom', 'servic'], ['great', 'phone', 'love'], ['amaz', 'smartphon', 'good', 'price', 'best', 'seller'], ['great', 'great'], ['phone', 'not', 'new', 'batteri', 'came', 'phone', 'alreadi', 'phone', 'pictur', 'peopl'], ['gift', 'mom', 'fell', 'love', 'instant', 'beauti', 'design', 'excel', 'display', 'easi', 'use'], ['good', 'phone', 'overal', 'good', 'camera', 'stun', 'screenbut', 'flaw', 'get', 'hot', 'fast', 'screen', 'bright', 'littl'], ['phone', 'good', 'use', 'day', 'screen', 'turn', 'seller', 'not', 'respond', 'warranti'], ['love', 'charger', 'not', 'charg', 'phone'], ['need', 'great', 'camera', 'featur', 'compar', 'samsung', 'phone', 'longer', 'batteri', 'life', 'phone', 'exceed', 'expect', 'love'], ['sleek', 'easi', 'use', 'sinc', 'side', 'botten', 'also', 'feel', 'comfort', 'phone', 'awesom'], ['awesom'], ['thank', 'good'], ['i', 'happi', 'bought', 'gold', 'gift', 'use', 'lot', 'smartphon', 'main', 'phone', 'right', 'note', 'edg', 'note', 'bute', 'phone', 'use', 'think', 'best', 'smartphon', 'last', 'note', 'edg', 'note', 'phone', 'base', 'experi', 'phone', 'way', 'better', 'use', 'less', 'lagi', 'less', 'unrespons', 'compar', 'note', 'edg', 'note', 'qualiti', 'way', 'better', 'also', 'design', 'way', 'better', 'easi', 'use', 'feel', 'good', 'inch', 'screen', 'feel', 'realli', 'small', 'not', 'like', 'note', 'edg', 'note', 'best', 'smartphon', 'size', 'not', 'wide', 'not', 'tall', 'perfect', 'love', 'lg', 'i', 'plan', 'upgrad', 'phone', 'lg', 'year'], ['would', 'not', 'recommend', 'anyon', 'want', 'phone', 'buy', 'actual', 'carrier', 'not', 'work', 'foe', 'anyth'], ['wonder', 'phone', 'love'], ['rbeen', 'use', 'phone', 'day', 'batteri', 'issu', 'extrem', 'batteri', 'drain', 'goe', 'min', 'less', 'came', 'one', 'wireless', 'charg', 'pin', 'bent', 'today', 'came', 'biggest', 'shocker', 'phone', 'camera', 'qualiti', 'decreas', 'overnight', 'either', 'auto', 'focus', 'phone', 'not', 'fallen', 'not', 'even', 'case', 'screen', 'protector', 'sinc', 'first', 'open', 'deliveri', 'fear', 'issu', 'come', 'see', 'get', 'replac', 'not', 'smh', 'warn', 'stay', 'away', 'product', 'add', 'pic', 'issu', 'soon'], ['phone', 'probabl', 'best', 'phone', 'ever', 'bought', 'lag', 'good', 'camera', 'pretti', 'good', 'batteri', 'life', 'not', 'know', 'peopl', 'complain', 'lg', 'not', 'playstat', 'xbox', 'game', 'consol', 'play', 'not', 'day', 'plus', 'current', 'use', 'phone', 'venezuela', 'carrier', 'digitel', 'work', 'fine', 'bought', 'mobilesfront', 'mobil', 'front', 'also', 'work', 'perfect', 'movilnet', 'movistar'], ['love', 'phone', 'solid', 'profession', 'easili', 'configur', 'right', 'size', 'happi', 'camper'], ['good', 'look', 'good', 'qualiti'], ['great', 'phone'], ['afford', 'price', 'fast', 'shipment'], ['best', 'phone', 'ever', 'seen'], ['excel'], ['excelent'], ['till', 'champ', 'satisfi', 'purchas'], ['second', 'one', 'phone', 'buy', 'think', 'amaz', 'fast', 'super', 'great', 'camera'], ['excel', 'phone', 'bad', 'softwar'], ['love', 'phone'], ['good', 'phone'], ['excel'], ['omg', 'best', 'love', 'lg'], ['awesom', 'phone', 'nice', 'color', 'use', 'iphon', 'plus', 'move', 'phone'], ['work', 'perfect', 'venezuela', 'movistar', 'nice', 'phone'], ['realli', 'good', 'smartphon', 'not', 'buy', 'unfortun', 'smartphon', 'hardwar', 'design', 'issu', 'overheat', 'someth', 'happen', 'communic', 'processor', 'lcd', 'screen', 'make', 'unus', 'motherboard', 'irrepar', 'go', 'partial', 'brick', 'phone', 'look', 'lcd', 'screen', 'issu', 'lg', 'youtub', 'fo', 'detail'], [], ['bought', 'almost', 'month', 'ago', 'headach', 'first', 'problem', 'appear', 'open', 'box', 'phone', 'scratch', 'camera', 'len', 'wear', 'batteri', 'cover', 'use', 'first', 'thought', 'return', 'sinc', 'not', 'live', 'us', 'pay', 'courier', 'return', 'sinc', 'alreadi', 'paid', 'around', 'ship', 'tax', 'prefer', 'keep', 'second', 'problem', 'show', 'urgent', 'situat', 'turn', 'waze', 'gps', 'not', 'work', 'googl', 'map', 'neither', 'contact', 'lg', 'technician', 'told', 'could', 'corrupt', 'softwar', 'bad', 'phone', 'chip', 'replac', 'would', 'cost', 'around', 'lg', 'intern', 'warranti', 'i', 'return', 'phone', 'dissapoint', 'pay', 'like', 'new', 'tax', 'pay', 'courier', 'take', 'back'], ['best', 'phone', 'ever'], ['one', 'favorit', 'phone', 'ever', 'own', 'look', 'solid', 'feel', 'second', 'hand', 'phone', 'i', 'variant', 'say', 'without', 'doubt', 'want', 'get', 'gigabyt', 'version', 'extra', 'ram', 'space', 'necessari', 'screen', 'shine', 'star', 'get', 'use', 'screen', 'look', 'outdat', 'cheap', 'minus', 'soni', 'screen', 'look', 'great', 'bought', 'outright', 'full', 'price', 'droid', 'turbo', 'htc', 'one', 'soni', 'xperia', 'blu', 'life', 'pure', 'mini', 'oneplus', 'one', 'iphon', 'lg', 'coupl', 'other', 'daili', 'driver', 'replac', 'note', 'not', 'reason', 'want', 'phone', 'fingerprint', 'scanner', 'big', 'screen', 'bought', 'price', 'low', 'fine', 'devic', 'atlas', 'anoth', 'year', 'mayb', 'even', 'two', 'quick', 'everyth', 'els', 'bad', 'intl', 'version', 'usa', 'mine', 'plenti', 'fast', 'h', 'may', 'realli', 'bug', 'peopl', 'one', 'issu', 'alway', 'phone', 'person', 'though', 'soc', 'sd', 'beast', 'soc', 'pair', 'adreno', 'hall', 'ball', 'not', 'quit', 'readi', 'power', 'screen', 'handl', 'heavi', 'notic', 'place', 'get', 'use', 'noth', 'noteworthi', 'start', 'realli', 'throw', 'lot', 'task', 'phone', 'see', 'screen', 'stutter', 'quit', 'bit', 'first', 'amazon', 'aw', 'sound', 'aux', 'port', 'mean', 'bad', 'new', 'gig', 'sound', 'could', 'not', 'better', 'loud', 'clear', 'appl', 'qualiti', 'chalk', 'bad', 'experi', 'first', 'one', 'bad', 'would', 'recommend', 'phone', 'anyon', 'want', 'flagship', 'screen', 'not', 'want', 'spend', 'ton', 'money', 'outright', 'unless', 'ton', 'youtub', 'mobil', 'data', 'plan', 'lack', 'lte', 'go', 'unnot', 'afford', 'spend', 'extra', 'get', 'galaxi', 'note'], ['great', 'devic', 'excel', 'batteri', 'support', 'sd', 'card', 'remov', 'batteri', 'back', 'power', 'volum', 'take', 'get', 'use', 'otherwis', 'not', 'disappoint', 'lte', 'us', 'wow', 'hspa', 'fast', 'though', 'lte', 'moment'], ['easi', 'use', 'pictur', 'clear', 'overal', 'qualiti', 'price', 'g', 'easili', 'defeat', 'competitor', 'two', 'thing', 'improv', 'next', 'generat', 'lg', 'camera', 'need', 'choic', 'play', 'play', 'music', 'contini', 'hour', 'g', 'hotter', 'apart', 'say', 'best', 'smartphon'], ['nice', 'phone', 'love'], ['perfect', 'cellphon'], ['good'], ['nice', 'phone'], ['cell', 'never', 'reach', 'destin', 'nobodi', 'abl', 'tell', 'situat', 'realli', 'bad', 'buy'], ['lg', 'say', 'excel', 'qualiti', 'realli', 'fast', 'sharp', 'display', 'wish', 'batteri', 'last', 'like', 'old', 'lg', 'not', 'bad', 'either', 'price', 'better', 'lot', 'new', 'phone'], ['good'], ['receiv', 'brand', 'new', 'intern', 'version', 'phone', 'good', 'damag', 'far', 'good'], ['best', 'phone', 'ever'], ['constant', 'stick'], ['everyth', 'littl', 'problem', 'focus', 'camara', 'hope', 'solv'], ['nice'], ['phone', 'goodbut', 'power', 'round', 'piec', 'mark', 'screen', 'refurbish'], ['disappoint', 'product', 'phone', 'get', 'heat', 'like', 'iron', 'box', 'phone', 'call', 'use', 'min', 'batteri', 'get', 'discharg', 'hour', 'realli', 'realli', 'disappoint'], ['ok'], ['love', 'charger', 'not', 'charg', 'phone'], ['good', 'phone', 'far'], ['great', 'everyth'], ['exelent', 'produc'], ['excel', 'phone'], ['order', 'lg', 'unlock', 'intern', 'version', 'phone', 'match', 'exact', 'descript', 'unlock', 'origin', 'brand', 'new', 'seal', 'box', 'origin', 'accessori', 'bummer', 'travel', 'adapt', 'us', 'compat', 'need', 'one', 'compat', 'europ', 'realli', 'minor', 'issu', 'phone', 'work', 'smooth', 'great', 'buy'], ['everyth', 'perfect'], ['love', 'first', 'panic', 'i', 'tmobil', 'us', 'devic', 'not', 'lte', 'band', 'howev', 'receiv', 'tmobil', 'hspa', 'network', 'i', 'clock', 'far', 'not', 'bad', 'not', 'find', 'aggrav', 'wait', 'anyth', 'load'], ['good', 'product', 'everyth', 'perfect', 'fast', 'deliveri'], ['wondeful', 'phone', 'sens', 'glad', 'would', 'choos', 'phone'], ['great', 'phone', 'never', 'got', 'phone', 'amazon'], ['love'], ['nice'], ['good', 'packag', 'great', 'product', 'last', 'littl', 'arriv', 'perfect', 'condit'], ['good'], ['excel', 'met', 'expect'], ['issu', 'found', 'good', 'thing', 'good', 'supplier'], ['not', 'complet', 'new', 'packag', 'open'], ['bought', 'phone', 'replac', 'stolen', 'phone', 'not', 'replac', 'newer', 'version', 'consid', 'lg', 'way', 'better', 'lg', 'newer', 'expens', 'purchas', 'insur', 'fantast', 'phone', 'speed', 'facil', 'offer', 'camera', 'korean', 'version', 'duel', 'sim', 'perfect', 'sim', 'use', 'phone', 'call', 'text', 'sim', 'data', 'screen', 'resolut', 'outstand', 'abil', 'shoot', 'video', 'ice', 'comment', 'qualiti', 'photo', 'video', 'clip', 'surpris', 'see', 'taken', 'phone', 'opinion', 'lg', 'way', 'front', 'samsung', 'iphon', 'american', 'seem', 'think', 'compani', 'say', 'way', 'better', 'not', 'fool', 'think', 'compani', 'make', 'great', 'smart', 'not', 'go', 'detail', 'fantast', 'smart', 'go', 'tri', 'one', 'impress'], ['thank', 'lot', 'great', 'servic'], ['perfect'], ['doubt', 'lg', 'smartphon', 'market', 'today', 'definit', 'better', 'appl', 'iphon', 'current', 'samsung', 'smartphon', 'howev', 'mani', 'us', 'consum', 'skeptic', 'purchas', 'unlock', 'intern', 'version', 'phone', 'mani', 'current', 'subscrib', 'anxious', 'wait', 'arriv', 'lock', 'version', 'custom', 'wireless', 'servic', 'includ', 'expand', 'access', 'lte', 'long', 'term', 'evolut', 'advanc', 'radio', 'frequenc', 'band', 'spectrum', 'visual', 'voicemai', 'smartphon', 'want', 'trade', 'lg', 'stylish', 'design', 'high', 'definit', 'display', 'superior', 'sound', 'play', 'itun', 'music', 'file', 'aac', 'flac', 'featur', 'advanc', 'sound', 'equal', 'compar', 'current', 'ipod', 'player', 'need', 'app', 'doubletwist', 'download', 'free', 'googl', 'play', 'store', 'custom', 'theme', 'googl', 'android', 'os', 'round', 'iconc', 'advanc', 'knock', 'code', 'featur', 'specif', 'includ', 'qualcomm', 'snapdragon', 'processor', 'gb', 'ram', 'gb', 'model', 'concern', 'lg', 'unlock', 'intern', 'model', 'concern', 'unlock', 'intern', 'lg', 'receiv', 'lte', 'signal', 'accept', 'radio', 'signal', 'answer', 'check', 'lte', 'frequenc', 'band', 'intern', 'phone', 'tri', 'match', 'coupl', 'frequenc', 'band', 'lte', 'cellular', 'network', 'like', 'find', 'match', 'import', 'lg', 'phone', 'gsm', 'phone', 'gsm', 'wireless', 'network', 'concern', 'korean', 'languag', 'app', 'phone', 'afraid', 'may', 'inadvert', 'click', 'yes', 'purchas', 'app', 'not', 'awar', 'accident', 'purchas', 'bill', 'author', 'error', 'purchas', 'answer', 'may', 'remov', 'app', 'easili', 'applic', 'set', 'merchant', 'sell', 'app', 'servic', 'includ', 'donat', 'special', 'want', 'unit', 'state', 'bill', 'repres', 'word', 'bill', 'product', 'servic', 'account', 'must', 'provid', 'term', 'condit', 'us', 'subscrib', 'plain', 'english', 'languag', 'not', 'concern', 'accident', 'purchas', 'situat', 'not', 'occur', 'unless', 'physic', 'type', 'credit', 'card', 'visa', 'mastercard', 'american', 'express', 'discov', 'account', 'number', 'concern', 'may', 'select', 'yes', 'allow', 'app', 'run', 'suck', 'data', 'allow', 'month', 'data', 'plan', 'may', 'select', 'yes', 'allow', 'app', 'replac', 'default', 'app', 'web', 'browser', 'english', 'versus', 'web', 'browser', 'korean', 'concern', 'lose', 'access', 'brand', 'app', 'answer', 'may', 'download', 'app', 'not', 'phone', 'alreadi', 'sign', 'googl', 'account', 'via', 'googl', 'play', 'store', 'type', 'keyword', 'find', 'varieti', 'app', 'free', 'subscrib', 'app', 'may', 'also', 'avail', 'futur', 'softwar', 'updat', 'phone', 'releas', 'lg', 'model', 'avail', 'must', 'select', 'yes', 'accept', 'phone', 'updat', 'servic', 'not', 'happi', 'buy', 'intern', 'version', 'instead', 'buy', 'brand', 'lg', 'phone', 'would', 'like', 'offer', 'free', 'updat', 'servic', 'app', 'servic', 'sustain', 'brand', 'loyalti', 'concern', 'visual', 'voicemail', 'not', 'see', 'set', 'speed', 'dial', 'phone', 'number', 'contact', 'connect', 'mailbox', 'call', 'number', 'caller', 'leav', 'voic', 'messag', 'automat', 'receiv', 'blank', 'text', 'time', 'stamp', 'notif', 'voic', 'mail', 'messag', 'left', 'specif', 'time'], ['nice', 'phone', 'lg', 'version', 'littl', 'brother', 'lg', 'screen', 'tab', 'bit', 'smaller', 'processor', 'fast', 'given', 'phone', 'use', 'talk', 'not', 'download', 'lot', 'app', 'well', 'need', 'like', 'better', 'camera', 'higher', 'pixel', 'like', 'download', 'numer', 'app', 'go', 'big', 'brother', 'lg', 'phone', 'lg', 'lag', 'decent', 'camera', 'awesom', 'upgrad', 'come', 'phone', 'lack', 'technolog'], ['exelent'], ['excel'], ['exelent'], ['good'], ['far', 'good', 'phone', 'like', 'better', 'samsung'], ['everyth', 'want', 'phone', 'love'], ['not', 'expect', 'makebsur', 'read', 'eveyth', 'want', 'use', 'mirco', 'sd', 'card', 'phone', 'not', 'take', 'dual', 'sim', 'say', 'sd', 'one', 'slot', 'not', 'recogn', 'not', 'set', 'save', 'break', 'phone', 'wait', 'someth', 'better', 'hold'], ['two', 'month', 'activ', 'metro', 'pcs', 'phone', 'block', 'network'], ['look', 'great'], ['far', 'good', 'purchas', 'son', 'wife', 'far', 'not', 'rais', 'complain', 'good'], ['phone', 'true', 'descript', 'far', 'issu', 'phone', 'ship', 'process', 'prompt', 'phone', 'arriv', 'perfect', 'condit', 'accessori', 'also', 'tact'], ['lg', 'stylus', 'phone', 'one', 'afford', 'sim', 'phone', 'buy', 'big', 'display', 'nice', 'problem', 'far', 'phone'], ['far', 'good', 'purchas', 'son', 'wife', 'far', 'not', 'rais', 'complain', 'good'], ['good', 'good'], ['use', 'want', 'surf', 'web', 'i'], ['great', 'phone'], ['absolut', 'love', 'phone', 'would', 'definit', 'recommend', 'anyon', 'look', 'nice', 'smart', 'phone', 'econom', 'price', 'galaxi', 'one', 'thing', 'not', 'realli', 'like', 'not', 'two', 'sim', 'card', 'show', 'servic', 'home', 'screen', 'infact', 'servic', 'servic', 'coverag', 'seem', 'phone', 'must', 'buy', 'good', 'luck'], ['phone', 'arriv', 'broken', 'embarrass', 'sinc', 'bought', 'gift', 'friend', 'imagin', 'horror', 'pull', 'plastic', 'f', 'open', 'boxand', 'screen', 'shatter', 'screen', 'plastic', 'still', 'phone', 'batteri', 'box', 'bought', 'phone', 'sinc', 'factori', 'unlock', 'not', 'think', 'use', 'carrier', 'sim', 'would', 'problem', 'save', 'money', 'time', 'embarrass', 'never', 'buy', 'phone', 'amazon', 'ever'], ['sent', 'back', 'back', 'batteri', 'got', 'realli', 'hot', 'not', 'user', 'friend', 'opinion', 'purchas', 'motog', 'second', 'generat', 'love'], ['not', 'describ', 'sent', 'back', 'immedi'], ['great', 'love', 'phone'], ['excel', 'seller', 'great', 'product', 'thank'], ['beauti'], ['excel', 'phone', 'nice', 'featur'], ['receiv', 'not', 'look', 'like', 'new', 'miss', 'screw', 'see', 'screen', 'hole', 'like', 'glue', 'around', 'back', 'look', 'like', 'broken', 'dissatisfi'], ['item', 'dead', 'useless', 'littl', 'month', 'receiv', 'not', 'accept', 'wait', 'seller', 'fix', 'review', 'revis'], ['awesom', 'phone', 'howev', 'not', 'get', 'rid', 'annoy', 'pop', 'up', 'not', 'go', 'away', 'unless', 'shut', 'phone', 'restart', 'rock'], ['bought', 'phone', 'use', 'straight', 'talk', 'network', 'travel', 'came', 'area', 'phone', 'not', 'servic', 'would', 'data', 'talk', 'call', 'straight', 'talk', 'said', 'yes', 'verizon', 'tower', 'not', 'verizon', 'servic', 'got', 'verizon', 'sim', 'card', 'hope', 'better', 'servic', 'still', 'verizon', 'not', 'technic', 'verizon', 'sinc', 'order', 'call', 'data', 'base', 'whether', 'contract', 'prepaid', 'call', 'att', 'ask', 'could', 'use', 'sim', 'card', 'phone', 'said', 'could', 'would', 'not', 'work', 'suppos', 'statement', 'titl', 'perplex', 'though', 'set', 'within', 'phone', 'let', 'us', 'switch', 'gsm', 'cdma', 'finger', 'cross', 'day', 'phone', 'work', 'not', 'not', 'live', 'phone', 'conveni', 'basic', 'everyth', 'straighttalk', 'work', 'though', 'not', 'work', 'like', 'verizon', 'prepaid', 'verizon', 'prepaid', 'not', 'work', 'exact', 'like', 'verizon', 'contract', 'phone', 'verizon', 'contract', 'would', 'best', 'option', 'reli', 'phone', 'phone', 'great', 'camera', 'fantast', 'though', 'photo', 'take', 'video', 'view', 'phone', 'sinc', 'not', 'tv', 'alway', 'want', 'phone', 'hope', 'long', 'time', 'updat', 'even', 'verizon', 'prepaid', 'provid', 'still', 'not', 'make', 'phone', 'call', 'normal', 'verizon', 'phone', 'data', 'voic', 'phone', 'say', 'extend', 'servic', 'yet', 'stay', 'straight', 'talk', 'att', 'instead', 'get', 'verizon', 'prepaid', 'not', 'come', 'much', 'time', 'month', 'make', 'call', 'googl', 'dialer', 'though', 'not', 'receiv', 'verizon', 'prepaid', 'everyth', 'extra', 'upcharg', 'get', 'servic', 'mother', 'not', 'get', 'straighttalk', 'att', 'upset', 'get', 'someth', 'told', 'verizon', 'sale', 'rep', 'work', 'month', 'later', 'find', 'not'], ['absolut', 'love', 'phone', 'better', 'phone', 'previous', 'own', 'easi', 'use', 'fast'], ['stop', 'work', 'month'], ['stop', 'work', 'month'], ['belong', 'wife', 'far', 'good'], ['good', 'phone', 'phone', 'support', 'phone', 'thailand', 'fast', 'deliveri', 'exact', 'right', 'devic'], ['lg', 'purchas', 'ecloseout', 'complet', 'differ', 'descript', 'yes', 'apper', 'phone', 'good', 'howev', 'phone', 'not', 'capabl', 'basic', 'function', 'make', 'call', 'take', 'pictur', 'ect', 'ecloseout', 'descript', 'claim', 'product', 'test', 'fulli', 'function', 'also', 'claim', 'product', 'unlock', 'lg', 'reciev', 'ecloseout', 'came', 'lock', 'case', 'phone', 'useless', 'process', 'return', 'back', 'ecloseout', 'bet', 'charg', 'return', 'useless', 'defect', 'phone', 'buyer', 'care'], ['batteri', 'die', 'fast'], ['make', 'transit', 'note', 'powelemon', 'first', 'lg', 'would', 'say', 'batteri', 'life', 'aw', 'easili', 'fix', 'extra', 'batteri', 'extend', 'batteri', 'love', 'phone', 'aspect'], ['great', 'product', 'good', 'price', 'thank', 'i', 'definit', 'buy', 'compani'], ['love', 'love', 'love', 'phone', 'sold', 'half', 'price', 'seller', 'sent', 'via', 'up', 'sign', 'awesom', 'sinc', 'high', 'price', 'item', 'work', 'perfect', 'straight', 'talk', 'wireless', 'phone', 'amaz', 'thank', 'much'], ['phone', 'work', 'expect', 'secur', 'patch', 'prevent', 'correct', 'updat', 'phone', 'work', 'beauti', 'nonetheless', 'phone', 'could', 'revolutionari'], ['definit', 'one', 'best', 'phone', 'market', 'term', 'cost', 'valu', 'ratio', 'great', 'spec', 'balanc', 'design', 'stylish', 'phone', 'manufactur', 'novemb', 'accord', 'first', 'digit', 'serial', 'number', 'boot', 'loop', 'issu', 'detect', 'hope', 'fix', 'lg', 'see', 'https', 'http', 'bought', 'wireless', 'place', 'seller', 'use', 'month', 'alreadi', 'far', 'good'], ['work', 'well', 'problem', 'except', 'want', 'save', 'pictur', 'sd', 'card', 'first', 'photo', 'would', 'save', 'went', 'back', 'check', 'day', 'even', 'moment', 'later', 'would', 'either', 'show', 'fragment', 'not', 'save', 'pictur', 'phone', 'problem', 'like', 'sd', 'card'], ['love', 'phone', 'super', 'easi', 'use', 'fantast', 'camera', 'would', 'recommend', 'anyon'], ['wow'], ['month', 'batteri', 'not', 'charg', 'overheat', 'bad', 'not', 'held', 'hand'], ['phone', 'work', 'great', 'almost', 'month', 'sudden', 'got', 'stuck', 'bootloop', 'read', 'forum', 'known', 'issu', 'relat', 'hardwar'], ['excel', 'devic', 'excel', 'servic'], ['love', 'phone', 'bad', 'lg', 'releas', 'updat', 'fix', 'break', 'function', 'led', 'notif', 'dec', 'fix', 'notif', 'light', 'updat', 'got', 'purchas', 'releas', 'updat', 'screw', 'lg', 'great', 'hardwar', 'decent', 'android', 'not', 'full', 'useless', 'stuff', 'give', 'low', 'none', 'support', 'firmwar'], ['muy', 'buen', 'producto', 'excelent'], ['expect'], ['excel', 'phone'], ['perfect'], ['love', 'phone', 'month', 'cut', 'never', 'trune', 'back', 'not', 'virus', 'fell', 'water', 'floor', 'noth', 'like', 'happen', 'number', 'peopl', 'would', 'not', 'advis', 'get', 'lg', 'phone', 'not', 'reliabl'], ['cell', 'phone', 'not', 'work', 'screen', 'freez', 'reboot', 'not', 'wast', 'money', 'buy', 'total', 'wast', 'money'], ['bought', 'lg', 'less', 'year', 'ago', 'yesterday', 'screen', 'froze', 'never', 'came', 'light', 'stay', 'logo'], ['love'], ['excel', 'phone', 'everyth', 'need', 'ir', 'blaster', 'sd', 'reader'], ['got', 'publish', 'amazon', 'great', 'cell', 'phone', 'work', 'perfect', 'countri', 'thank'], ['great', 'smartphon', 'alreadi', 'happi', 'lg', 'expect', 'model', 'better', 'right', 'work', 'perfect', 'littl', 'lighter', 'previous', 'model', 'improv', 'processor', 'batteri', 'perform', 'previous', 'model', 'tendenc', 'overheat', 'extend', 'use', 'demand', 'app', 'problem', 'seem', 'solv', 'sinc', 'not', 'issu', 'regular', 'use', 'rear', 'front', 'camera', 'excel', 'rear', 'camera', 'good', 'interfac', 'manual', 'mode', 'automat', 'mode', 'also', 'less', 'year', 'ago', 'wrote', 'excel', 'review', 'item', 'got', 'say', 'disagre', 'said', 'batteri', 'perform', 'realli', 'realli', 'bad', 'normal', 'use', 'phone', 'call', 'sms', 'wifi', 'base', 'data', 'traffic', 'recharg', 'smartphon', 'everi', 'three', 'four', 'hour', 'realli', 'annoy', 'make', 'whole', 'experi', 'bad'], ['half', 'year', 'pass', 'sinc', 'purchas', 'alreadi', 'processor', 'devic', 'broke', 'cost', 'repair', 'also', 'expens', 'devic', 'bought', 'new', 'never', 'drop', 'damag', 'exterior', 'curs', 'like', 'quick'], ['best', 'smartphon', 'happi', 'phone'], ['great', 'price', 'deliv', 'proper'], ['lg', 'not', 'cover', 'warranti', 'not', 'buy', 'bootloop', 'problem', 'safe', 'money', 'anoth', 'phone'], ['excel', 'phone', 'smart', 'price'], ['not', 'buy', 'phone', 'speaker', 'not', 'work', 'turn', 'listen', 'music', 'got', 'phone', 'boyfriend', 'christmasand', 'regret', 'not', 'wast', 'money', 'even', 'think', 'not', 'purchas', 'noth', 'amazon', 'anymor', 'lack', 'qualiti'], ['poor'], ['product', 'work', 'batteri', 'exact', 'batteri', 'come', 'origin', 'lol', 'instead', 'sucki', 'batteri'], ['not', 'get', 'long', 'time', 'ago'], ['reason', 'thought', 'box', 'size', 'tablet', 'small', 'compact', 'good', 'idea', 'far', 'good', 'post', 'updat', 'review'], ['hold', 'much', 'longer', 'charg'], ['total', 'help', 'make', 'day', 'without', 'constant', 'phone', 'connect', 'extern', 'batteri', 'sourc'], ['batteri', 'last', 'long', 'origin', 'came', 'phone', 'origin', 'mark', 'product', 'batteri', 'wish', 'cradl', 'quick', 'charg', 'support', 'would', 'pay', 'extra', 'take', 'hour', 'charg', 'via', 'normal', 'charger', 'cradl', 'extra', 'batteri', 'pretti', 'much', 'need', 'lg', 'use', 'throughout', 'day', 'definit', 'worth', 'extra', 'cost', 'versus'], ['well', 'design', 'reason', 'valu', 'come', 'separ', 'simpl', 'case', 'hold', 'batteri', 'not', 'charg', 'howev', 'one', 'spare', 'batteri', 'stay', 'insid', 'charger', 'charger', 'compact', 'compat', 'power', 'sourc'], ['someth', 'wrong', 'damn', 'phone'], ['wish', 'would', 'read', 'realiz', 'not', 'lte', 'compat', 'far', 'phone', 'except'], ['top', 'space', 'whatsoev', 'also', 'not', 'manag', 'space', 'well', 'intern', 'play', 'longer', 'updat', 'anyth', 'confus', 'put', 'thing', 'not', 'allow', 'store', 'much', 'anyth', 'sd', 'card', 'even', 'android', 'updat', 'honest', 'right', 'think', 'negat', 'space', 'spotifi', 'store', 'intern', 'forc', 'store', 'download', 'music', 'sd', 'card', 'phone', 'not', 'seem', 'figur', 'eventu', 'crash', 'lack', 'abil', 'updat', 'even', 'os', 'happen', 'blue', 'moon', 'bought', 'juli', 'octob', 'not', 'even', 'scratch', 'thing', 'display', 'fail', 'not', 'acquir', 'cell', 'signal', 'life', 'depend', 'one', 'day', 'might', 'guess', 'happen', 'cheap', 'buy', 'phone', 'lg', 'not', 'even', 'inform', 'updat', 'screen', 'fail', 'less', 'month', 'box', 'great', 'engin'], ['soon', 'receiv', 'phone', 'excit', 'packag', 'perfect', 'love', 'big', 'screen', 'not', 'play', 'full', 'capac', 'yet', 'love', 'far', 'place', 'paygo', 'sim', 'phone', 'fast', 'call', 'data', 'not', 'not', 'abl', 'send', 'pictur', 'messag', 'walk', 'set'], ['met', 'expect'], ['good', 'price', 'great', 'smartphon', 'issu', 'not', 'allow', 'get', 'app', 'instal'], ['nice', 'phone', 'need'], ['phone', 'not', 'unlock'], ['work', 'perfect', 'camara', 'beauti'], ['great', 'phone', 'batteri', 'run', 'quick', 'thend', 'get', 'hot'], ['come', 'lg', 'nice', 'upgrad', 'meet', 'expect'], ['bought', 'replac', 'samsung', 'galaxi', 'far', 'like', 'better', 'main', 'impress', 'posit', 'lg', 'camera', 'i', 'never', 'better', 'camera', 'phone', 'pictur', 'video', 'qualiti', 'impress', 'also', 'like', 'screen', 'inch', 'fit', 'well', 'basebal', 'glove', 'hand', 'one', 'negat', 'realli', 'negat', 'i', 'found', 'far', 'touch', 'sensit', 'almost', 'everi', 'time', 'send', 'text', 'keyboard', 'miss', 'one', 'two', 'touch', 'definit', 'get', 'annoy', 'i', 'download', 'keyboard', 'app', 'avail'], ['purchas', 'phone', 'add', 'exist', 'line', 'noth', 'problem', 'get', 'work', 'effect', 'inexpens', 'window', 'phone'], ['bought', 'phone', 'iphon', 'camera', 'not', 'disappoint', 'one', 'bit', 'awesom', 'curv', 'fluent', 'open', 'app', 'breez', 'batteri', 'life', 'ok', 'noth', 'worth', 'complain', 'would', 'definit', 'buy'], ['great', 'phone', 'miss', 'best', 'cell', 'phone', 'ever', 'own', 'lost', 'kid', 'cloth', 'store', 'went', 'back', 'get', 'late', 'someon', 'peopl', 'cruel'], ['much', 'satisfi', 'i', 'use', 'korea', 'thru', 'sk', 'telecom', 'work', 'great'], ['item', 'use', 'howev', 'list', 'not', 'clear', 'state', 'fact'], ['phone', 'excel', 'condit', 'note', 'verizon', 'version', 'though', 'bootload', 'lock', 'gave', 'away', 'immedi'], ['bought', 'phone', 'octob', 'arriv', 'octob', 'work', 'great', 'hour', 'start', 'insan', 'ghost', 'touch', 'issu', 'sent', 'back', 'got', 'new', 'one', 'ghost', 'touch', 'issu', 'network', 'reciev', 'text', 'not', 'send', 'not', 'make', 'reciev', 'call', 'connect', 'data', 'ask', 'anoth', 'replac', 'keep', 'updat', 'one', 'turn', 'order', 'phone', 'prepar', 'huge', 'headach'], ['believ', 'phone', 'differ', 'model', 'stock', 'differ', 'amazon', 'fulfil', 'center', 'search', 'tireless', 'ensur', 'phone', 'bought', 'would', 'compat', 'upon', 'receiv', 'phone', 'take', 'inform', 'phone', 'purchas', 'model', 'cdma', 'phone', 'not', 'capabl', 'lte', 'speed', 'network', 'repres', 'store', 'work', 'minut', 'tri', 'program', 'phone', 'work', 'proper', 'not', 'spoke', 'amazon', 'custom', 'servic', 'sent', 'second', 'phone', 'still', 'model', 'see', 'peopl', 'review', 'think', 'live', 'closer', 'differ', 'fulfil', 'center', 'phone', 'would', 'gsm', 'phone', 'instead', 'cdma', 'phone', 'receiv', 'phone', 'incred', 'bought', 'gift', 'boyfriend', 'birthday', 'previous', 'smartphon', 'predat', 'four', 'year', 'relationship', 'honest', 'hope', 'would', 'dislik', 'could', 'take', 'hand', 'lg', 'good', 'phone', 'one', 'think', 'i', 'switch', 'back', 'android', 'iphon'], ['amaz', 'valu', 'product', 'excel', 'camera', 'clean', 'android', 'experi', 'freedom', 'unlock', 'phone'], ['touch', 'screen', 'work', 'sometim'], ['best'], ['great', 'phone', 'i', 'littl', 'far', 'love', 'camera', 'take', 'stellar', 'pictur', 'leather', 'back', 'feel', 'much', 'nicer', 'thought', 'might', 'phone', 'run', 'well', 'hot', 'day', 'use', 'camera', 'lot', 'play', 'intens', 'game', 'pokémon', 'go', 'often', 'overheat', 'sometim', 'power', 'also', 'phone', 'run', 'lollipop', 'unlock', 'version', 'not', 'receiv', 'marshmallow', 'updat', 'far', 'understand', 'not', 'know', 'overh', 'due', 'faulti', 'product', 'lack', 'updat', 'simpli', 'devic', 'experi', 'truli', 'great', 'phone', 'hope', 'receiv', 'sort', 'updat', 'fix', 'two', 'main', 'concern', 'otherwis', 'would', 'phone'], ['simpli', 'love', 'happi', 'way', 'come', 'deliveri'], ['great', 'phone', 'good', 'build', 'screen', 'sharp', 'bright', 'comfort', 'hold', 'hand', 'drawback', 'curv', 'screen', 'make', 'non', 'ideal', 'vr'], ['great', 'phone', 'son', 'purchas', 'not', 'shut', 'good', 'deal'], ['love', 'phone'], ['phone', 'broken', 'less', 'week', 'not', 'believ', 'green', 'screen', 'huge', 'line', 'horribl', 'faith', 'amazon', 'peopl', 'best', 'manufactur', 'littl', 'sheisti', 'think', 'horribl', 'horribl', 'moment', 'i', 'cri', 'guy', 'care', 'say', 'girl'], ['realli', 'hope', 'order', 'phone', 'spec', 'similar', 'nexus', 'broken', 'unfortun', 'replac', 'batteri', 'issu', 'make', 'phone', 'drain', 'not', 'charg', 'proper', 'connect', 'outlet', 'charg', 'hour', 'bare', 'pass', 'within', 'past', 'min', 'drain', 'realli', 'warm', 'usb', 'port', 'hard', 'reset', 'remov', 'batteri', 'reinstal', 'avail', 'realli', 'sad', 'optimist', 'phone', 'perform', 'first', 'day'], ['phone', 'get', 'extrem', 'hot', 'not', 'charg', 'even', 'discharg', 'charg'], ['phone', 'easi', 'set', 'work', 'expect', 'one', 'nano', 'sim', 'card', 'one', 'micro', 'sd', 'card', 'switch', 'phone', 'softwar', 'key', 'power', 'button', 'back', 'initi', 'somewhat', 'disori', 'someon', 'previous', 'use', 'samsung', 'galaxi', 'line', 'easi', 'seem', 'fine', 'though', 'i', 'not', 'particular', 'invest', 'photographi', 'not', 'savvi', 'music', 'playback', 'great', 'care', 'life', 'pretti', 'reason', 'past', 'month', 'i', 'use', 'i', 'coupl', 'day', 'get', 'entir', 'batteri', 'day', 'day', 'i', 'activ', 'use', 'phone', 'pretti', 'much', 'whole', 'day', 'batteri', 'life', 'definit', 'fine', 'standbi', 'day', 'hous', 'hour', 'still', 'charg', 'end', 'qualiti', 'realli', 'good', 'phone', 'well', 'look', 'phone', 'side', 'side', 'realiz', 'much', 'appreci', 'clariti', 'imag', 'month', 'usag', 'complaint'], ['got', 'phone', 'upgrad', 'age', 'galaxi', 'enjoy', 'immens', 'last', 'week', 'howev', 'notic', 'anyth', 'screen', 'produc', 'imag', 'ghost', 'imag', 'burn', 'etc', 'usual', 'minut', 'screen', 'fixer', 'app', 'cycl', 'rgbwbl', 'make', 'imag', 'disappear', 'far', 'tell', 'imag', 'not', 'interfer', 'screen', 'function'], ['not', 'buy', 'product', 'cheap', 'version', 'real', 'thing', 'break', 'easili', 'ask', 'refund', 'give', 'way', 'less', 'paid', 'screen', 'mess', 'day', 'phone', 'would', 'not', 'work', 'never', 'drop', 'scratch', 'th', 'screen', 'gave', 'back', 'got', 'refund', 'paid', 'phone', 'compani', 'suck'], ['work', 'great', 'cricket', 'wireless', 'even', 'though', 'set', 'network', 'connect', 'data', 'not', 'hard', 'function', 'well', 'absolut', 'love', 'color'], ['major', 'complaint', 'whatsoev', 'love'], ['great', 'underr'], ['incred', 'fast', 'respons', 'piec', 'electron', 'love', 'support', 'great', 'product', 'give', 'replac', 'batteri', 'expand', 'storag', 'modular', 'design', 'wait', 'get', 'friend', 'product', 'satisfi', 'custom'], ['carrier', 'mess', 'apn', 'program', 'unlock', 'lg', 'data', 'find', 'tech', 'knew', 'reprogram', 'phone', 'correct', 'run', 'great'], ['speaker', 'qualiti', 'lg', 'never', 'sound', 'specif', 'problem', 'devic', 'though'], ['day', 'lg', 'pleas', 'first', 'lg', 'product', 'requir', 'dual', 'sim', 'phone', 'good', 'read', 'profession', 'review', 'feedback', 'amazon', 'made', 'decis', 'phone', 'take', 'great', 'pictur', 'travel', 'quit', 'bit', 'us', 'merchant', 'marin', 'like', 'dual', 'sim', 'card', 'allow', 'keep', 'tmobil', 'card', 'one', 'slot', 'local', 'card', 'phone', 'work', 'great', 'wide', 'angl', 'camera', 'quit', 'use', 'take', 'sceneri', 'good', 'product', 'lg'], ['got', 'lg', 'gold', 'dual', 'sim', 'phone', 'good', 'balanc', 'flagship', 'not', 'like', 'design', 'mani', 'say', 'jump', 'anoth', 'resel', 'celphon', 'use', 'iphon', 'iphon', 'se', 'price', 'got', 'big', 'brother', 'edg', 'factori', 'unlock', 'intern', 'model', 'iphon', 'expens', 'pain', 'io', 'micro', 'sd', 'slot', 'got', 'dual', 'sim', 'use', 'sim', 'mobil', 'data', 'mean', 'use', 'sim', 'sim', 'mobil', 'model', 'dual', 'sim', 'sim', 'mean', 'phone', 'call', 'text', 'use', 'good', 'build', 'bodi', 'made', 'korea', 'not', 'china', 'taiwan', 'indonesia', 'metal', 'bodi', 'light', 'fast', 'finger', 'print', 'sensor', 'one', 'touch', 'unlock', 'screen', 'click', 'first', 'like', 'like', 'way', 'camera', 'great', 'camera', 'wild', 'angl', 'good', 'shot', 'low', 'light', 'natur', 'see', 'test', 'youtub', 'vs', 'iphon', 'play', 'modern', 'combat', 'everyday', 'run', 'fast', 'smooth', 'iphon', 'better', 'io', 'faster', 'enough', 'one', 'day', 'use', 'chand', 'betteri', 'second', 'one', 'need', 'new', 'one', 'not', 'make', 'happen', 'lg', 'made', 'first', 'screen', 'better', 'better', 'ui', 'resolut', 'iphon', 'mayb', 'sold', 'mani', 'samsung', 'phone', 'samsung', 'ui', 'bore', 'alreadi', 'iphon', 'never', 'chang', 'lg', 'not', 'phone', 'show', 'case', 'want', 'phone', 'price', 'perform', 'good', 'choic', 'flagship', 'help'], ['phone', 'nice', 'box', 'open', 'phone', 'set', 'new', 'phone'], ['worri', 'buy', 'first', 'know', 'much', 'date', 'realli', 'want', 'cute', 'flip', 'phone', 'get', 'sick', 'pay', 'data', 'smartphon', 'way', 'busi', 'work', 'anyway', 'gamer', 'constant', 'comput', 'home', 'not', 'make', 'sens', 'anymor', 'sinc', 'use', 'smartphon', 'text', 'call', 'occasion', 'check', 'facebook', 'facebook', 'chat', 'realli', 'thought', 'honest', 'thought', 'facebook', 'could', 'wait', 'came', 'home', 'comput', 'anyway', 'want', 'downgrad', 'galaxi', 'note', 'late', 'help', 'anyon', 'els', 'work', 'actual', 'work', 'worri', 'would', 'not', 'sinc', 'outdat', 'old', 'actual', 'work', 'great', 'connect', 'straight', 'talk', 'walmart', 'got', 'one', 'activ', 'bring', 'phone', 'kit', 'use', 'sim', 'card', 'pick', 'restart', 'phone', 'though', 'notic', 'sim', 'card', 'text', 'fine', 'call', 'fine', 'troubl', 'though', 'receiv', 'pictur', 'not', 'sure', 'phone', 'mess', 'set', 'tri', 'figur', 'ador', 'phone', 'work', 'well', 'get', 'not', 'wait', 'get', 'ador', 'charm', 'stuff'], ['use', 'phone', 'i', 'not', 'sure', 'get', 'voicemail', 'phone', 'realli', 'work'], ['bought', 'nexus', 'replac', 'gb', 'nexus', 'phone', 'perfect', 'everi', 'respect', 'fast', 'plenti', 'storag', 'work', 'better', 'previous', 'new', 'nexus', 'high', 'recommend'], ['bought', 'mom', 'noth', 'prais', 'oper', 'system', 'pure', 'googl', 'thus', 'seamless', 'run', 'quit', 'app', 'without', 'slow', 'heat', 'definit', 'great', 'product', 'great', 'servic', 'seller'], ['awesom', 'phone', 'run', 'android', 'realli', 'well', 'batteri', 'life', 'not', 'great', 'would', 'phone', 'weak', 'second', 'one', 'broke', 'screen', 'last', 'one', 'pretti', 'durabl', 'noth', 'beat', 'tile', 'floor', 'far', 'retail', 'ship', 'fast', 'phone', 'appear', 'brand', 'new', 'complet', 'satisfi'], ['slow'], ['phone', 'look', 'great', 'shape', 'close', 'new', 'could', 'expect', 'problem', 'reason', 'low', 'rate', 'mic', 'not', 'work', 'phone', 'unless', 'speakerphon', 'mode', 'enabl'], ['refurbish', 'nexus', 'arriv', 'new', 'condit', 'work', 'perfect', 'come', 'generic', 'box', 'parti', 'charger', 'document', 'manual', 'pleas', 'note', 'sim', 'card', 'remov', 'tool', 'not', 'includ', 'kit', 'everi', 'new', 'nexus', 'phone', 'come', 'tool', 'use', 'eject', 'sim', 'card', 'refurbish', 'phone', 'not', 'come', 'eject', 'tool', 'howev', 'someth', 'like', 'paper', 'clip', 'work', 'good', 'offici', 'tool', 'thorough', 'test', 'aspect', 'nexus', 'oper', 'includ', 'cellular', 'wifi', 'text', 'messag', 'mms', 'messag', 'everyth', 'perfect', 'work', 'condit', 'overal', 'phone', 'like', 'new', 'condit', 'notic', 'sign', 'wear', 'tear', 'screen', 'scratch', 'free', 'look', 'new', 'think', 'awesom', 'deal', 'money', 'item', 'order', 'buyspri', 'high', 'recommend', 'recent', 'order', 'refurbish', 'nexus', 'breed', 'not', 'intend', 'switch', 'vendor', 'reorder', 'item', 'amazon', 'chose', 'breed', 'instead', 'vendor', 'purchas', 'first', 'nexus', 'describ', 'time', 'phone', 'arriv', 'offici', 'look', 'lg', 'box', 'contain', 'white', 'nexus', 'parti', 'charger', 'sim', 'eject', 'tool', 'phone', 'new', 'condit', 'like', 'one', 'receiv', 'buyspri', 'power', 'work', 'fine', 'howev', 'sinc', 'order', 'black', 'phone', 'receiv', 'white', 'one', 'return', 'breed', 'order', 'new', 'one', 'buyspri', 'buyspri', 'sent', 'anoth', 'nexus', 'perfect', 'work', 'condit', 'phone', 'new', 'condit', 'power', 'ran', 'great', 'upgrad', 'softwar', 'android', 'marshmallow', 'daughter', 'use', 'week', 'summari', 'receiv', 'total', 'refurbish', 'phone', 'kept', 'return', 'work', 'great', 'receiv', 'like', 'new', 'condit', 'i', 'also', 'pretti', 'sure', 'fulfil', 'order', 'breed', 'buyspri', 'not', 'think', 'vendor', 'fault', 'receiv', 'wrong', 'color', 'phone', 'would', 'not', 'hesit', 'place', 'order', 'either', 'vendor', 'not', 'receiv', 'compens', 'discount', 'review', 'absolut', 'affili', 'vendor', 'i', 'averag', 'joe', 'love', 'nexus', 'phone'], ['bought', 'came', 'broken'], ['nexus', 'one', 'googl', 'better', 'phone', 'great', 'valu', 'price'], ['great', 'phone', 'per', 'button', 'got', 'jam', 'broke', 'shame', 'broke'], ['power', 'button', 'achill', 'heel', 'guarante', 'fail', 'send', 'phone', 'boot', 'loop', 'refus', 'boot', 'press', 'made', 'care', 'research', 'trust', 'lg', 'use', 'cheap', 'materi', 'build', 'power', 'button', 'make', 'fragil', 'phone', 'last', 'month', 'normal', 'use', 'put', 'protect', 'case', 'day', 'one', 'previous', 'phone', 'galaxi', 'bought', 'year', 'ago', 'still', 'work', 'part', 'stay', 'clear', 'lg', 'product', 'sad', 'sinc', 'great', 'phone'], ['deliv', 'condit', 'small', 'plain', 'box', 'protect', 'sticker', 'front', 'side', 'phone', 'restor', 'factori', 'set', 'android', 'expect', 'hour', 'updat', 'android', 'phone', 'much', 'faster', 'motorola', 'moto', 'g', 'happi', 'far'], ['realli', 'love', 'nexus', 'pretti', 'handi'], ['excel', 'condit'], ['ok', 'thakshello', 'problem', 'cell', 'phone', 'need', 'contact', 'via', 'email', 'send', 'pleas'], ['seller', 'lie', 'state', 'nexus', 'upon', 'inspect', 'could', 'use', 'everyth', 'go', 'perfect', 'fine', 'month', 'later', 'nexus', 'die', 'run', 'youtub', 'channel', 'tech', 'nexus', 'lifelin', 'kept', 'pristin', 'condit', 'nowher', 'complet', 'stop', 'work', 'mention', 'look', 'like', 'box', 'pre', 'open', 'got', 'keep', 'thing', 'sweet', 'point', 'nexus', 'great', 'phone', 'seller', 'sell', 'hand', 'need', 'honest', 'model', 'peopl', 'pay', 'ensur', 'correct', 'one', 'probabl', 'not', 'return', 'seller', 'buy', 'anoth', 'devic'], ['great', 'phone', 'fast', 'light', 'easi', 'use'], ['awesom', 'phone', 'best', 'get', 'usd'], [], ['best'], ['good'], ['batteri'], ['like', 'much', 'i', 'chile', 'bought', 'version', 'way', 'use', 'reciev', 'perfect', 'condit', 'phone', 'amaz', 'thing', 'miss', 'not', 'come', 'headset'], ['alway', 'buy', 'nexus', 'figur', 'googl', 'want', 'get', 'updat', 'soon', 'come', 'hardwar', 'match', 'softwar', 'thing', 'screen', 'littl', 'larg', 'i', 'smaller', 'screen', 'not', 'get'], ['malfunct', 'day', 'make', 'imposs', 'use', 'waist', 'hard', 'earn', 'money'], ['excel', 'product', 'recommend', 'buy'], ['realli', 'good', 'phone'], ['experi', 'purchas', 'beyond', 'bad', 'sound', 'qualiti', 'horribl', 'day', 'phone', 'start', 'fail', 'nine', 'month', 'bit', 'dust', 'less', 'get', 'lg', 'declin', 'honor', 'factori', 'warranti', 'intern', 'phone', 'seller', 'mobil', 'front', 'not', 'feel', 'necessari', 'mention', 'petti', 'detail', 'phone', 'webpag', 'not', 'bought', 'phone', 'shame', 'mobil', 'front', 'shame', 'formal', 'compliant', 'amazon'], ['quick', 'phone', 'pretti', 'slim', 'easi', 'operateworth', 'price', 'cost', 'compar', 'devicesnewest', 'android', 'updat', 'come', 'straight', 'googl'], ['love'], ['met', 'expect'], ['phone', 'not', 'new', 'refurbish', 'anyon', 'see', 'easili', 'phone', 'box', 'open', 'reseal', 'white', 'tape'], ['make', 'sure', 'awar', 'intern', 'version'], ['i', 'own', 'nexus', 'refurb', 'model', 'upgrad', 'lollipop', 'gave', 'infam', 'sleep', 'death', 'phone', 'goe', 'keep', 'fulli', 'restart', 'not', 'good', 'sinc', 'live', 'mountain', 'kind', 'need', 'phone', 'got', 'coupl', 'day', 'ago', 'almost', 'perfect', 'phone', 'lollipop', 'ii', 'one', 'buggiest', 'op', 'sys', 'ever', 'use', 'kit', 'kat', 'perfect', 'almost', 'lag', 'app', 'would', 'not', 'crash', 'slight', 'lag', 'also', 'app', 'crash', 'batteri', 'life', 'terribl', 'i', 'dl', 'app', 'batteri', 'leav', 'lot', 'i', 'sorri', 'expect', 'power', 'camera', 'expens', 'devic', 'give', 'pure', 'stock', 'android', 'experi', 'processor', 'handl', 'pretti', 'much', 'game', 'throw', 'latest', 'system', 'updat', 'pretti', 'good', 'deal', 'consid', 'hardwar', 'hood'], ['satisfi', 'enjoy', 'nexus'], ['great', 'buy'], ['got', 'father', 'sinc', 'use', 'samsung', 'mini', 'past', 'phone', 'simpli', 'amaz', 'l', 'father', 'love', 'respons', 'keep', 'touch', 'read', 'materi', 'candi', 'crush'], ['great', 'product', 'complaint'], ['realli', 'satisfi', 'phone', 'got', 'time'], ['good'], ['awesom', 'phone', 'best', 'get', 'usd'], ['got', 'phone', 'compani', 'demo', 'project', 'instead', 'use', 'real', 'phone', 'make', 'like', 'form', 'factor', 'feel', 'good', 'hold', 'hand', 'rubberish', 'fast', 'fit', 'happi'], ['good'], ['good', 'phone'], ['nice', 'n', 'work', 'well', 'batteri', 'problem', 'though'], ['cellphon', 'amaz'], ['great', 'phone'], ['power', 'piec', 'hardwar', 'great', 'display', 'non', 'clutter', 'android', 'think', 'lot', 'peopl', 'appreci', 'pure', 'android', 'tri', 'crapwar', 'ridden', 'samsung', 'absolut', 'noth', 'complain', 'fast', 'modern', 'phone', 'except', 'camera', 'pictur', 'signific', 'lower', 'qualiti', 'iphon', 'galaxi', 'flash', 'use', 'flashlight', 'disappear', 'shot', 'taken', 'tri', 'phone', 'though', 'oneplus', 'one', 'report', 'better', 'deal', 'buy', 'invit', 'forum', 'resel', 'invit', 'get', 'ebay', 'cost', 'phone'], ['great', 'devic', 'easier', 'get', 'signal', 'compar', 'old', 'nexus', 'incred', 'display', 'fast', 'fast', 'phone', 'lag', 'android', 'breez', 'camera', 'realli', 'good', 'screen', 'incred', 'recommend', 'devic', 'problem', 'far', 'con', 'back', 'protect', 'case', 'mandatori', 'purchas', 'ringkl', 'slim', 'batteri', 'life', 'better', 'anyway', 'i', 'charg', 'coupl', 'time', 'sure', 'perform', 'go', 'increas', 'charg', 'cycl', 'i', 'happi', 'close', 'perfect', 'cell', 'phone'], ['perfect', 'quick', 'thank'], ['love'], ['i', 'deepli', 'sorri', 'inform', 'receiv', 'wrong', 'version', 'cell', 'phone', 'suppos', 'version', 'compat', 'technolog', 'frequenc', 'brazil', 'version', 'phone', 'receiv', 'bad'], ['phone', 'great', 'especi', 'softwar', 'side', 'super', 'fast'], ['love', 'phone', 'simpl', 'eleg', 'power', 'half', 'price', 'iphon', 'great', 'altern', 'good', 'way', 'get', 'android', 'without', 'bloat', 'replac', 'batteri', 'memori', 'add', 'make', 'compact', 'phone', 'tri', 'still', 'decent', 'screen', 'size', 'virtual', 'guarante', 'latest', 'updat', 'arriv', 'pick', 'intern', 'version', 'i', 'use', 'us', 'access', 'plenti', 'quick', 'i', 'europ', 'get', 'frequenc', 'sweet', 'handset', 'awesom', 'price'], ['due', 'hardwar', 'limit', 'radio', 'receiv', 'work', 'internet', 'radio', 'app', 'not', 'real', 'radio', 'app'], ['great', 'product', 'complaint'], ['intern', 'version', 'nexus', 'not', 'compat', 'us', 'lte'], ['problem', 'got', 'phone', 'relat', 'fast'], ['good', 'phone', 'fast', 'solid'], ['excel'], ['great', 'relat', 'charger', 'not', 'usb', 'packag', 'not', 'includ', 'speaker', 'could', 'better'], ['great', 'phone', 'lower', 'price', 'latest', 'android', 'version'], ['product', 'arriv', 'time', 'excel', 'condit', 'good', 'qualiti', 'exact', 'need'], ['phone', 'slowli', 'die', 'want', 'free', 'choic', 'network', 'contract', 'iphon', 'last', 'year', 'thought', 'well', 'i', 'gunna', 'drink', 'android', 'cool', 'aid', 'might', 'well', 'drink', 'bought', 'googl', 'phone', 'like', 'pretti', 'power', 'not', 'notic', 'lag', 'kind', 'anyth', 'like', 'like', 'camera', 'realli', 'enjoy', 'new', 'oper', 'system', 'thing', 'particular', 'list', 'come', 'intern', 'charger', 'adapt', 'america', 'figur', 'much', 'save', 'total', 'worth', 'money', 'not', 'beat', 'video', 'call', 'phone', 'woow', 'thing', 'get', 'hot', 'serrious', 'could', 'boil', 'egg', 'hot', 'put', 'fridg', 'let', 'cool', 'get', 'phone', 'care', 'thermal', 'saw', 'review', 'earlier', 'said', 'die', 'month', 'got', 'bet', 'got', 'hot'], ['phone', 'great', 'expect', 'great', 'camera', 'especi', 'still', 'captur', 'video', 'static', 'great', 'start', 'move', 'lack', 'optic', 'stabil', 'nighttim', 'pic', 'great', 'pleas', 'not', 'forget', 'perman', 'activ', 'night', 'otherwis', 'get', 'graini', 'fluid', 'interfac', 'glitch', 'everyth', 'smooth', 'thank', 'stock', 'os', 'display', 'great', 'get', 'bright', 'screen', 'decent', 'size', 'view', 'love', 'fingerprint', 'sensor', 'work', 'reliabl', 'fast', 'would', 'even', 'say', 'instant', 'doubl', 'speaker', 'great', 'outdoor', 'pretti', 'alway', 'first', 'line', 'whenev', 'android', 'os', 'get', 'updat', 'sure', 'get', 'first', 'pleas', 'not', 'forget', 'new', 'updat', 'polici', 'devic', 'googl'], ['great', 'phone', 'great', 'featur', 'nexus', 'devic', 'could', 'not', 'pleas', 'purchas', 'intern', 'version', 'purchas', 'us', 'type', 'c', 'charger', 'inexpens', 'preform', 'flawless', 'network', 'issu'], ['nice', 'phone', 'price'], ['incred', 'product', 'price'], ['great', 'phone', 'lower', 'price', 'latest', 'android', 'version'], ['bought', 'mom', 'i', 'think', 'get', 'one', 'work', 'well'], ['like', 'predict', 'spec', 'stun', 'surpris', 'perform', 'pack', 'punch', 'hardwar', 'not', 'realli', 'bad', 'sinc', 'googl', 'get', 'updat', 'first', 'anoth', 'one'], ['wonder', 'phone', 'best', 'budget', 'android', 'phone', 'get', 'today', 'i', 'realli', 'impress', 'featur', 'offer', 'low', 'cost', 'phone', 'best', 'thing', 'run', 'realli', 'smooth', 'hard', 'produc', 'glitch'], ['not', 'buy', 'phone', 'two', 'month', 'use', 'wifi', 'stop', 'work', 'updat', 'return', 'polici', 'not', 'allow', 'return', 'neither', 'amazon', 'lg', 'googl', 'help', 'issu', 'phone', 'not', 'come', 'warranti', 'i', 'screw', 'tri', 'sever', 'solut', 'found', 'internet', 'one', 'work', 'seem', 'physic', 'issu', 'i', 'tri', 'factori', 'reset', 'phone', 'get', 'result', 'save', 'time', 'buy', 'anoth', 'phone'], ['work', 'perfect', 'india'], ['great', 'deal'], ['phone', 'solid', 'littl', 'tough', 'get', 'set', 'sprint', 'sinc', 'one', 'store', 'sim', 'card', 'area', 'go', 'great'], ['nexus', 'custom', 'sinc', 'nexus', 'easi', 'choic'], ['amaz', 'phone'], ['i', 'lot', 'lot', 'unlock', 'phone', 'cricket', 'servic', 'year', 'notic', 'common', 'theme', 'among', 'unlock', 'phone', 'tend', 'cheapli', 'made', 'part', 'hit', 'miss', 'box', 'phone', 'beat', 'competit', 'water', 'mile', 'half', 'i', 'phone', 'two', 'month', 'write', 'review', 'singl', 'amaz', 'phone', 'i', 'ever', 'i', 'tell', 'money', 'invest', 'phone', 'even', 'financ', 'someth', 'like', 'amazon', 'credit', 'worth', 'everi', 'favorit', 'featur', 'though', 'camera', 'display', 'not', 'camera', 'shoot', 'imag', 'unbeliev', 'photo', 'show', 'get', 'money'], ['thin', 'fingerprint', 'featur', 'cool', 'glad', 'phone', 'abl', 'work', 'provid', 'network', 'pacif', 'hard', 'tell', 'side', 'oh', 'well', 'not', 'realli', 'bother', 'featur', 'pretti', 'straightforward', 'switch', 'still', 'miss', 'could', 'comfort', 'reflect', 'back', 'later', 'test', 'week', 'portion', 'camera', 'not', 'protrud', 'thought', 'would', 'look', 'verus', 'keep', 'protect', 'overal', 'first', 'impress', 'great'], ['hello', 'thank', 'question', 'yes', 'like', 'de', 'cell', 'phone', 'lg', 'nexus', 'other', 'thing'], ['nice', 'phone'], ['realli', 'nice', 'phone', 'fast', 'afford', 'price', 'suit', 'realli', 'good', 'great', 'phone', 'not', 'want', 'anoth', 'brand', 'dual', 'sim', 'phone', 'work', 'great', 'recommend', 'product'], ['i', 'impress', 'check', 'review'], ['lg', 'favorit', 'brand', 'phone', 'far', 'one', 'best', 'one', 'four', 'week', 'problem', 'durabl', 'nice', 'weight', 'size', 'fast', 'ampl', 'memori', 'storag', 'front', 'rear', 'camera', 'take', 'nice', 'pictur', 'batteri', 'life', 'sound', 'okay', 'also', 'easi', 'use', 'love', 'phone', 'plan', 'keep', 'long', 'time'], ['phone', 'problem', 'return', 'first', 'one', 'day', 'got', 'product', 'not', 'work', 'proper', 'got', 'replac', 'got', 'replac', 'not', 'even', 'month', 'problem', 'pretti', 'much', 'got', 'buy', 'whole', 'new', 'phone', 'warranti', 'own', 'phone', 'less', 'month'], ['love', 'phone', 'first', 'smart', 'phone', 'user', 'friend', 'easi', 'figur', 'price', 'definit', 'unlock', 'use', 'prepaid', 'plan', 'perfect', 'take', 'countri', 'use', 'sim', 'purchas', 'year'], ['love', 'lg', 'one', 'never', 'buy', 'anoth', 'motorola', 'would', 'not', 'use', 'given', 'custom', 'servic', 'deplor', 'lg', 'custom', 'servic', 'great', 'call', 'ask', 'question', 'polit', 'inform', 'run', 'around', 'everyth', 'need', 'pictur', 'light', 'email', 'web', 'surf', 'text', 'group', 'text', 'easili', 'sound', 'good', 'strong', 'would', 'buy', 'anoth', 'without', 'concern'], ['see', 'main', 'screen', 'never', 'not', 'sure', 'advertis', 'go', 'buy', 'sim', 'card', 'fit', 'phone', 'extra', 'took', 'awhil', 'put', 'network', 'inform', 'day', 'everyth', 'work', 'saw', 'walmart', 'version', 'phone', 'lesson', 'learn', 'buy', 'walmart'], ['found', 'cell', 'phone', 'use', 'someon', 'els', 'record', 'show', 'use', 'din', 'not', 'buy', 'use', 'one', 'pay', 'brand', 'new', 'one', 'feel', 'angri'], ['lg', 'renoir', 'freez', 'lot', 'make', 'frustrat', 'use', 'also', 'turn', 'feel', 'like', 'user', 'not', 'make', 'receiv', 'call', 'press', 'appropri', 'button', 'pair', 'connect', 'bluetooth', 'headset', 'make', 'receiv', 'call', 'use', 'button', 'lg', 'renoir', 'thus', 'negat', 'purpos', 'bluetooth', 'batteri', 'life', 'recept', 'not', 'good', 'also', 'lg', 'cooki', 'i', 'notic', 'make', 'receiv', 'call', 'use', 'lg', 'cooki', 'lot', 'area', 'problem', 'imposs', 'area', 'lg', 'renoir', 'even', 'though', 'use', 'sim', 'card', 'instanc', 'lg', 'renoir', 'lot', 'cost', 'lg', 'camera', 'lg', 'renoir', 'excel'], ['sever', 'year', 'later', 'wife', 'still', 'use', 'phone', 'great', 'phone', 'unlock', 'intern', 'iphon', 'far'], ['model', 'year', 'still', 'work', 'perfect', 'want', 'anoth', 'happi', 'phone', 'thank'], ['excel', 'stylish', 'phone', 'touch', 'screen', 'technolog', 'slide', 'full', 'qwerti', 'button', 'keyboard', 'good', 'batteri', 'life', 'mani', 'use', 'applic', 'mega', 'pixel', 'camera', 'purchas', 'replac', 'first', 'prada', 'ii', 'cell', 'phone', 'last', 'year', 'i', 'content', 'cell', 'phone', 'last', 'year'], ['phone', 'realli', 'great', 'buy', 'realli', 'great', 'price', 'work', 'good', 'take', 'nice', 'pictur', 'clear', 'sound', 'recomend'], ['lg', 'cooki', 'nice', 'phone', 'easi', 'use', 'not', 'bulcki', 'problem', 'pc', 'suit', 'would', 'not', 'work', 'not', 'get', 'updat', 'onlin', 'phone', 'work', 'well'], ['great', 'littl', 'devic', 'small', 'easi', 'use', 'exact', 'paid'], ['phone', 'purchas', 'friend', 'brought', 'angola', 'west', 'africa', 'phone', 'deliv', 'time', 'oper', 'perfect', 'problem', 'local', 'gms', 'system', 'friend', 'happi', 'phone'], ['bought', 'phone', 'gift', 'brother', 'took', 'turkey', 'soon', 'start', 'use', 'phone', 'half', 'day', 'batteri', 'die', 'sometim', 'charg', 'batteri', 'time', 'day', 'find', 'batteri', 'good', 'buy', 'new', 'batteri', 'get', 'second', 'problem', 'everi', 'call', 'get', 'not', 'hear', 'one', 'decid', 'not', 'use', 'phone', 'anymor', 'wast', 'money'], ['celular', 'barato', 'que', 'vale', 'lo', 'que', 'le', 'precio', 'pide', 'pued', 'leer', 'pdf', 'sin', 'instalar', 'nada', 'extra', 'aunqu', 'igual', 'es', 'incomodo', 'por', 'el', 'tamano', 'lo', 'que', 'se', 'podria', 'mejorar', 'para', 'audifono', 'regular', 'un', 'mejor', 'modem', 'ya', 'que', 'navega', 'maximo', 'en', 'costa', 'rica', 'sin', 'ningun', 'problema'], ['good', 'job'], ['think', 'buy', 'lg', 'kp', 'disast', 'read', 'thing', 'day', 'ago', 'use', 'around', 'day', 'i', 'much', 'disgust', 'product', 'come', 'conclus', 'return', 'buy', 'anyth', 'lg', 'rest', 'life', 'not', 'restart', 'turn', 'sometim', 'not', 'noth', 'load', 'hour', 'charg', 'mayb', 'i', 'frustrat', 'not', 'read', 'comment', 'past', 'touch', 'screen', 'good', 'answer', 'touch', 'everi', 'end', 'see', 'send', 'anoth', 'not', 'would', 'would', 'come', 'damag', 'money', 'repaid'], ['i', 'phone', 'month', 'i', 'impress', 'get', 'great', 'recept', 'even', 'better', 'old', 'razr', 'thought', 'excel', 'recept', 'call', 'qualiti', 'also', 'love', 'touchscreen', 'not', 'go', 'back', 'phone', 'much', 'easier', 'navig', 'menus', 'get', 'want', 'yes', 'text', 'littl', 'difficult', 'posit', 'touchscreen', 'outweigh', 'negat', 'text', 'quit', 'abl', 'get', 'mms', 'internet', 'servic', 'work', 'right', 'away', 'googl', 'search', 'lg', 'cooki', 'mms', 'set', 'lot', 'info', 'set', 'phone', 'thin', 'lightweight', 'wear', 'jean', 'lot', 'fit', 'front', 'pocket', 'not', 'need', 'gps', 'wifi', 'realli', 'great', 'phone', 'i', 'would', 'look', 'elsewher', 'everyth', 'need', 'well'], ['bought', 'unlock', 'phone', 'husband', 'birthday', 'love', 'great', 'featur', 'user', 'friend', 'sometim', 'touch', 'screen', 'not', 'respond', 'first', 'tap', 'not', 'huge', 'problem', 'probabl', 'wors', 'touch', 'screen', 'phone', 'also', 'sinc', 'european', 'phone', 'could', 'not', 'find', 'accessori', 'silicon', 'case', 'made', 'specif', 'minor', 'thing', 'would', 'high', 'recommend', 'product'], ['phone', 'not', 'expect', 'phone', 'look', 'cheap', 'could', 'not', 'even', 'get', 'internet', 'oh', 'anoth', 'text'], ['phone', 'work', 'perfect', 'gsm', 'fast', 'nice', 'good', 'sound', 'good', 'screen', 'great', 'pictur', 'video', 'take', 'time', 'learn', 'manag', 'well', 'touch', 'mani', 'year', 'convent', 'key', 'not', 'wait', 'handl', 'perfect', 'time', 'time', 'best', 'phone', 'price', 'pay'], ['smart', 'easi', 'use', 'nice', 'excel', 'display', 'oustand', 'resolut', 'i', 'recommend', 'buy'], ['said', 'reciew', 'abl', 'switch', 'phone', 'pre', 'paid', 'contract', 'sprint', 'person', 'took', 'day', 'puttinf', 'ticket', 'tri', 'add', 'inventori', 'noth', 'end', 'give', 'brick', 'phone', 'daughter', 'practic', 'phone', 'see', 'old', 'enough', 'yet', 'abl', 'play', 'game', 'use', 'internet', 'noth', 'els'], ['overal', 'happi', 'frustrat', 'phone', 'period', 'lose', 'connect', 'sd', 'card', 'garbl', 'current', 'set', 'pictur', 'batteri', 'life', 'excel', 'plenti', 'space', 'app'], ['look', 'like', 'brand', 'new', 'work', 'great', 'glad', 'took', 'chanc', 'bought', 'quick', 'ship', 'thank'], ['bought', 'phone', 'first', 'smart', 'phone', 'far', 'thing', 'hinder', 'perform', 'phone', 'drag', 'feet', 'read', 'manual', 'guess', 'abl', 'figur', 'oper', 'use', 'tutori', 'video', 'phone', 'use', 'intuit', 'would', 'definit', 'recommend', 'phone', 'size', 'not', 'small', 'not', 'larg', 'extrem', 'lightweight', 'put', 'cover'], ['overal', 'happi', 'frustrat', 'phone', 'period', 'lose', 'connect', 'sd', 'card', 'garbl', 'current', 'set', 'pictur', 'batteri', 'life', 'excel', 'plenti', 'space', 'app'], ['junk'], ['phone', 'replac', 'lost', 'origin', 'issu', 'phone', 'disappoint', 'inabl', 'expedit', 'ship', 'receiv', 'day', 'place', 'order'], ['not', 'buy', 'carrier', 'use', 'gsm'], ['product', 'arriv', 'earlier', 'expect', 'perfect', 'condit', 'ad', 'sim', 'card', 'transfer', 'contact', 'work', 'perfect', 'verizon', 'system', 'vivid', 'color', 'screen', 'level', 'wife', 'old', 'htc', 'love', 'new', 'phone'], ['came', 'quick', 'fulli', 'charg', 'not', 'scratch', 'far', 'love'], ['malfunct', 'day', 'return'], ['everyth', 'ok'], ['good'], ['ok', 'price', 'afford', 'someth', 'better', 'go', 'complet', 'stop', 'work', 'week', 'rare', 'occurr', 'not', 'know', 'cheapli', 'made', 'got', 'unlucki', 'not', 'tell', 'refund', 'quick', 'pain', 'free', 'amazon', 'bought', 'still', 'problem', 'buy', 'android', 'devic', 'seem', 'expens', 'phone', 'quicker', 'wash', 'jean', 'pocket', 'destroy', 'drop', 'loos', 'otherwis', 'destroy', 'mangl', 'us', 'see', 'not', 'android', 'keyboard', 'extrem', 'hard', 'get', 'use', 'touchscreen', 'use', 'touchscreen', 'specif', 'function', 'i', 'phone', 'week', 'figur', 'send', 'text', 'messag', 'without', 'slide', 'keyboard', 'type', 'slide', 'back', 'press', 'send', 'button', 'interfac', 'extrem', 'vagu', 'guess', 'need', 'probabl', 'read', 'manual', 'not', 'obvious', 'even', 'simplest', 'task', 'super', 'awesom', 'featur', 'programm', 'engin', 'decid', 'throw', 'phone', 'batteri', 'even', 'somewhat', 'low', 'complet', 'remov', 'abil', 'send', 'text', 'messag', 'thank', 'lg', 'engin', 'sort', 'critic', 'send', 'text', 'messag', 'engin', 'sure', 'know', 'better', 'not', 'obvious', 'reason', 'yes', 'kid', 'batteri', 'becom', 'within', 'hour', 'go', 'complet', 'dead', 'not', 'allow', 'open', 'text', 'messag', 'applic', 'contact', 'applic', 'left', 'dial', 'number', 'well', 'get', 'better', 'recept', 'phone', 'i', 'use', 'possibl', 'take', 'pictur', 'expect', 'not', 'great', 'not', 'expect', 'overal', 'usag', 'fumbl', 'like', 'said', 'i', 'believ', 'week', 'still', 'struggl', 'even', 'basic', 'featur', 'task', 'send', 'messag', 'let', 'go', 'menu', 'tri', 'find', 'last', 'miss', 'call', 'minut', 'later', 'might', 'overal', 'construct', 'fair', 'sturdi', 'except', 'back', 'hold', 'batteri', 'piec', 'plastic', 'thin', 'sheet', 'paper', 'everi', 'time', 'drop', 'phone', 'even', 'gentl', 'onto', 'carpet', 'phone', 'explod', 'combo', 'requir', 'quick', 'annoy', 'yes', 'one', 'annoy', 'phone', 'hang', 'peopl', 'repeat', 'press', 'hang', 'button', 'cheek', 'not', 'aw', 'i', 'done', 'twice', 'pretti', 'hard', 'phone', 'rough', 'realli', 'complain', 'not', 'android', 'nice', 'phone', 'job', 'better', 'similar', 'price', 'phone'], ['took', 'phone', 'activ', 'well', 'phone', 'stop', 'work', 'min', 'activ', 'not', 'even', 'leav', 'store', 'took', 'custom', 'servic', 'agent', 'word', 'phone', 'bad', 'purchas', 'corrupt', 'could', 'not', 'read', 'sim', 'card', 'decid', 'return', 'phone', 'shipper', 'receiv', 'item', 'day', 'ago', 'not', 'receiv', 'refund'], ['kid', 'use', 'phone', 'particular', 'lg', 'neon', 'especi', 'like', 'slide', 'qwerti', 'keyboard', 'batteri', 'life', 'good', 'year', 'use', 'one', 'phone', 'issu', 'not', 'abl', 'receiv', 'pictur', 'messag', 'anoth', 'review', 'answer', 'master', 'reset', 'use', 'pass', 'code', 'not', 'lose', 'data', 'phone', 'work', 'perfect', 'ever', 'sinc'], ['not', 'go', 'wrong', 'look', 'dumbphon', 'complaint', 'way', 'make', 'number', 'screen', 'bigger', 'littl', 'difficult', 'dial', 'sometim', 'without', 'press', 'wrong', 'one', 'take', 'get', 'use', 'otherwis', 'would', 'five', 'star'], ['pro', 'decent', 'phone', 'not', 'wast', 'upgrad', 'work', 'pretti', 'well', 'drop', 'call', 'easi', 'text', 'batteri', 'cover', 'come', 'back', 'pretti', 'easi', 'pain', 'somet', 'caus', 'not', 'charg', 'batteri', 'not', 'seat', 'right'], ['not', 'use', 'phone', 'often', 'not', 'want', 'fork', 'much', 'money', 'smart', 'phone', 'bought', 'go', 'phone', 'walmart', 'one', 'look', 'like', 'blackberri', 'hate', 'inexpens', 'phone', 'not', 'work', 'well', 'could', 'not', 'hear', 'phone', 'ring', 'could', 'not', 'hear', 'speaker', 'mode', 'lg', 'phone', 'much', 'better', 'get', 'use', 'differ', 'last', 'phone', 'work', 'well', 'take', 'step', 'text', 'messag', 'not', 'use', 'phone', 'often', 'fine', 'work', 'great', 'att', 'plan', 'put', 'card', 'work', 'reccommend', 'friend', 'bought', 'fine', 'well'], ['aunt', 'came', 'rescu', 'year', 'niec', 'birthday', 'year', 'got', 'phone', 'first', 'cell', 'phone', 'ever', 'look', 'someth', 'could', 'take', 'pictur', 'make', 'call', 'text', 'seem', 'full', 'packag', 'afford', 'price', 'not', 'mention', 'also', 'send', 'voic', 'file', 'text', 'video', 'record', 'phone', 'messag', 'also', 'idea', 'phone', 'capabl', 'price', 'get', 'good', 'phone', 'not', 'good', 'either', 'first', 'phone', 'replac', 'phone', 'get', 'iterim', 'phone', 'phone', 'broke', 'wait', 'upgrad'], ['come', 'old', 'phone', 'internet', 'slow', 'pay', 'month', 'servic', 'figur', 'would', 'get', 'one', 'save', 'money', 'till', 'new', 'one', 'come', 'silli', 'phone', 'everyth', 'written', 'review', 'true', 'listen', 'silli', 'button', 'screen', 'sideway', 'letter', 'number', 'counterintuit', 'price', 'not', 'everyth'], ['good', 'product', 'high', 'qualiti', 'good', 'materi', 'recommend', 'product', 'buyer', 'class'], ['awesom'], ['receiv', 'phone', 'could', 'not', 'believ', 'instead', 'normal', 'clear', 'plastic', 'sticker', 'glass', 'front', 'pull', 'phone', 'paper', 'sticker', 'glu', 'front', 'tri', 'peel', 'would', 'not', 'come', 'without', 'serious', 'work', 'cours', 'scratch', 'glass', 'display', 'never', 'bother', 'tri', 'phone', 'point', 'sinc', 'display', 'alreadi', 'mess', 'glue', 'paper', 'scratch', 'would', 'never', 'purchas', 'seller', 'return', 'refund', 'alway', 'amazon', 'custom', 'servic', 'great'], ['phone', 'damag'], ['phone', 'weak', 'net', 'work', 'lte', 'not', 'work', 'countrybuy', 'good', 'contact'], ['nexus', 'great', 'cellular', 'work', 'price', 'competit', 'compar', 'lead', 'brand', 'industri'], ['glorious', 'phone', 'nfc', 'charg', 'year', 'ridicul', 'bling', 'bling', 'also', 'happen', 'run', 'pure', 'android', 'someth', 'like', 'perfect'], ['love', 'nexus', 'fourth', 'bought', 'fifth', 'never', 'disappoint', 'i', 'sure', 'one', 'go', 'last', 'long', 'last', 'one', 'without', 'get', 'slow', 'freez', 'time', 'one', 'two', 'year', 'use', 'like', 'brand', 'softwar', 'layer', 'googl', 'relief'], ['fast', 'ship', 'flawless', 'nexus', 'boy', 'nexus', 'make', 'look', 'like', 'toy'], ['fantast', 'phone', 'far', 'best', 'get', 'less', 'high', 'recommend', 'own', 'nexus', 'nexus', 'model', 'grown', 'size', 'get', 'better', 'time', 'heard', 'complaint', 'plastic', 'back', 'would', 'not', 'notic', 'phone', 'light', 'durabl', 'plus', 'peopl', 'put', 'case', 'phone', 'anyway', 'would', 'buy', 'samsung', 'iphon', 'doubl', 'price', 'aluminum', 'frame', 'put', 'tpu', 'case', 'android', 'direct', 'googl', 'way', 'go', 'far', 'better', 'io', 'anyth', 'dum', 'samsung'], ['far', 'goodexcept', 'mic', 'touch', 'screen', 'not', 'easi', 'use', 'charg'], ['amaz', 'phone', 'easi', 'use', 'mani', 'good', 'use', 'featur'], ['great', 'phone', 'fast', 'servic'], ['great', 'phone', 'instal', 'custom', 'prefer', 'new', 'daili', 'driver', 'ditch', 'iphon'], ['awesom', 'purchas', 'love', 'nexus', 'not', 'like', 'headphon', 'jack', 'bottom', 'phone', 'instead', 'top', 'requir', 'alway', 'put', 'phone', 'pocket', 'upsid', 'small', 'complaint', 'easili', 'best', 'phone', 'market', 'price'], ['love', 'phone'], ['great', 'phone', 'great', 'price', 'one', 'month', 'complet', 'satisfi', 'verizon', 'activ', 'phone', 'littl', 'hassl', 'nice', 'project', 'fi', 'option'], ['replac', 'nexus', 'shatter', 'drop', 'stone', 'floor', 'happi', 'improv', 'batteri', 'life', 'bit', 'smoother', 'faster', 'oper', 'easi', 'fast', 'data', 'transfer', 'app', 'everyth', 'old', 'phone', 'almost', 'painless', 'ad', 'shield', 'screen', 'protector', 'ringk', 'clear', 'protector', 'late', 'smarter'], ['great', 'phone', 'screen', 'resili', 'get', 'regular', 'updat', 'bloatwar', 'nexus', 'phone', 'batteri', 'life', 'leav', 'lot', 'desir', 'frequent', 'use', 'phone', 'throughout', 'day', 'unless', 'charg', 'desk', 'would', 'alway', 'die', 'end', 'day', 'improv', 'would', 'review'], ['great', 'phone', 'price'], ['expect'], ['say', 'i', 'realli', 'happi', 'spent', 'littl', 'bit', 'usual', 'get', 'phone', 'potenti', 'buyer', 'note', 'phone', 'take', 'micro', 'sim', 'card', 'mine', 'regular', 'size', 'run', 'provid', 'buy', 'smaller', 'week', 'usag', 'phone', 'enter', 'dinosaur', 'mode', 'not', 'one', 'i', 'instal', 'app', 'still', 'run', 'like', 'champ', 'handl', 'pokemon', 'go', 'best', 'batteri', 'not', 'last', 'long', 'mayb', 'like', 'hour', 'actual', 'use', 'still', 'last', 'whole', 'day', 'not', 'whole', 'time', 'huge', 'amount', 'disk', 'space', 'awesom', 'fast', 'general', 'fast', 'enough', 'handl', 'lot', 'modern', 'touch', 'pad', 'back', 'work', 'great', 'love', 'use', 'open', 'phone', 'littl', 'nitpick', 'issu', 'not', 'seem', 'figur', 'make', 'keyboard', 'number', 'separ', 'top', 'row', 'key', 'without', 'make', 'ridicul', 'comput', 'keyboard', 'instead', 'even', 'less', 'button', 'need', 'serious', 'want', 'addit', 'row', 'qwerti', 'key', 'number', 'qwerti', 'key', 'key', 'long', 'press', 'specif', 'use', 'lot', 'punctuat', 'menu', 'period', 'key', 'not', 'user', 'friend', 'menu'], ['awesom', 'price', 'fantast', 'product'], ['great', 'phone'], ['item', 'receiv', 'promis', 'new', 'condit', 'i', 'pleas', 'purchas'], ['excel'], ['stock', 'android', 'fingerprint'], ['start', 'troubl', 'wifi', 'not', 'catch', 'signal', 'bought', 'april', 'work', 'twice', 'time', 'sever', 'trick', 'work', 'disconnect', 'router', 'tri', 'find', 'network', 'wifi', 'set', 'screen', 'phone', 'reboot', 'could', 'never', 'get', 'wifi', 'work', 'find', 'lot', 'peopl', 'wifi', 'issu', 'tri', 'trick', 'workaround', 'sever', 'factori', 'stock', 'imag', 'sever', 'releas', 'luck', 'not', 'think', 'softwar', 'issu', 'sever', 'imag', 'trick', 'tri', 'negat', 'result', 'know', 'sw', 'issu', 'acknowledg', 'googl', 'shame', 'nexus', 'googl', 'sponsor', 'phone', 'not', 'control', 'user', 'experi', 'appl', 'case', 'googl', 'control', 'sw', 'hw', 'like', 'disappoint', 'product', 'believ', 'lg', 'full', 'qualiti', 'control', 'not', 'think', 'problem', 'mine', 'review', 'titl', 'amazon', 'switch', 'pretti', 'quick', 'second', 'one', 'work', 'great', 'april', 'phone', 'similar', 'wifi', 'logist', 'reason', 'miss', 'return', 'polici', 'window', 'feel', 'like', 'good', 'phone', 'phone', 'without', 'wifi', 'deal', 'breaker'], ['love', 'googl', 'devic', 'especi', 'nexus', 'seriesthi', 'good'], ['not', 'top', 'phone', 'market', 'still', 'great', 'phone', 'problem', 'not', 'micro', 'sd', 'slot', 'come', 'max', 'solv', 'use', 'cloud', 'drive', 'one', 'speak', 'although', 'design', 'make', 'think', 'nothingh', 'not', 'solv', 'headphon'], ['basic', 'featur', 'phone', 'not', 'work'], ['problem', 'work', 'well', 'project', 'fi', 'googl', 'network', 'even', 'europ', 'without', 'issu', 'norway', 'sweden', 'summer', 'extra', 'charg', 'data', 'text', 'per', 'minut', 'phone', 'call', 'norway', 'europ'], ['good', 'phone', 'not', 'beat', 'price', 'went', 'htc', 'one', 'love'], ['i', 'phone', 'less', 'week', 'thought', 'replac', 'asus', 'zenfon', 'display', 'display', 'smaller', 'not', 'much', 'think', 'much', 'better', 'fit', 'peopl', 'mention', 'build', 'qualiti', 'think', 'feel', 'like', 'built', 'quit', 'well', 'i', 'not', 'come', 'high', 'end', 'product', 'comparison', 'might', 'not', 'mean', 'much', 'like', 'fingerprint', 'sensor', 'i', 'still', 'get', 'use', 'i', 'made', 'one', 'phone', 'call', 'far', 'sound', 'fine', 'complaint', 'button', 'placement', 'locat', 'side', 'find', 'i', 'put', 'phone', 'sleep', 'tend', 'turn', 'volum', 'first'], ['great', 'phone', 'great', 'price'], ['love', 'phone', 'issu', 'much', 'faster', 'previous', 'phone', 'like', 'chang', 'provid', 'use', 'phone', 'great', 'price'], ['recent', 'purchas', 'one', 'black', 'one', 'white', 'advis', 'select', 'case', 'phone', 'serious', 'lack', 'otterbox', 'not', 'even', 'make', 'one', 'ballist', 'best', 'case', 'get', 'phone', 'marshmallow', 'box', 'april', 'updat', 'current', 'fingerprint', 'reader', 'cool', 'phone', 'snappi', 'lag', 'spring', 'version', 'micro', 'sd', 'card', 'slot'], ['phone', 'awesom'], ['got', 'phone', 'discount', 'promot', 'deal', 'time', 'love', 'phone', 'i', 'alway', 'nexus', 'fan', 'never', 'disappoint', 'link', 'everyth', 'googl', 'even', 'lose', 'phone', 'not', 'lose', 'inform'], ['awesom', 'devic', 'quick', 'ship', 'origin', 'box', 'arriv', 'day', 'earlier', 'estim', 'happi', 'devic', 'dealer'], ['great', 'phone', 'everyth', 'ask'], ['excel', 'phone', 'seller', 'high', 'recommend', 'thank'], ['phone', 'european', 'model', 'european', 'power', 'suppli', 'charger', 'not', 'fit', 'us', 'power', 'outlet', 'lg', 'nexus', 'not', 'origin', 'us', 'version', 'lg', 'nexus', 'phone', 'not', 'support', 'us', 'cdma', 'band', 'transfer', 'mode', 'mean', 'phone', 'not', 'work', 'cdma', 'carrier', 'like', 'verizon', 'cdma', 'band'], ['process', 'power', 'not', 'gone', 'lot', 'origin', 'nexus', 'previous', 'phone', 'new', 'better', 'build', 'batteri', 'life', 'finger', 'print', 'secur', 'sound', 'useless', 'actual', 'nice', 'save', 'per', 'time', 'open', 'phone', 'row', 'app', 'main', 'screen', 'also', 'improv', 'silli', 'previous'], ['call', 'nexus', 'awesom', 'blaze', 'fast', 'love', 'not', 'bloat', 'crappi', 'carrier', 'app', 'old', 'phone', 'also', 'like', 'fact', 'carrier', 'radio', 'frequenc', 'take', 'att', 'sprint', 'verizon', 'anyon', 'els', 'servic', 'extrem', 'pleas'], ['awesom', 'phone', 'like', 'other', 'nexus', 'not', 'found', 'phone', 'awesom', 'last', 'month', 'fenc', 'get', 'one', 'read', 'everi', 'review', 'pro', 'con', 'full', 'week', 'glad', 'purchas', 'nexus', 'littl', 'larger', 'nexus', 'not', 'big', 'iffi', 'fingerprint', 'scanner', 'love', 'not', 'bothersom', 'mean', 'work', 'seamless', 'phone', 'good', 'follow', 'lg', 'origin', 'nexus', 'con', 'think', 'would', 'wish', 'kept', 'qi', 'wireless', 'charg', 'origin'], ['not', 'love', 'phone', 'know', 'buy', 'exact', 'get'], ['replac', 'nexus', 'shatter', 'drop', 'stone', 'floor', 'happi', 'improv', 'batteri', 'life', 'bit', 'smoother', 'faster', 'oper', 'easi', 'fast', 'data', 'transfer', 'app', 'everyth', 'old', 'phone', 'almost', 'painless', 'ad', 'shield', 'screen', 'protector', 'ringk', 'clear', 'protector', 'late', 'smarter'], ['love', 'phone', 'son', 'law', 'recommend', 'glad'], ['love', 'phone', 'much', 'bought', 'twice', 'also', 'purchas', 'nexus', 'nexus', 'user', 'friend', 'camera', 'qualiti', 'incred'], ['amaz', 'product', 'condit'], ['love', 'phone', 'replac', 'nexus'], ['replac', 'nexus', 'shatter', 'drop', 'stone', 'floor', 'happi', 'improv', 'batteri', 'life', 'bit', 'smoother', 'faster', 'oper', 'easi', 'fast', 'data', 'transfer', 'app', 'everyth', 'old', 'phone', 'almost', 'painless', 'ad', 'shield', 'screen', 'protector', 'ringk', 'clear', 'protector', 'late', 'smarter'], ['galaxi', 'need', 'retir', 'select', 'nexus', 'most', 'lower', 'cost', 'smaller', 'size', 'also', 'not', 'want', 'tether', 'manufactur', 'provid', 'unlock', 'pure', 'android', 'phone', 'phone', 'great', 'android', 'marshmallow', 'great', 'bloatwar', 'put', 'might', 'instal', 'thing', 'custom', 'like', 'fingerprint', 'reader', 'work', 'like', 'charm', 'occasion', 'mistak', 'camera', 'len', 'beef', 'phone', 'come', 'one', 'usb', 'c', 'usb', 'c', 'cabl', 'want', 'connect', 'phone', 'comput', 'either', 'need', 'adapt', 'compat', 'usb', 'cabl', 'also', 'use', 'newer'], ['price', 'avail', 'birthday', 'need'], ['everyth', 'good', 'phone', 'downsid', 'batteri', 'life', 'manag', 'go', 'whole', 'day'], ['love', 'fast', 'crash', 'far', 'good', 'batteri', 'perform', 'game', 'last', 'almost', 'two', 'day', 'not', 'heat', 'feel', 'comfort', 'hold', 'delay', 'fingerprint', 'reader'], ['one', 'major', 'drawback', 'charger', 'not', 'meet', 'spec', 'inform', 'read', 'reddit', 'thread', 'not', 'believ', 'lg', 'would', 'includ', 'charger', 'googl', 'would', 'allow', 'need', 'offer', 'replac', 'nexus', 'owner', 'whole', 'point', 'standard', 'everyth', 'interchang', 'not', 'worri', 'cabl', 'charger', 'use', 'devic', 'not', 'head', 'back', 'everi', 'cell', 'phone', 'manufactur', 'plug', 'otherwis', 'phone', 'pros', 'size', 'reason', 'littl', 'smaller', 'would', 'nice', 'weight', 'terrif', 'like', 'keep', 'feather', 'pocket', 'tri', 'week', 'big', 'heavi', 'love', 'everyth', 'els', 'unus', 'big', 'hand', 'wear', 'medium', 'latex', 'glove', 'fingerprint', 'reader', 'amaz', 'absolut', 'amaz', 'use', 'lastpass', 'password', 'manag', 'fantast', 'combin', 'not', 'type', 'password', 'sinc', 'first', 'load', 'lastpass', 'not', 'recommend', 'strong', 'enough', 'never', 'use', 'android', 'pay', 'old', 'phone', 'much', 'hassl', 'use', 'regular', 'bloat', 'past', 'phone', 'alway', 'come', 'skin', 'moto', 'samsung', 'great', 'not', 'root', 'get', 'rid', 'i', 'also', 'alway', 'bought', 'phone', 'verizon', 'past', 'i', 'also', 'gotten', 'junk', 'preinstal', 'espn', 'fast', 'updat', 'past', 'i', 'wait', 'first', 'devic', 'manufactur', 'verizon', 'releas', 'updat', 'i', 'get', 'latest', 'os', 'even', 'run', 'beta', 'nougat', 'rapid', 'charg', 'much', 'like', 'qc', 'phone', 'replac', 'rapid', 'charg', 'perform', 'advertis', 'rough', 'percent', 'minut', 'near', 'first', 'foremost', 'charger', 'ridicul', 'hope', 'lg', 'googl', 'get', 'togeth', 'one', 'batteri', 'life', 'mine', 'terribl', 'wors', 'near', 'droid', 'turbo', 'replac', 'peopl', 'get', 'sever', 'day', 'i', 'certain', 'not', 'one', 'i', 'heavi', 'user', 'lot', 'app', 'use', 'phone', 'paperweight', 'great', 'phone', 'lightweight', 'would', 'happili', 'trade', 'anoth', 'half', 'ounc', 'batteri', 'would', 'make', 'noon', 'memori', 'took', 'anoth', 'step', 'backward', 'gb', 'phone', 'gb', 'turbo', 'figur', 'would', 'fine', 'googl', 'knew', 'wrong', 'step', 'game', 'answer', 'text', 'come', 'back', 'game', 'reload', 'lose', 'buy', 'i', 'realli', 'not', 'sure', 'ideal', 'would', 'held', 'octob', 'see', 'new', 'nexus', 'lineup', 'got', 'tast', 'fingerprint', 'reader', 'go', 'back'], ['came', 'microsoft', 'phone', 'transit', 'bit', 'confus', 'lg', 'nexus', 'far', 'better', 'phone', 'imagin', 'far', 'love'], ['great', 'phone', 'look', 'solid', 'phone', 'without', 'clutter', 'bloat', 'offer', 'big', 'three', 'carrier', 'unlock', 'nexus', 'brand', 'look', 'rock', 'solid', 'marshmallow', 'oper', 'system', 'updat', 'direct', 'googl', 'solid', 'batteri', 'perform', 'great', 'feel', 'hand', 'also', 'nice', 'major', 'design', 'corner', 'googl', 'nexus', 'major', 'accessori', 'manufactur', 'will', 'make', 'suppli', 'brand', 'like', 'find', 'case', 'screen', 'protector', 'hip', 'holster', 'accessori', 'make', 'experi', 'nexus', 'line', 'enjoy'], ['come', 'nexus', 'nexus', 'felt', 'compar', 'perform', 'almost', 'everyth', 'would', 'give', 'slight', 'edg', 'nexus', 'term', 'screen', 'littl', 'bit', 'larger', 'like', 'sinc', 'screen', 'devic', 'still', 'felt', 'not', 'larg', 'right', 'size', 'lack', 'qi', 'wireless', 'charg', 'big', 'blow', 'love', 'wireless', 'charg', 'not', 'insert', 'cabl', 'place', 'devic', 'charg', 'pad', 'import', 'usb', 'c', 'rapid', 'charg', 'nexus', 'nice', 'charg', 'inde', 'much', 'faster', 'much', 'allevi', 'disappoint', 'not', 'wireless', 'charg', 'still', 'miss', 'charg', 'give', 'edg', 'wireless', 'charg', 'nexus', 'fingerprint', 'sensor', 'good', 'usual', 'not', 'pin', 'password', 'unlock', 'cellular', 'worri', 'phone', 'get', 'lost', 'open', 'anyon', 'dislik', 'type', 'everi', 'time', 'want', 'look', 'phone', 'not', 'use', 'pin', 'password', 'aspect', 'fingerprint', 'sensor', 'work', 'well', 'unlock', 'phone', 'fast', 'great', 'improv', 'nexus', 'nexus', 'got', 'android', 'updat', 'nexus', 'not', 'get', 'understand', 'overal', 'nexus', 'win', 'opinion', 'nexus'], ['great', 'price', 'great', 'phone', 'quick', 'ship', 'never', 'could', 'tell', 'not', 'new', 'phone', 'work', 'flawless', 'not', 'scratch', 'opt', 'ship', 'amazon', 'locker', 'sinc', 'work', 'not', 'want', 'left', 'porch', 'conveni', 'quick', 'secur', 'thing', 'would', 'like', 'notif', 'shipment', 'arriv', 'locker', 'also', 'would', 'nice', 'locker', 'locat', 'would', 'shorter', 'drive', 'sure', 'happen', 'peopl', 'use', 'servic', 'not', 'even', 'awar', 'might', 'want', 'advertis', 'amazon', 'locker', 'make', 'line', 'complet', 'happi', 'phone'], ['wonder', 'camera', 'love', 'fact', 'come', 'vanilla', 'android', 'launcher', 'custom', 'manufactur', 'thing', 'think', 'could', 'better', 'ram', 'phone', 'run', 'fine', 'app', 'open', 'suspend', 'one', 'not', 'use', 'given', 'opportun', 'would', 'probabl', 'find', 'anoth', 'phone'], ['must', 'say', 'seller', 'product', 'phone', 'power', 'devic', 'processor', 'ram', 'perfect', 'size', 'realli', 'comfort', 'littl', 'thing', 'one', 'us', 'model', 'nice', 'recept', 'outsid', 'countri', 'better', 'get', 'intern', 'model', 'better', 'global', 'seller', 'quick', 'respons', 'packag', 'deliv', 'perfect'], ['nice', 'phone', 'got', 'amazon', 'warehous', 'use', 'one', 'almost', 'noth', 'wrong', 'cosmet', 'except', 'place', 'case', 'cover', 'big', 'deal', 'root', 'flash', 'rom', 'smooth', 'came', 'note', 'better', 'spec', 'way', 'smoother', 'fingerprint', 'amaz', 'fast', 'accur'], ['batteri', 'life', 'poor', 'flagship', 'phone', 'full', 'charg', 'drop', 'hour', 'desk', 'close', 'proxim', 'wifi', 'full', 'coverag', 'intermitt', 'text', 'googl', 'authent', 'usag', 'without', 'run', 'comput', 'expens', 'background', 'app', 'embarrass', 'lg', 'googl', 'industri'], ['phone', 'brick'], ['great', 'phone', 'get', 'also', 'switch', 'high', 'end', 'phone', 'qhd', 'display', 'amol', 'display', 'feel', 'cheap', 'want', 'mani', 'featur', 'possibl', 'budget', 'good', 'choic'], ['awesom', 'phone', 'great', 'camera', 'fingerprint', 'reader', 'work', 'fast', 'deliv', 'time'], ['great', 'phone'], ['nexus', 'nexus', 'certain', 'slight', 'better', 'screen', 'speaker', 'ram', 'also', 'way', 'heavier', 'feel', 'big', 'pocket', 'want', 'go', 'back', 'smaller', 'phone', 'still', 'stock', 'android', 'read', 'tech', 'site', 'experienc', 'occasion', 'lag', 'honest', 'say', 'not', 'experienc', 'may', 'pretti', 'use', 'basic', 'stock', 'android', 'app', 'phone', 'super', 'fast', 'best', 'finger', 'sensor', 'back', 'easili', 'best', 'i', 'ever', 'use', 'iphon', 'seem', 'unlock', 'much', 'faster', 'iphon', 'first', 'pretti', 'button', 'get', 'screen', 'come', 'hold', 'finger', 'sensor', 'back', 'sensor', 'simpl', 'put', 'whichev', 'finger', 'regist', 'regist', 'multipl', 'finger', 'way', 'screen', 'unlock', 'right', 'away', 'get', 'use', 'not', 'want', 'go', 'eleph', 'room', 'usb', 'c', 'connector', 'i', 'seen', 'peopl', 'say', 'ploy', 'get', 'peopl', 'get', 'new', 'cabl', 'simpli', 'not', 'true', 'usb', 'c', 'next', 'evolut', 'usb', 'technolog', 'rapid', 'charg', 'not', 'confus', 'quick', 'charg', 'certain', 'android', 'phone', 'usb', 'c', 'handl', 'amp', 'time', 'phone', 'charg', 'faster', 'normal', 'without', 'heat', 'like', 'quick', 'charg', 'exampl', 'nexus', 'cours', 'fact', 'dual', 'side', 'not', 'put', 'wrong', 'way', 'know', 'sound', 'silli', 'even', 'stupid', 'one', 'tini', 'thing', 'awhil', 'not', 'want', 'go', 'back', 'seem', 'phone', 'nutshel', 'full', 'small', 'tini', 'improv', 'make', 'great', 'packag', 'not', 'want', 'go', 'back', 'whatev'], ['work', 'week', 'got', 'messag', 'say', 'devic', 'corrupt', 'not', 'trust', 'may', 'not', 'work', 'proper', 'googl', 'ask', 'restor', 'say', 'os', 'not', 'trust', 'never', 'updat', 'piec', 'want', 'call', 'lglg', 'want', 'send', 'come', 'data', 'cabl', 'buy', 'separ', 'not', 'plug', 'comput', 'buy', 'cabl'], ['great', 'devic', 'not', 'kind', 'person', 'buy', 'thing', 'everyon', 'own', 'one', 'not', 'know', 'anyon', 'own', 'phone', 'think', 'great', 'not', 'complain'], ['great', 'phone', 'would', 'suggest', 'one', 'els'], ['great', 'phone', 'awesom', 'best', 'way', 'describ', 'phone'], ['solid', 'around', 'phone', 'price'], ['great', 'recept', 'great', 'batteri', 'life', 'complaint'], ['decid', 'call', 'quit', 'lumia', 'phone', 'pull', 'plug', 'skype', 'support', 'window', 'not', 'like', 'appl', 'android', 'first', 'choic', 'want', 'avoid', 'samsung', 'nexus', 'mistak', 'mic', 'not', 'work', 'upgrad', 'android', 'work', 'sporad', 'best', 'often', 'reboot', 'phone', 'make', 'work', 'pathet'], ['dead', 'day', 'use', 'return'], ['ugh', 'thing', 'overheat', 'i', 'not', 'sure', 'mine', 'would', 'get', 'hot', 'ordinari', 'use', 'could', 'not', 'hold', 'hand', 'even', 'wors', 'use', 'charg', 'would', 'get', 'hot', 'would', 'shut', 'return', 'bought', 'galaxi', 'would', 'like', 'stay', 'project', 'fi', 'bad', 'allow', 'use', 'servic', 'nexus'], ['actual', 'first', 'android', 'phone', 'bought', 'second', 'phone', 'busi', 'well', 'hobbi', 'phone', 'explor', 'android', 'os', 'screen', 'brilliant', 'color', 'love', 'haptic', 'feedback', 'sinc', 'googl', 'brand', 'phone', 'although', 'made', 'lg', 'sure', 'get', 'latest', 'os', 'updat', 'direct', 'googl', 'even', 'abl', 'opt', 'beta', 'program', 'test', 'android', 'regret', 'not', 'check', 'googl', 'project', 'fi', 'get', 'bigger', 'discount', 'phone', 'activ', 'googl', 'wireless', 'plan', 'howev', 'price', 'paid', 'phone', 'amazon', 'believ', 'got', 'great', 'deal', 'mani', 'good', 'phone', 'nowaday', 'get'], ['phone', 'work', 'advertis', 'much', 'easier', 'handl', 'nexus', 'someon', 'smaller', 'hand', 'like', 'mine', 'love'], ['i', 'write', 'review', 'nexus', 'come', 'nexus', 'love', 'stock', 'android', 'perform', 'updat', 'polici', 'design', 'googl', 'lg', 'partnership', 'simpli', 'awesom', 'nexus', 'not', 'disappoin', 'make', 'love', 'nexus', 'even', 'special', 'camera', 'whole', 'new', 'level', 'awesom', 'combin', 'camera', 'proshot', 'snapspe', 'got', 'breathtak', 'pictur', 'impress', 'friend', 'famili', 'fingerprint', 'sensoer', 'fast', 'recogn', 'finger', 'smooth', 'like', 'rememb', 'former', 'nexus', 'larger', 'batteri', 'fast', 'charg', 'simpli', 'perfect', 'i', 'love'], ['nice'], ['lg', 'nexus', 'unlock', 'smartphon', 'mint', 'warranti', 'product', 'arriv', 'perfect', 'love', 'wish', 'longer', 'batteri', 'life', 'ok'], ['receiv', 'function', 'well', 'wife', 'realli', 'like'], ['wonder', 'qualiti', 'price'], ['upgrad', 'nexus', 'sinc', 'launch', 'love', 'year', 'littl', 'bigger', 'move', 'volum', 'button', 'side', 'power', 'button', 'reason', 'not', 'hard', 'adjust', 'awkward', 'tri', 'take', 'screenshot', 'screen', 'clear', 'vivid', 'camera', 'huge', 'improv', 'even', 'fingerprint', 'sensor', 'back', 'perfect', 'place', 'work', 'quick', 'accur', 'batteri', 'life', 'final', 'fix', 'glare', 'problem', 'previous', 'android', 'last', 'day', 'work', 'travel', 'long', 'i', 'not', 'use', 'app', 'use', 'phone', 'support', 'rapid', 'charg', 'get', 'back', 'full', 'charg', 'time', 'hassl', 'i', 'phone', 'buy', 'bunch', 'new', 'charg', 'cord', 'sinc', 'support', 'worth', 'quick', 'charg'], [], ['geat', 'phone'], ['not', 'understand', 'defect', 'turn', 'look', 'web', 'common', 'problem', 'model', 'i', 'tri', 'reset', 'factori', 'default', 'everyth', 'els', 'fine', 'googl', 'need', 'address', 'avoid', 'lot', 'return'], ['use', 'nexus', 'day', 'phone', 'decid', 'stop', 'charg', 'plug', 'phone', 'would', 'say', 'rapid', 'charg', 'percentag', 'kept', 'go', 'way', 'charg', 'phone', 'turn', 'decid', 'buy', 'googl', 'fast', 'charger', 'see', 'defect', 'charger', 'result', 'quick', 'return', 'phone', 'asham', 'got', 'defect', 'phone', 'i', 'huge', 'fan', 'nexus', 'phone', 'mani', 'year', 'sinc', 'nexus', 'one'], ['mom', 'love', 'especi', 'finger', 'print', 'reader', 'better', 'camera'], ['want'], ['bought', 'took', 'gym', 'fingerprint', 'scanner', 'stop', 'function', 'sent', 'back', 'lg', 'ship', 'paid', 'lg', 'via', 'fex', 'ground', 'repair', 'got', 'devic', 'back', 'two', 'half', 'week', 'later', 'fingerprint', 'scanner', 'stop', 'function', 'exact', 'one', 'day', 'got', 'activ', 'lg', 'want', 'send', 'back', 'repair', 'upgrad', 'overnight', 'ship', 'replac', 'clear', 'faulti', 'product'], ['love', 'phone', 'best', 'phone', 'date', 'drop', 'fine', 'littl', 'chip', 'corner'], ['great', 'qualiti'], ['month', 'old', 'goe', 'endless', 'boot', 'loop', 'say', 'longer', 'warranti', 'sound', 'like', 'problem', 'phone', 'overal'], ['extrem', 'happi', 'phone', 'time', 'power', 'user', 'term', 'android', 'phone', 'often', 'root', 'phone', 'whatev', 'els', 'patienc', 'say', 'box', 'phone', 'tri', 'patienc', 'purchas', 'phone', 'februari', 'first', 'coupl', 'week', 'work', 'alright', 'get', 'good', 'strong', 'batteri', 'life', 'thing', 'fine', 'asid', 'chrome', 'browser', 'seem', 'constant', 'drain', 'batteri', 'troubl', 'constant', 'freez', 'glitch', 'not', 'normal', 'android', 'bug', 'either', 'problem', 'like', 'tap', 'not', 'regist', 'notif', 'panel', 'freez', 'lock', 'point', 'option', 'restart', 'phone', 'pretti', 'unaccept', 'everyday', 'user', 'work', 'cell', 'phone', 'compani', 'peopl', 'would', 'complain', 'ask', 'troubleshoot', 'reason', 'recent', 'march', 'updat', 'seem', 'like', 'chang', 'better', 'not', 'time', 'forc', 'restart', 'sinc', 'love', 'phone', 'not', 'critic', 'complaint', 'reason', 'could', 'not', 'give', 'edg', 'nexus', 'size', 'pocket', 'zippi', 'want', 'freez', 'select', 'bought', 'instead', 'googl', 'lost', 'price', 'drop'], ['not', 'much', 'troubl', 'phone', 'far', 'ram', 'may', 'problem', 'tri', 'multitask', 'camera', 'qualiti', 'nice', 'phone', 'price', 'not', 'mind', 'phablet', 'chuck', 'extra', 'buck', 'i', 'would', 'recommend'], ['phone', 'advertis', 'usa', 'model', 'deliv', 'intern', 'model', 'return'], ['great', 'phone', 'great', 'design', 'best', 'android', 'right', 'palm'], ['phone', 'perfect', 'complaint', 'project', 'fi', 'servic', 'also', 'fantast', 'love', 'save', 'money', 'top', 'notch', 'phone', 'would', 'recommend'], ['phone', 'great', 'price', 'complaint', 'minor', 'fact', 'use', 'type', 'c', 'usb', 'make', 'hard', 'find', 'charger', 'lose', 'one', 'come', 'unless', 'will', 'wait', 'ship', 'order', 'onlin'], ['great', 'work', 'expect', 'fast', 'deliveri'], ['minor', 'issu', 'use', 'product', 'finger', 'print', 'sensor', 'not', 'work', 'unless', 'set', 'phone', 'factori'], ['great', 'phone', 'without', 'bloatwar', 'plenti', 'review', 'video', 'not', 'bore', 'daughter', 'need', 'perfect', 'gift', 'quit', 'happi'], ['far', 'good', 'great', 'batteri', 'time', 'nice', 'qualiti', 'pic', 'see', 'time'], ['awesom', 'word', 'not', 'describ', 'beauti', 'phone', 'well', 'made', 'look', 'eleg', 'premium', 'despit', 'plastic', 'packag', 'realli', 'good', 'camera', 'i', 'read', 'review', 'suggest', 'camera', 'compar', 'favor', 'iphon', 'camera', 'case', 'even', 'better', 'i', 'taken', 'mani', 'photo', 'capabl', 'shooter', 'not', 'good', 'dslr', 'sure', 'good', 'substitut', 'pinch', 'screen', 'bright', 'vivid', 'right', 'size', 'glad', 'still', 'phone', 'era', 'enorm', 'smartphon', 'still', 'much', 'bigger', 'consid', 'like', 'far', 'manag', 'nexus', 'phone', 'boot', 'mean', 'modifi', 'os', 'heart', 'content', 'without', 'much', 'hassl', 'final', 'got', 'nexus', 'bandwagon', 'happi', 'done', 'overal', 'amaz', 'phone'], ['phone', 'continu', 'satisfi', 'button', 'access', 'one', 'thumb', 'make', 'one', 'hand', 'oper', 'breez', 'also', 'due', 'fact', 'not', 'giant', 'phone', 'fingerprint', 'reader', 'back', 'super', 'fast', 'android', 'experi', 'super', 'quick', 'snappi', 'thank', 'minimalist', 'design', 'camera', 'back', 'great', 'complaint', 'batteri', 'life', 'usb', 'downsid', 'not', 'common', 'yet', 'two', 'thing', 'set', 'asid', 'though', 'charg', 'fast', 'usb', 'charger', 'cabl', 'lightn', 'fast', 'topic', 'batteri', 'life', 'i', 'real', 'power', 'user', 'stream', 'youtub', 'video', 'almost', 'day', 'tax', 'batteri', 'life', 'usual', 'charg', 'half', 'time', 'day', 'decent', 'would', 'much', 'recommend', 'phone', 'someon', 'look', 'fast', 'enjoy', 'android', 'experi', 'not', 'want', 'spend', 'much', 'money', 'samsung'], ['great', 'phone', 'work', 'well', 'great', 'price'], ['perfect'], ['love'], ['got', 'mother', 'nice', 'small', 'inexpens', 'smartphon', 'great', 'knew', 'expect', 'nexus', 'phone', 'cheap', 'surpass', 'expect', 'love', 'well'], ['awesom', 'phone', 'great', 'camera', 'fingerprint', 'reader', 'work', 'fast', 'deliv', 'time'], ['good', 'speed'], ['good', 'one'], ['nexus', 'got', 'boot', 'failur', 'problem', 'half', 'year', 'pass', 'found', 'repair', 'servic', 'took', 'almost', 'month', 'get', 'nexus', 'back', 'not', 'mean', 'repair', 'repair', 'boot', 'failur', 'problem', 'fix', 'speaker', 'complet', 'broken', 'repair', 'came', 'back', 'without', 'sim', 'realli', 'want', 'buy', 'nexus', 'not', 'want', 'spend', 'almost', 'month', 'without', 'phone', 'recommend', 'buy', 'nexus', 'protect', 'option', 'googl', 'store', 'would', 'provid', 'immedi', 'replac'], ['purchas', 'devic', 'may', 'four', 'month', 'not', 'charg', 'notic', 'charg', 'issu', 'got', 'devic', 'time', 'work', 'fine', 'close', 'screen', 'suggest', 'review', 'even', 'power', 'phone', 'screen', 'show', 'charg', 'actual', 'not', 'case', 'open', 'phone', 'close', 'screen', 'charg', 'batteri', 'keep', 'drop', 'open', 'screen', 'charg', 'batteri', 'ran', 'purchas', 'devic', 'love', 'googl', 'softwar', 'trueli', 'smart', 'phone', 'terribl', 'hardwar', 'mess', 'hope', 'new', 'pixel', 'would', 'offer', 'better', 'solut', 'need', 'purchas', 'anoth', 'phone', 'may', 'anoth', 'appl', 'last', 'work', 'year', 'still', 'offer', 'better', 'batteri', 'one', 'throw', 'away', 'may'], ['huge', 'fan', 'phone', 'fast', 'camera', 'impecc', 'sleek', 'not', 'beat', 'price', 'qualiti', 'phone', 'like', 'even', 'galaxi', 'got', 'rid', 'think', 'par', 'level', 'phone', 'also', 'love', 'sinc', 'not', 'tie', 'carrier', 'not', 'put', 'million', 'app', 'never', 'use', 'come', 'basic', 'googl', 'app', 'probabl', 'use', 'anyway', 'not', 'enough', 'bs', 'app', 'slow', 'phone', 'like', 'carrier', 'load', 'phone'], ['love', 'nexus', 'doze', 'function', 'help', 'prolong', 'batteri', 'also', 'pictur', 'automat', 'get', 'save', 'googl', 'onlin', 'includ', 'googl', 'review', 'old', 'smartphon', 'overh', 'die', 'vacat', 'thank', 'good', 'googl', 'automat', 'save', 'pictur', 'els', 'vacat', 'memori', 'gone', 'get', 'nexus', 'use', 'latest', 'marshmallow', 'os', 'great', 'price', 'various', 'function'], ['first', 'phone', 'glitchi', 'slow', 'also', 'stop', 'receiv', 'text', 'almost', 'week', 'amazon', 'great', 'replac', 'phone', 'work', 'hard', 'use', 'anyth', 'els', 'experienc', 'butteri', 'smooth', 'pure', 'android', 'not', 'top', 'line', 'mean', 'fast', 'enough', 'batteri', 'last', 'day', 'hour', 'screen', 'time', 'complaint', 'would', 'lack', 'model', 'microsd', 'card', 'slot'], ['work', 'advertis'], ['love', 'phone', 'not', 'think', 'negat', 'yet', 'love', 'not', 'come', 'carrier', 'garbag', 'app', 'not', 'get', 'rid', 'readi', 'go', 'pretti', 'much', 'box'], ['realli', 'good', 'phone'], ['recent', 'purchas', 'iphon', 'plus', 'iphon', 'near', 'year', 'not', 'like', 'io', 'anymor', 'i', 'use', 'iphon', 'sinc', 'iphon', 'day', 'io', 'not', 'realli', 'feel', 'like', 'chang', 'tri', 'android', 'sever', 'time', 'year', 'decid', 'go', 'time', 'purchas', 'nexus', 'like', 'smaller', 'footprint', 'like', 'came', 'straight', 'googl', 'phone', 'fantast', 'upgrad', 'far', 'os', 'snappi', 'devic', 'well', 'built', 'feel', 'great', 'hand', 'quit', 'light', 'great', 'fact', 'revers', 'best', 'part', 'would', 'use', 'android', 'use', 'iphon', 'biggest', 'thing', 'miss', 'revers', 'lightn', 'connector', 'screen', 'look', 'great', 'well', 'vibrant', 'bright', 'touch', 'screen', 'respons', 'also', 'precis', 'nexus', 'imprint', 'sensor', 'crazi', 'fast', 'thought', 'touch', 'id', 'sensor', 'plus', 'fast', 'even', 'faster', 'bare', 'set', 'finger', 'sensor', 'phone', 'unlock', 'whole', 'phone', 'bring', 'one', 'best', 'experi', 'avail', 'cell', 'phone', 'market', 'low', 'cost', 'problem', 'recommend', 'devic', 'anyon', 'market', 'new', 'phone'], ['ok', 'mayb', 'soon', 'review', 'sinc', 'use', 'month', 'far', 'expect'], ['great', 'compani', 'great', 'product'], ['love'], ['realli', 'like', 'phone', 'replac', 'samsung', 'galaxi', 'expect', 'lot', 'faster', 'crapwar', 'samsung', 'put', 'strang', 'app', 'junk', 'realli', 'got', 'way', 'exampl', 'plug', 'usb', 'cabl', 'comput', 'see', 'file', 'need', 'strang', 'kie', 'applic'], ['good', 'product'], ['good', 'phone', 'better', 'deal', 'avail', 'googl', 'project', 'fi'], ['dead', 'box', 'useless', 'return'], ['month', 'use', 'proud', 'owner', 'brick', 'cours', 'wonder', 'indian', 'tech', 'support', 'poor', 'english', 'zero', 'help', 'mail', 'devic', 'contain', 'everi', 'piec', 'data', 'includ', 'biometr', 'data', 'god', 'know', 'whatev', 'countri', 'repair', 'phone', 'brick', 'certain', 'return', 'remanfactur', 'phone', 'anyway', 'yay', 'modern', 'technolog'], ['good', 'mobil', 'good', 'price'], ['phone', 'seem', 'great', 'issu', 'advertis', 'work', 'us', 'carrier', 'includ', 'verizon', 'not', 'case', 'model', 'receiv', 'sent', 'global', 'model', 'work', 'send', 'back', 'coupl', 'day', 'nexus', 'tell', 'like', 'phone', 'lose', 'bloatwar', 'verizon', 'app', 'pretti', 'awesom', 'phone', 'littl', 'longer', 'i', 'would', 'like', 'hard', 'find', 'phone', 'smaller'], ['awesom', 'devic', 'fast', 'deliveri'], ['awesom', 'purchas', 'love', 'nexus', 'not', 'like', 'headphon', 'jack', 'bottom', 'phone', 'instead', 'top', 'requir', 'alway', 'put', 'phone', 'pocket', 'upsid', 'small', 'complaint', 'easili', 'best', 'phone', 'market', 'price'], ['bought', 'phone', 'use', 'arriv', 'day', 'practic', 'new', 'not', 'origin', 'packag', 'also', 'came', 'perfect', 'place', 'screen', 'protector', 'charger', 'charg', 'use', 'work', 'great', 'far', 'gave', 'star', 'never', 'look', 'star', 'rewiew', 'want', 'peopl', 'know', 'got', 'genuin', 'good', 'product'], ['good', 'phone', 'satisfi', 'good', 'batteri', 'life', 'fast', 'charg', 'excel', 'display', 'good', 'color', 'brigh', 'sharp', 'good', 'perform', 'clean', 'beauti', 'softwar', 'incred', 'good', 'camera', 'especi', 'low', 'light', 'condit', 'also', 'fast', 'accur', 'fingerprint', 'scanner', 'bad', 'stuff', 'found', 'phone', 'speaker', 'not', 'terribl', 'could', 'better'], ['phone', 'arriv', 'day', 'purchas', 'great', 'not', 'issu', 'far', 'wonder', 'complaint'], ['great', 'phone', 'great', 'deal', 'work', 'great'], ['definit', 'anoth', 'great', 'product', 'googl', 'camera', 'pictur', 'amaz'], ['came', 'prompt', 'issu', 'date', 'activ', 'sprint'], ['absolut', 'love', 'phone', 'worth', 'money', 'spent'], ['nexus', 'fulfil', 'expect', 'bloatwar', 'period', 'updat', 'googl', 'charger', 'fast', 'use', 'revers', 'nice', 'smartphon', 'price'], ['phone', 'realli', 'camera', 'work', 'well', 'perform', 'also', 'good', 'reason', 'give', 'star', 'review', 'batteri', 'life', 'batteri', 'life', 'suck', 'big', 'time', 'doesnot', 'last', 'even', 'day', 'drain', 'quick', 'moder', 'use', 'use', 'drain', 'hour', 'devic', 'awak', 'state', 'alway', 'read', 'review', 'tri', 'fix', 'suggest', 'provid', 'not', 'help', 'much'], ['super', 'dope'], ['moment', 'receiv', 'gb', 'paid', 'gb', 'car'], ['great', 'phone', 'cheap', 'get', 'job', 'done', 'purest', 'form', 'android'], ['love', 'miss', 'item', 'box'], ['everi', 'part', 'phone', 'well', 'design', 'function', 'bleed', 'edg', 'featur', 'stabl', 'would', 'buy', 'exact', 'promis', 'perfect', 'condit', 'well', 'pack'], ['say', 'i', 'realli', 'happi', 'spent', 'littl', 'bit', 'usual', 'get', 'phone', 'potenti', 'buyer', 'note', 'phone', 'take', 'micro', 'sim', 'card', 'mine', 'regular', 'size', 'run', 'provid', 'buy', 'smaller', 'week', 'usag', 'phone', 'enter', 'dinosaur', 'mode', 'not', 'one', 'i', 'instal', 'app', 'still', 'run', 'like', 'champ', 'handl', 'pokemon', 'go', 'best', 'batteri', 'not', 'last', 'long', 'mayb', 'like', 'hour', 'actual', 'use', 'still', 'last', 'whole', 'day', 'not', 'whole', 'time', 'huge', 'amount', 'disk', 'space', 'awesom', 'fast', 'general', 'fast', 'enough', 'handl', 'lot', 'modern', 'touch', 'pad', 'back', 'work', 'great', 'love', 'use', 'open', 'phone', 'littl', 'nitpick', 'issu', 'not', 'seem', 'figur', 'make', 'keyboard', 'number', 'separ', 'top', 'row', 'key', 'without', 'make', 'ridicul', 'comput', 'keyboard', 'instead', 'even', 'less', 'button', 'need', 'serious', 'want', 'addit', 'row', 'qwerti', 'key', 'number', 'qwerti', 'key', 'key', 'long', 'press', 'specif', 'use', 'lot', 'punctuat', 'menu', 'period', 'key', 'not', 'user', 'friend', 'menu'], ['replac', 'nexus', 'shatter', 'drop', 'stone', 'floor', 'happi', 'improv', 'batteri', 'life', 'bit', 'smoother', 'faster', 'oper', 'easi', 'fast', 'data', 'transfer', 'app', 'everyth', 'old', 'phone', 'almost', 'painless', 'ad', 'shield', 'screen', 'protector', 'ringk', 'clear', 'protector', 'late', 'smarter'], ['love', 'love', 'love', 'phone', 'grant', 'bit', 'technolog', 'starv', 'come', 'samsung', 'galaxi', 'want', 'unlock', 'phone', 'sick', 'bloatwar', 'subsid', 'phone', 'also', 'wonder', 'get', 'android', 'updat', 'direct', 'without', 'wait', 'verizon', 'contempl', 'base', 'read', 'superior', 'phone', 'howev', 'play', 'friend', 'gorgeous', 'devic', 'decid', 'would', 'unwieldi', 'alreadi', 'step', 'size', 'think', 'made', 'right', 'choic', 'i', 'clumsi', 'tend', 'read', 'lie', 'side', 'bed', 'pure', 'andorid', 'take', 'bit', 'get', 'use', 'much', 'customiz', 'love'], ['past', 'two', 'year', 'i', 'gone', 'htc', 'one', 'two', 'soni', 'xperia', 'samsung', 'galaxi', 'htc', 'got', 'wet', 'die', 'one', 'soni', 'fell', 'bike', 'got', 'wet', 'die', 'even', 'though', 'waterproof', 'samsung', 'got', 'heav', 'wall', 'got', 'sick', 'aw', 'bloatwar', 'ui', 'could', 'not', 'take', 'anymorei', 'previous', 'use', 'nexus', 'still', 'function', 'today', 'albeit', 'without', 'realli', 'like', 'phone', 'pure', 'android', 'experi', 'pleasur', 'know', 'i', 'get', 'n', 'soon', 'great', 'screen', 'perfect', 'fine', 'i', 'get', 'hour', 'plus', 'batteri', 'speed', 'also', 'good', 'enough', 'use', 'phone', 'primarili', 'busi', 'web', 'surf', 'much', 'faster', 'galaxi', 'drawback', 'lack', 'remov', 'storag', 'front', 'speaker', 'kind', 'puni', 'paid', 'i', 'not', 'complain', 'love', 'not', 'pay', 'jump', 'insur', 'mobil', 'rip', 'alreadi', 'comcast', 'peopl', 'say', 'feel', 'cheap', 'plastic', 'think', 'littl', 'picayunish', 'like', 'lightweight', 'see', 'hold', 'point', 'i', 'happi', 'also', 'purchas', 'supcas', 'fit', 'like', 'glove'], ['love', 'nexus'], ['seller', 'help', 'knowledg', 'phone', 'work', 'great'], ['realli', 'like', 'phone', 'huge', 'step', 'last', 'one', 'not', 'come', 'galleri', 'app', 'file', 'manag', 'download', 'one', 'easili', 'googl', 'play', 'camera', 'littl', 'slow', 'otherwis', 'great', 'phone', 'definit', 'recommend'], ['bought', 'phone', 'expect', 'use', 'connect', 'brows', 'travel', 'replac', 'gps', 'phone', 'get', 'stuck', 'time', 'not', 'mention', 'slow', 'well', 'use', 'phone', 'make', 'call', 'not', 'even', 'job', 'well', 'signal', 'drop', 'time', 'lose', 'signal', 'connect', 'insid', 'build', 'come', 'take', 'min', 'catch', 'connect', 'use', 'old', 'soni', 'ericsson', 'not', 'problem', 'want', 'buy', 'smart', 'phone', 'spend', 'buy', 'decent', 'smart', 'phone', 'otherwis', 'spend', 'like', 'buy', 'cheap', 'regular', 'phone'], ['perfect', 'one', 'met', 'need', 'last'], ['excelent'], ['great'], ['buen', 'producto'], ['exelent'], ['excelent'], ['buena', 'imagen', 'nitidez', 'elegancia', 'al', 'maximo'], ['espectacular'], ['perfect'], ['ok', 'broke', 'mine', 'four', 'month', 'i', 'phone'], ['exelent', 'compra'], ['good', 'excel', 'purchas', 'make', 'team', 'perfect', 'condit', 'good', 'perform', 'box', 'detail', 'shot'], ['es', 'lo', 'que', 'se', 'pidio', 'se', 'cumplio', 'con', 'la', 'producto', 'solicitadoenvia', 'con', 'las', 'espextativasi', 'especificacion'], ['great', 'price', 'bought', 'ecuador', 'work', 'perfect'], ['buen', 'telefono'], ['not', 'work', 'cell', 'phone'], ['better', 'descript', 'i', 'realli', 'glad'], ['phone', 'easi', 'activ', 'sim', 'card'], ['great', 'like'], ['not', 'good', 'phone', 'buy', 'get', 'realli', 'hot', 'batteri', 'life', 'half', 'day', 'charg'], ['great', 'phone', 'work', 'even', 'venezuela', 'movilnet', 'movilnet', 'although', 'may', 'not', 'believ', 'phone', 'fast', 'comfort', 'eleg', 'excel', 'resolut', 'screen', 'recommend'], ['excel', 'thank'], ['work', 'ecuador', 'best', 'question', 'delet', 'att', 'applicant', 'not', 'use', 'regard'], ['resist', 'confort', 'fast', 'processor', 'great', 'far', 'favourit', 'phone', 'far'], ['item', 'not', 'meet', 'need', 'item', 'defect', 'said', 'supos', 'work', 'fine', 'hard', 'comun', 'would', 'not', 'buy'], ['phone', 'articl', 'buy', 'say', 'good', 'compar', 'price', 'work', 'perfect', 'relat', 'seller', 'excel', 'servic', 'provid', 'cell', 'get', 'sooner', 'envisag', 'truth', 'good', 'could', 'give', 'star', 'daria', 'problem', 'love', 'busi', 'respons', 'person', 'not', 'play', 'time', 'other', 'thank', 'success'], ['great', 'phone', 'good', 'condit', 'time', 'love', 'thank'], ['like'], ['send', 'cellphon', 'network', 'lock', 'purshas', 'unlock', 'cell', 'phone', 'item', 'travel', 'venezuela', 'not', 'use', 'thank', 'lot', 'pay', 'attent', 'often', 'order'], ['not', 'kind', 'guy', 'usual', 'write', 'review', 'product', 'felt', 'bad', 'read', 'review', 'buy', 'product', 'decid', 'write', 'review', 'phone', 'bought', 'phone', 'around', 'plan', 'buy', 'moto', 'g', 'compar', 'phone', 'moto', 'g', 'one', 'better', 'spec', 'wise', 'memori', 'wise', 'happi', 'bought', 'phone', 'recommend', 'buy', 'phone', 'thing', 'not', 'like', 'difficult', 'handl', 'one', 'hand', 'due', 'size', 'pretti', 'much', 'size'], ['ship', 'fast', 'love'], ['lte', 'not', 'work', 'box', 'sent', 'phone', 'said', 'mms', 'manual', 'set', 'not', 'get', 'kitkat', 'updat'], ['perfect'], ['excel', 'thank', 'much'], ['excel'], ['would', 'hard', 'pleas', 'phone'], ['great'], [], ['great', 'phone', 'fast', 'ship', 'low', 'price', 'recommend', 'vendor'], ['best'], ['good', 'price', 'fast', 'larg', 'screen', 'lot', 'memori', 'sd', 'card', 'slot'], ['love', 'phone', 'great', 'screen', 'sound', 'qualiti', 'instal', 'app', 'could', 'possibl', 'want', 'onboard', 'storag', 'wish', 'could', 'updat', 'lollipop', 'got', 'phone', 'replac', 'lg', 'stolen', 'must', 'say', 'not', 'disappoint'], ['first', 'phone', 'sent', 'without', 'batteri', 'problem', 'refund', 'second', 'phone', 'dead', 'screen', 'took', 'batteri', 'use', 'first', 'phone', 'screen', 'alreadi', 'dead', 'spot', 'get', 'wors', 'go', 'return', 'phone'], ['love', 'phone', 'great', 'product'], ['not', 'lie'], ['last', 'phone', 'lg', 'thrill', 'nice', 'smartphon', 'pretti', 'much', 'need', 'not', 'game', 'player', 'much', 'video', 'streamer', 'recent', 'coupl', 'video', 'want', 'show', 'other', 'screen', 'size', 'problem', 'time', 'went', 'larger', 'screen', 'origin', 'want', 'samsung', 'galaxi', 'mega', 'read', 'mani', 'rave', 'review', 'well', 'coupl', 'said', 'big', 'head', 'store', 'get', 'feel', 'well', 'mega', 'bit', 'freakish', 'look', 'phablet', 'seem', 'bit', 'better', 'saw', 'optimus', 'g', 'pro', 'compar', 'other', 'realli', 'like', 'slick', 'solid', 'feel', 'use', 'lg', 'product', 'softwar', 'laid', 'purchas', 'happi', 'say', 'function', 'issu', 'month', 'work', 'like', 'champ', 'almost', 'replac', 'tablet', 'love', 'tool', 'choic'], ['great', 'lg', 'android', 'phone', 'excel', 'hd', 'display', 'screen', 'speaker', 'phone', 'batteri', 'life', 'also', 'gb', 'intern', 'storag', 'san', 'disk', 'slot', 'plus', 'come', 'unlock', 'att', 'intern', 'travel'], ['awesom'], ['great'], ['termin', 'not', 'recogn', 'sim', 'card', 'not', 'happen', 'understand', 'releas', 'unlock', 'phone', 'not', 'verifi', 'recogn', 'sim', 'card', 'seller', 'friend', 'need', 'help', 'know', 'condit', 'detail', 'phone', 'also', 'see', 'screen', 'flicker', 'littl', 'bit', 'muve', 'technolog', 'unrespons', 'mail', 'cell', 'damag', 'not', 'return', 'i', 'venezuela', 'unfortun', 'minsoo', 'kim', 'not', 'act', 'good', 'faith', 'lost', 'sold', 'differ', 'order', 'phone', 'lg', 'optimus', 'pedi', 'g', 'minsoo', 'kim', 'sent', 'lg', 'differ', 'not', 'work', 'differ', 'frequenc', 'band', 'not', 'understand', 'sto', 'damag', 'custom', 'item', 'not', 'meet', 'order', 'wrong'], ['receiv', 'phone', 'first', 'phone', 'carrier', 'sent', 'bad', 'simm', 'card', 'correct', 'must', 'say', 'phone', 'far', 'superior', 'galaxi', 'price', 'love', 'work', 'well', 'straighttalk', 'phone', 'carrier', 'look', 'brand', 'new', 'miracast', 'phone', 'microsoft', 'wireless', 'display', 'adapt', 'work', 'well', 'vizio', 'smart', 'tv', 'thank', 'great', 'deal', 'product', 'everyth', 'appear', 'work', 'without', 'hitch'], ['love'], ['excelent'], [], ['good', 'articl', 'phone', 'better', 'othera', 'brows', 'fast', 'great', 'app', 'apart', 'excel', 'memori', 'video', 'spectacular'], ['good'], ['excel', 'came', 'earlier', 'thought'], ['awesom', 'phone', 'utter', 'amaz', 'price', 'could', 'not', 'beor', 'pleas'], ['suppos', 'refurbish', 'phone', 'would', 'ok', 'actual', 'work', 'phone', 'sent', 'would', 'not', 'stay', 'would', 'boot', 'major', 'screen', 'flicker', 'second', 'go', 'dead', 'batteri', 'charg', 'not', 'not', 'test', 'proper', 'refurb', 'would', 'never', 'sent', 'decid', 'get', 'new', 'phone', 'experi'], ['not', 'sure', 'phone', 'work', 'paid', 'three', 'day', 'shipment', 'friday', 'mid', 'morn', 'tuesday', 'found', 'morn', 'not', 'address', 'wednesday', 'not', 'worth', 'extra', 'money', 'three', 'busi', 'day', 'shipment', 'went', 'florida', 'kentucki', 'new', 'jersey', 'illinoi', 'colorado', 'talk', 'back', 'track'], ['awesom', 'phone', 'signal', 'poor', 'older', 'lg', 'better'], ['great', 'seller', 'ask', 'whether', 'refurbish', 'phone', 'scratch', 'screen', 'back', 'frame', 'told', 'purchas', 'phone', 'would', 'send', 'nice', 'clean', 'phone', 'much', 'thought', 'research', 'decid', 'purchas', 'lg', 'optimus', 'g', 'pro', 'realli', 'fast', 'deliveri', 'shock', 'surpris', 'phone', 'receiv', 'look', 'like', 'brand', 'new', 'phone', 'came', 'case', 'charger', 'usb', 'cabl', 'manual', 'download', 'one', 'lg', 'site', 'beauti', 'phone', 'work', 'great', 'except', 'camera', 'ton', 'app', 'con', 'speaker', 'distort', 'realli', 'high', 'volum', 'still', 'high', 'recommend', 'phone', 'seller', 'great', 'seller'], ['great', 'deal'], ['phone', 'best', 'ever', 'own', 'easi', 'use', 'load', 'featur', 'great', 'price'], ['phone', 'pretti', 'nice', 'price', 'good', 'size', 'screen', 'nice', 'plus', 'came', 'screen', 'saver', 'alreadi', 'phone', 'littl', 'clitchi', 'time', 'servic', 'time', 'still', 'like'], ['great', 'experi', 'satisfi'], ['love', 'new', 'phone', 'price', 'phone', 'att', 'store'], ['phone', 'best', 'use', 'thought', 'go', 'back', 'iphon', 'not', 'good', 'one', 'big', 'hous', 'mani', 'app', 'drop', 'destroy', 'iphon', 'past', 'four', 'year', 'drop', 'phone', 'sever', 'time', 'not', 'scratch'], ['love'], ['great', 'phone', 'receiv', 'earlier', 'expect', 'deliveri', 'date'], ['perfect'], ['excel'], ['excelent'], ['buy', 'niec', 'small', 'versatil', 'phone', 'offer', 'good', 'featur', 'accept', 'price', 'blame', 'mobil', 'phone', 'led', 'notif', 'messag', 'email', 'box', 'accessori', 'bring', 'also', 'low', 'qualiti'], ['amaz'], ['worder', 'exceed', 'expect'], ['purchas', 'phone', 'gift', 'friend', 'africa', 'not', 'bad', 'relat', 'inexpens', 'cellphon', 'paid', 'hundr', 'dollar', 'short', 'review', 'written', 'would', 'definit', 'serv', 'nice', 'intern', 'phone', 'two', 'sim', 'slot', 'replac', 'batteri'], ['good'], ['good'], ['love'], ['good', 'phone', 'lg', 'optimus', 'thing', 'not', 'voic', 'text', 'still', 'satisfi'], ['good', 'problem'], ['great', 'phone', 'recommend', 'other'], ['excel'], ['good', 'recommend'], ['excel', 'phone'], ['first', 'smart', 'old', 'fashion', 'guy', 'not', 'precis', 'interest', 'new', 'technolog', 'howev', 'first', 'approach', 'phone', 'ok', 'pleas', 'easi', 'use'], ['buy', 'niec', 'small', 'versatil', 'phone', 'offer', 'good', 'featur', 'accept', 'price', 'blame', 'mobil', 'phone', 'led', 'notif', 'messag', 'email', 'box', 'accessori', 'bring', 'also', 'low', 'qualiti'], ['good', 'phone'], ['exelent'], ['purchas', 'aug', 'month', 'start', 'mess', 'start', 'lose', 'mobil', 'signal', 'sms', 'messag', 'take', 'time', 'receiv', 'need', 'reboot', 'lot', 'today', 'day', 'short', 'year', 'not', 'even', 'boot', 'anymor', 'get', 'secur', 'error', 'messag', 'upsid', 'tri', 'turn', 'also', 'memori', 'not', 'enough', 'download', 'app', 'not', 'even', 'updat', 'lot', 'app', 'due', 'lack', 'space', 'worst', 'smart', 'phone', 'ever', 'purchas', 'gave', 'star', 'abl', 'use', 'almost', 'year', 'one', 'plus', 'phone', 'take', 'good', 'photo', 'outdoor', 'still', 'not', 'recommend'], ['excelent', 'camara'], ['phone', 'everyth', 'need', 'smartphon', 'price', 'best', 'could', 'find', 'superb', 'batteri', 'ergonom', 'case', 'great', 'screen', 'memori', 'expans', 'sd', 'card', 'realli', 'practic', 'love'], ['work', 'great'], ['excelent'], ['good', 'thank'], ['good', 'product'], ['excel'], ['good', 'phone', 'problem'], ['excelent'], ['excelent'], ['excel'], ['excel', 'product', 'good', 'atentio', 'amazon', 'thank'], ['excel'], ['good'], ['need', 'galaxi', 'android', 'new', 'tendenc', 'lot', 'money', 'well', 'phone', 'solut', 'realli', 'make', 'good', 'job'], ['love', 'phone', 'right', 'color', 'came', 'unlock', 'wich', 'kind', 'worri', 'peopl', 'comment', 'bad', 'thing', 'charger', 'adapt', 'came', 'uk', 'version', 'countri', 'venezuela', 'not', 'use', 'gave', 'star'], ['excel', 'product', 'high', 'recommend'], ['excel', 'recommend'], ['price', 'mani', 'not', 'bad', 'overal', 'would', 'rather', 'spend', 'buck', 'better', 'phone'], ['phone', 'arriv', 'problem', 'over', 'slow', 'mean', 'price', 'guess', 'fine'], ['estoy', 'muy', 'feliz', 'desd', 'que', 'llego', 'encanto', 'muy', 'rapido', 'el', 'diseno', 'muy', 'bien', 'estoy', 'feliz', 'con', 'el', 'telefono'], ['good', 'morn', 'need', 'inform', 'i', 'venezuela', 'need', 'know', 'specif', 'phone', 'oper', 'band', 'co', 'network', 'hsdpa'], ['cell', 'signal', 'not', 'grab', 'appar', 'antenna', 'danana', 'not', 'recommend', 'buy', 'seller'], ['sin', 'comentario'], ['excel'], ['excel'], ['thorough', 'satisfi', 'product', 'everi', 'way', 'would', 'recommend', 'product', 'other', 'futur', 'thank'], ['excelent'], ['excelent'], ['good', 'responsiblei', 'recommend'], ['case', 'look', 'pretti', 'silver', 'background', 'black', 'graphic', 'fit', 'snug', 'top', 'not', 'quit', 'close', 'tight', 'enough', 'protect', 'phone', 'okay'], ['con', 'like', 'thing', 'freez', 'constant', 'buy', 'box', 'freez', 'pop', 'save', 'money', 'want', 'someth', 'reset', 'time', 'bash', 'head', 'get', 'memori', 'disord', 'would', 'less', 'frustrat', 'sort', 'like', 'time', 'travel', 'text', 'messag', 'futur', 'phone', 'type', 'word', 'second', 'ago'], ['around', 'good', 'worth', 'new', 'phone', 'like', 'come', 'flimsi', 'thin', 'one', 'made', 'good', 'pleas', 'far', 'seem', 'like', 'use', 'better', 'work'], ['excel'], ['cell', 'came', 'defect'], ['friend', 'similar', 'phone', 'arriv', 'promis', 'work', 'well', 'camera', 'take', 'good', 'pictur', 'would', 'recommend', 'phone', 'other'], ['purchas', 'gift', 'anoth', 'unabl', 'give', 'comment', 'point', 'time', 'get', 'feed', 'back', 'convey', 'youmoham'], ['not', 'charg', 'unplug', 'charger', 'phone', 'not', 'keep', 'charg', 'disappoint', 'purchas'], ['purchas', 'phone', 'mother', 'hard', 'time', 'see', 'number', 'old', 'phone', 'want', 'abl', 'take', 'photo', 'grand', 'kid', 'got', 'understand', 'featur', 'phone', 'work', 'adjust', 'view', 'number', 'larger'], ['great', 'phone', 'small', 'clean', 'fast', 'sure', 'find', 'someth', 'like', 'buy', 'mayb', 'possibl', 'get', 'uncommon', 'color', 'like', 'green', 'great', 'phone', 'word'], ['bought', 'girlfriend', 'love', 'work', 'without', 'problem', 'thing', 'wish', 'would', 'done', 'buy', 'screen', 'protector'], ['phone', 'work', 'excel', 'i', 'got', 'one', 'happi', 'girlfriend', 'phone', 'present', 'replac', 'old', 'droid', 'would', 'recommend', 'seller', 'phone', 'like', 'new', 'good', 'condit', 'advertis'], ['phone', 'market', 'new', 'verizon', 'verifi', 'work', 'well', 'paid', 'not', 'like', 'seller'], ['find', 'hard', 'believ', 'sold', 'authent', 'new', 'phone', 'seller', 'nobl', 'planet', 'not', 'even', 'use', 'week', 'began', 'freez', 'contin', 'i', 'not', 'exagger', 'say', 'would', 'tri', 'dial', 'contact', 'wait', 'full', 'minut', 'till', 'actual', 'diall', 'number', 'diall', 'number', 'would', 'sudden', 'dial', 'whole', 'bunch', 'not', 'picki', 'want', 'buy', 'basic', 'android', 'serious', 'phone', 'not', 'even', 'provid', 'basic', 'need', 'make', 'phone', 'call', 'without', 'caus', 'serious', 'amazon', 'allow', 'return'], ['extrem', 'slow'], ['thank'], ['phone', 'kept', 'reboot', 'dozen', 'time', 'day', 'could', 'bare', 'use', 'wast', 'money', 'sure'], ['order', 'receiv', 'problem', 'verizon', 'still', 'charg', 'extra', 'per', 'month', 'conveni', 'phone'], ['everyth', 'expect', 'thank'], ['need', 'phone', 'get', 'upgrad', 'phone', 'work', 'great', 'ship', 'fast', 'problem', 'activ', 'not', 'seller', 'issu', 'sprint', 'thing', 'great', 'phone', 'still', 'work', 'great', 'would', 'deffinat', 'buy', 'anoth', 'phone', 'user'], ['never', 'buy', 'anoth', 'use', 'phone', 'onlin', 'noth', 'troubl', 'get', 'anoth', 'brand', 'new', 'phone'], ['not', 'phone', 'thought', 'order', 'figur', 'id', 'tri', 'probabl', 'use', 'month', 'i', 'never', 'seen', 'phone', 'soo', 'slow', 'even', 'text', 'not', 'think', 'camer', 'near', 'good', 'back', 'use', 'old', 'phone'], ['broke', 'would', 'not', 'recogn', 'sim', 'card'], ['good', 'sale'], ['daughter', 'recipi', 'phone', 'save', 'money', 'phone', 'came', 'quicker', 'estim', 'alway', 'plus', 'great', 'condit', 'like', 'look', 'function', 'phone'], ['super', 'good'], ['note', 'go', 'upgrad', 'note', 'decid', 'save', 'money', 'got', 'phone', 'huge', 'screen', 'come', 'android', 'fast', 'charg', 'screen', 'front', 'phone', 'quicker', 'note', 'small', 'status', 'screen', 'top', 'main', 'screen', 'fingerprint', 'button', 'back', 'make', 'easier', 'unlock', 'bought', 'phone', 'seller', 'day', 'warranti', 'everyon', 'els', 'usual', 'day'], ['love', 'phone', 'upgrad', 'note', 'thing', 'miss', 'stylus', 'bought', 'think', 'would', 'pay', 'lock', 'ran', 'unlock', 'app', 'cell', 'phone', 'unlock', 'right', 'thank', 'market', 'place', 'seller', 'wireless', 'circl', 'ask', 'seller', 'unlock', 'said', 'would', 'unlock', 'not', 'ask', 'wireless', 'circl', 'bought', 'lock', 'unlock', 'free'], ['lg', 'lg', 'flagship', 'devic', 'last', 'year', 'opinion', 'extrem', 'underr', 'time', 'releas', 'sport', 'snapdragon', 'processor', 'four', 'gigabyt', 'ram', 'larg', 'qhd', 'display', 'smaller', 'secondari', 'display', 'cours', 'two', 'camera', 'back', 'camera', 'apertur', 'left', 'impress', 'devic', 'say', 'least', 'lg', 'opt', 'snapdragon', 'processor', 'due', 'qualcomm', 'latest', 'soc', 'horribl', 'problem', 'time', 'devic', 'use', 'not', 'latest', 'greatest', 'processor', 'avail', 'time', 'snapdragon', 'slouch', 'even', 'day', 'pair', 'four', 'gigabyt', 'ram', 'leav', 'zero', 'lag', 'almost', 'task', 'put', 'thing', 'even', 'heavi', 'game', 'modern', 'android', 'game', 'still', 'look', 'play', 'flawless', 'littl', 'problem', 'frame', 'rate', 'graphic', 'prowess', 'four', 'gigabyt', 'ram', 'let', 'us', 'eas', 'heart', 'content', 'also', 'help', 'second', 'screen', 'mention', 'earlier', 'review', 'second', 'screen', 'small', 'two', 'inch', 'long', 'display', 'top', 'main', 'display', 'give', 'access', 'thing', 'like', 'notif', 'quick', 'toggl', 'thing', 'like', 'flashlight', 'even', 'devic', 'main', 'screen', 'hard', 'convey', 'use', 'second', 'screen', 'trust', 'get', 'use', 'find', 'difficult', 'go', 'without', 'lg', 'say', 'leav', 'secondari', 'display', 'day', 'lose', 'percentag', 'batteri', 'person', 'think', 'well', 'worth', 'due', 'addit', 'function', 'main', 'display', 'phone', 'qhd', 'resolut', 'lg', 'quantum', 'display', 'technolog', 'term', 'sound', 'like', 'market', 'gimmick', 'display', 'inde', 'nice', 'use', 'outdoor', 'visibl', 'excel', 'display', 'color', 'look', 'life', 'like', 'vibrant', 'time', 'display', 'not', 'amol', 'lot', 'peopl', 'prefer', 'not', 'let', 'sway', 'purchas', 'decis', 'market', 'phone', 'display', 'equal', 'good', 'i', 'seen', 'far', 'view', 'angl', 'contrast', 'bright', 'even', 'black', 'level', 'excel', 'not', 'problem', 'use', 'devic', 'thing', 'like', 'camera', 'front', 'devic', 'yes', 'say', 'camera', 'five', 'one', 'wide', 'view', 'angl', 'switch', 'thing', 'like', 'selfi', 'work', 'great', 'fact', 'give', 'wide', 'shot', 'back', 'camera', 'one', 'bigger', 'sell', 'point', 'phone', 'one', 'simpl', 'reason', 'manual', 'control', 'sure', 'take', 'fast', 'shot', 'get', 'impress', 'result', 'also', 'turn', 'manual', 'mode', 'let', 'us', 'tweak', 'everi', 'set', 'camera', 'adjust', 'white', 'balanc', 'iso', 'shutter', 'speed', 'even', 'manual', 'focus', 'level', 'control', 'impress', 'realli', 'make', 'huge', 'differ', 'shot', 'abl', 'take', 'particular', 'late', 'night', 'shot', 'even', 'abl', 'take', 'shot', 'star', 'night', 'pitch', 'dark', 'outsid', 'without', 'much', 'experi', 'tweak', 'control', 'manual', 'control', 'not', 'limit', 'photo', 'either', 'also', 'use', 'film', 'video', 'well', 'even', 'full', 'access', 'microphon', 'level', 'plenti', 'featur', 'phone', 'dac', 'make', 'incred', 'music', 'listen', 'experi', 'remov', 'batteri', 'sd', 'card', 'slot', 'lot', 'note', 'worthi', 'featur', 'sake', 'time', 'go', 'not', 'ad', 'review', 'want', 'know', 'anyth', 'els', 'devic', 'use', 'feel', 'free', 'ask', 'i', 'would', 'happi', 'help', 'best', 'abil', 'even', 'lg', 'come', 'need', 'new', 'devic', 'hard', 'beat', 'especi', 'price', 'current', 'sell', 'perform', 'featur', 'still', 'hold', 'today', 'would', 'high', 'suggest', 'give', 'shot', 'fenc', 'devic'], ['nice', 'phone', 'like', 'big', 'easili', 'read', 'web', 'page', 'use', 'desktop', 'site', 'instead', 'mobil', 'site', 'phone', 'schedul', 'get', 'android', 'short', 'phone', 'complet', 'date', 'even', 'though', 'last', 'year', 'model', 'final', 'remov', 'batteri', 'refus', 'buy', 'phone', 'without', 'one', 'plan', 'keep', 'phone', 'sever', 'year', 'need', 'new', 'batteri', 'road', 'buy', 'one', 'idea', 'need', 'phone', 'servic', 'technician', 'replac', 'batter', 'ridicul', 'samsung', 'not', 'gone', 'nonremov', 'batteri', 'might', 'save', 'lot', 'heartach'], ['first', 'glanc', 'seem', 'perfect', 'till', 'found', 'realli', 'bad', 'damag', 'back', 'cover'], ['brought', 'current', 'lg', 'daes', 'far', 'pleas', 'came', 'earphon', 'transluc', 'case', 'screen', 'protector', 'version', 'work', 'pretti', 'good', 'lte', 'use', 'link', 'check', 'compat', 'phone', 'carrier', 'us', 'daes', 'great', 'custom', 'servic', 'shipment', 'fast', 'tri', 'best', 'meet', 'custom', 'said', 'base', 'experi', 'not', 'receiv', 'thing', 'return'], ['tray', 'put', 'second', 'simcard', 'not', 'respond', 'make', 'sure', 'buy', 'still', 'see', 'gorgeous', 'phone'], ['would', 'need', 'kind', 'dissapoint', 'not', 'go', 'cricket', 'phone', 'get', 'guy', 'said', 'phone'], ['definit', 'best', 'smartphon', 'i', 'ever', 'love'], ['great', 'phone', 'month', 'work', 'excel'], ['serv', 'purpos'], ['nice', 'phone', 'size', 'screen', 'littl', 'bit', 'heavi', 'featur', 'made', 'buy', 'regardless', 'weight'], ['great', 'phone', 'good', 'deliveri', 'thank'], ['would', 'great', 'phone', 'could', 'get', 'servic', 'not', 'work', 'not', 'buy', 'anyon', 'help', 'leav', 'comment', 'pleas'], ['everyth', 'phone', 'superb', 'except', 'batteri', 'need', 'power', 'accommod', 'power', 'phone', 'home', 'key', 'back', 'stick', 'littl', 'back', 'case', 'get', 'dirti', 'quick', 'yet', 'find', 'clean', 'solut'], ['excelent'], ['lg', 'one', 'best', 'phone', 'market', 'right', 'product', 'arriv', 'suppos', 'fast', 'charger', 'headset'], ['great', 'phone', 'love', 'not', 'give', 'star', 'phone', 'fals', 'advertis', 'actual', 'came', 'weird', 'charg', 'adapt', 'could', 'not', 'use', 'alon', 'well', 'us', 'attach', 'solv', 'came', 'box', 'though'], ['beauti', 'phone', 'amaz', 'qualiti', 'câmera', 'even', 'pictur', 'taken', 'night'], ['upgrad', 'got', 'stuck', 'bootloop', 'lg', 'would', 'not', 'help', 'almost', 'stop', 'buy', 'saw', 'could', 'not', 'help', 'like', 'larg', 'smartphon', 'skip', 'not', 'disappoint', 'gorgeous', 'look', 'top', 'bottom', 'month', 'make', 'sure', 'expect', 'let', 'say', 'total', 'screen', 'good', 'batteri', 'life', 'surpris', 'good', 'realli', 'function', 'second', 'screen', 'amaz', 'camera', 'system', 'lg', 'handset', 'featur', 'grown', 'love'], ['best', 'ever', 'iphon', 'straight', 'garbag', 'samsung', 'match'], ['excelent'], ['daughter', 'like', 'size', 'speed', 'camera', 'say', 'comfort', 'hold', 'easi', 'manag'], ['great', 'phone', 'good', 'deliveri', 'thank'], ['great', 'phone'], ['perfect'], ['love', 'phone', 'order', 'week', 'ago', 'great', 'although', 'three', 'complain', 'not', 'take', 'away', 'devic', 'phone', 'get', 'hot', 'not', 'know', 'caus', 'first', 'phone', 'take', 'along', 'time', 'charg', 'could', 'devic', 'phone', 'not', 'keep', 'charg', 'long', 'time', 'compar', 'phone', 'almost', 'year', 'reason', 'say', 'not', 'use', 'phone', 'often', 'music', 'watch', 'video', 'chat', 'talk', 'look', 'stuff', 'internet', 'not', 'allow', 'phone', 'work', 'ieav', 'home', 'hard', 'ever', 'home', 'live', 'self', 'one', 'go', 'person', 'like', 'expect', 'longer', 'batteri', 'lifethos', 'three', 'complain', 'far', 'could', 'devic', 'fault', 'rememb', 'peopl', 'mass', 'produc', 'not', 'excus', 'sometim', 'look', 'way', 'still', 'love', 'phone', 'none', 'less', 'thank', 'provid', 'shipper', 'send', 'phone', 'time'], ['receiv', 'expect'], ['batteri', 'life', 'averag', 'lg', 'great', 'phone', 'glad', 'return', 'one', 'plus', 'lg', 'beauti', 'design', 'great', 'fluiditi', 'awesom', 'memori', 'great', 'price'], ['wait', 'week', 'phone', 'arriv', 'not', 'charg', 'send', 'back'], ['fit', 'perfect'], ['good', 'replac', 'phone', 'mom', 'phone', 'one', 'broke', 'work', 'perfect', 'not', 'learn', 'use', 'anoth', 'one'], ['love', 'till', 'upgrad', 'app'], ['alway', 'littl', 'nervous', 'buy', 'phone', 'line', 'happi', 'purchas', 'deliv', 'quick', 'phone', 'state', 'condit', 'happi', 'purchas'], ['old', 'one', 'replac', 'simpl', 'phone', 'ring', 'choic', 'answer', 'not', 'not', 'need', 'fanci'], ['phone', 'not', 'hold', 'charg', 'work', 'day', 'not', 'recharg', 'useless', 'point'], ['samsung', 'nice', 'phone', 'look', 'great', 'great', 'function', 'summeris', 'pros', 'con', 'think', 'use', 'alot', 'cell', 'phone', 'life', 'speaker', 'phone', 'activ', 'without', 'open', 'good', 'life', 'expect', 'phone', 'great', 'screen', 'not', 'take', 'advantag', 'screen', 'even', 'view', 'pic', 'not', 'view', 'full', 'bluetooth', 'crippl', 'like', 'verizon', 'phone', 'not', 'make', 'shortcut', 'would', 'nice', 'remap', 'soft', 'key', 'short', 'cut', 'verizon', 'firmwar', 'prefer', 'samsung', 'brand', 'origin', 'firmwar', 'overal', 'got', 'decent', 'price', 'think', 'chang', 'soonfor', 'someon', 'use', 'gsm', 'network', 'think', 'better', 'phone', 'divers', 'gsm', 'special', 'soni', 'ericsson', 'nokia', 'not', 'carri', 'verizon', 'except', 'coupl', 'entri', 'level', 'phone'], ['got', 'father', 'one', 'previous', 'lost', 'limit', 'text', 'love', 'eas', 'phone'], ['i', 'cell', 'phone', 'month', 'alreadi', 'stop', 'batteri', 'life', 'short', 'annoy', 'sinc', 'i', 'usual', 'camera', 'crap', 'millimet', 'headphon', 'jack', 'worthless', 'not', 'headphon', 'fit', 'size', 'headphon', 'month', 'phone', 'would', 'automat', 'shut', 'restart', 'everi', 'continu', 'use', 'phone', 'bit', 'longer', 'phone', 'kept', 'shut', 'restart', 'everi', 'minut', 'make', 'phone', 'not', 'order', 'phone', 'futur'], ['text', 'button', 'terribl', 'work', 'poor', 'overal', 'husband', 'model', 'phone', 'year', 'time', 'troubl'], ['work', 'predict'], ['great'], ['transact', 'good', 'realli', 'low', 'batteri', 'life', 'replac', 'anoth', 'week'], ['i', 'happi', 'phone', 'favorit'], ['custom', 'servic', 'great', 'bad', 'phone', 'old', 'enough', 'could', 'not', 'get', 'work', 'well', 'carrier'], ['i', 'cell', 'phone', 'month', 'alreadi', 'stop', 'batteri', 'life', 'short', 'annoy', 'sinc', 'i', 'usual', 'camera', 'crap', 'millimet', 'headphon', 'jack', 'worthless', 'not', 'headphon', 'fit', 'size', 'headphon', 'month', 'phone', 'would', 'automat', 'shut', 'restart', 'everi', 'continu', 'use', 'phone', 'bit', 'longer', 'phone', 'kept', 'shut', 'restart', 'everi', 'minut', 'make', 'phone', 'not', 'order', 'phone', 'futur'], ['cell', 'phone', 'person', 'prefer', 'item', 'would', 'not', 'buy', 'probabl', 'i', 'would', 'avoid', 'phone', 'expos', 'keyboard', 'annoy', 'lock', 'button', 'keep', 'push', 'use', 'phone', 'pocket', 'troubl', 'push', 'ever', 'take', 'see', 'done', 'silli', 'thing', 'without', 'knowledg'], ['troubl', 'load', 'internet'], ['would', 'not', 'work', 'need'], ['bought', 'cell', 'phone', 'less', 'two', 'month', 'ago', 'day', 'charger', 'not', 'charg', 'phone', 'lg', 'refus', 'honor', 'one', 'year', 'warranti', 'ask', 'send', 'purchas', 'receipt', 'want', 'pay', 'summari', 'phone', 'piec', 'junk', 'compani', 'behind', 'even', 'wors', 'never', 'purchas', 'lg', 'product', 'strong', 'advis', 'consid', 'purchas', 'lg', 'product', 'purchas', 'anoth', 'brand'], ['excit', 'get', 'phone', 'start', 'use', 'great', 'text', 'not', 'know', 'one', 'got', 'defect', 'phone', 'would', 'lose', 'charg', 'die', 'everi', 'time', 'made', 'phone', 'call', 'could', 'complet', 'charg', 'phone', 'night', 'took', 'charger', 'make', 'call', 'would', 'liter', 'die', 'within', 'minut', 'call', 'dead', 'could', 'turn', 'back', 'text', 'soon', 'hit', 'dial', 'button', 'would', 'instant', 'die', 'sent', 'back', 'not', 'heard', 'back', 'amazon', 'yet', 'i', 'actual', 'go', 'get', 'refund', 'crappi', 'phone', 'well', 'see', 'would', 'not', 'recommend', 'phone', 'friend'], ['phone', 'not', 'good', 'phone', 'would', 'not', 'recommend', 'anyon', 'never', 'buy', 'anoth', 'one', 'phone'], ['order', 'phone', 'replac', 'one', 'quit', 'work', 'pleas', 'new', 'one', 'love', 'slide', 'keyboard', 'make', 'text', 'easi', 'great', 'price', 'also'], ['love', 'much', 'bough', 'phone', 'daughter', 'also', 'luv', 'fon', 'thank'], ['not', 'smart', 'phone', 'thought', 'order', 'smartphon', 'boy', 'high', 'surpris', 'found', 'major', 'downgrad'], ['not', 'work'], ['one', 'day', 'look', 'thing', 'put', 'wish', 'list', 'click', 'link', 'magnific', 'pice', 'everi', 'thing', 'averag', 'teenag', 'would', 'want', 'phone', 'plus', 'light', 'weight', 'pretti', 'sweet', 'teenag', 'high', 'recommend', 'reali', 'want', 'phone', 'sure', 'hope', 'good', 'describ', 'research', 'phone', 'think', 'good', 'buy'], ['love', 'phone', 'sound', 'great', 'thank'], ['phone', 'expect'], ['use', 'phone', 'work', 'defect', 'speaker', 'phone', 'not', 'work', 'drop', 'call', 'alot', 'buy', 'new', 'phone', 'next', 'use'], ['open', 'phone', 'part', 'way', 'open', 'fulli', 'not', 'hear', 'person', 'end'], ['lot', 'research', 'onlin', 'phone', 'order', 'first', 'thought', 'one', 'star', 'comment', 'bit', 'critic', 'man', 'ever', 'wrong', 'phone', 'aw', 'say', 'not', 'youtub', 'vid', 'play', 'vid', 'also', 'dual', 'sim', 'card', 'phone', 'aw', 'dial', 'number', 'call', 'two', 'green', 'phone', 'icon', 'one', 'sim', 'second', 'sim', 'not', 'big', 'deal', 'annoy', 'look', 'also', 'one', 'sim', 'card', 'network', 'notif', 'bar', 'top', 'second', 'alway', 'show', 'red', 'get', 'rid', 'last', 'sign', 'next', 'year', 'updat', 'kitkat', 'phone', 'not', 'describ', 'onlin', 'super', 'slow', 'gig', 'ram', 'quad', 'core', 'cpu', 'blu', 'inc', 'not', 'care', 'issu', 'regard', 'phone', 'tech', 'know', 'walk', 'factori', 'reset', 'not', 'rob', 'good', 'money', 'stay', 'complet', 'away', 'product'], ['stop', 'not', 'bother', 'order', 'anoth', 'phone', 'manufactur', 'second', 'blu', 'phone', 'like', 'first', 'develop', 'random', 'charg', 'port', 'issu', 'six', 'month', 'never', 'drop', 'got', 'singl', 'drop', 'water', 'averag', 'user', 'not', 'root', 'anyth', 'sort', 'six', 'month', 'use', 'one', 'random', 'day', 'middl', 'text', 'messag', 'phone', 'froze', 'turn', 'not', 'turn', 'back', 'consid', 'uncommon', 'non', 'remov', 'batteri', 'sd', 'card', 'go', 'best', 'buy', 'fri', 'see', 'could', 'save', 'least', 'save', 'pictur', 'useless', 'lost', 'pictur', 'memori', 'first', 'semest', 'univers', 'still', 'use', 'phone', 'save', 'sync', 'pic', 'video', 'anyth', 'import', 'look', 'elsewher', 'decent', 'android', 'move', 'onto', 'motorola'], ['name'], ['look', 'unlock', 'phone', 'sinc', 'not', 'want', 'get', 'long', 'term', 'contract', 'even', 'month', 'fee', 'also', 'look', 'smartphon', 'featur', 'run', 'app', 'want', 'least', 'screen', 'high', 'res', 'blu', 'life', 'one', 'x', 'plus', 'price', 'less', 'could', 'get', 'samsung', 'downsid', 'find', 'belt', 'loop', 'case', 'fit', 'smartphon', 'proper', 'without', 'larg', 'sinc', 'blu', 'not', 'offer', 'accessori', 'overal', 'work', 'great', 'would', 'high', 'recommend', 'smartphon'], ['camera', 'qualiti', 'great', 'asset', 'purchas', 'new', 'phone', 'user', 'interfac', 'excel', 'phone', 'eleg', 'design', 'come', 'screen', 'protector', 'alreadi', 'plus', 'extra', 'also', 'pair', 'earphon', 'includ', 'box', 'give', 'good', 'sound', 'great', 'camera', 'easi', 'use', 'understand', 'lot', 'cool', 'featur', 'eg', 'guest', 'modecon', 'sound', 'qualiti', 'great', 'low', 'phone', 'not', 'loud', 'ring', 'play', 'music', 'would', 'give', 'star', 'phone', 'louder'], ['phone', 'screen', 'realli', 'great', 'bright', 'process', 'good', 'not', 'heavi', 'game', 'softwar', 'not', 'expect', 'kind', 'like', 'io', 'realli', 'simplist', 'suggest', 'launcher', 'like', 'nova', 'apex', 'camera', 'actual', 'realli', 'good', 'phone', 'come', 'case', 'headphon', 'screen', 'protector', 'not', 'expect', 'got', 'fantast'], ['anyon', 'wonder', 'yes', 'work', 'metropc', 'got', 'yesterday', 'work', 'pictur', 'phone', 'justic', 'built', 'sturdi', 'nice', 'weight', 'everyth', 'look', 'amaz', 'ui', 'masterpeic', 'mean', 'serious', 'phone', 'great', 'could', 'use', 'gig', 'ram', 'sure', 'not', 'sure', 'seem', 'great', 'modern', 'phone', 'skimpd', 'memori', 'nowher', 'near', 'deal', 'breaker', 'find', 'noth', 'better', 'price', 'month', 'research', 'realli', 'paid', 'everyon', 'hous', 'want', 'blu', 'phone', 'game', 'like', 'bigger', 'screen', 'get', 'blu', 'life', 'pure', 'ram', 'bigger', 'screen', 'littl', 'thing', 'still', 'batteri', 'hour', 'moder', 'use', 'short', 'phone', 'call', 'screen', 'think', 'iphon', 'retina', 'nicerblu', 'big', 'go', 'underpow', 'model', 'powerhous', 'although', 'know', 'thier', 'biggest', 'custom', 'base', 'latin', 'america', 'assum', 'still', 'need', 'phone', 'digress', 'great', 'phone', 'buy', 'want', 'someth', 'feel', 'like', 'came', 'high', 'end', 'specialti', 'phone', 'manufactur'], ['phone', 'like', 'iphon', 'screen', 'quad', 'core', 'realli', 'fast', 'bought', 'lg', 'screen', 'quad', 'core', 'quick', 'screen', 'look', 'good', 'feel', 'good', 'hand', 'batteri', 'life', 'crazi', 'good', 'watch', 'youtub', 'play', 'game', 'day', 'hrs', 'still', 'phone', 'hrs', 'youtub', 'alreadi', 'chirp', 'thing', 'i', 'hate', 'phone', 'far', 'not', 'good', 'case', 'put', 'cost', 'time', 'much', 'similar', 'one', 'popular', 'phone', 'qualiti', 'product', 'abl', 'catch', 'sale', 'love', 'phone', 'phone', 'week', 'fantast', 'phone', 'batteri', 'life', 'beyond', 'good', 'review', 'said', 'phone', 'not', 'work', 'sure', 'buy', 'american', 'version', 'want', 'get', 'speed', 'get', 'intern', 'miss', 'mhz', 'get', 'edg', 'speed', 'get', 'mhz', 'intern', 'need', 'want', 'get', 'cell', 'servic', 'south', 'korea', 'japan', 'call', 'qualiti', 'great', 'phone', 'like', 'mani', 'android', 'phone', 'except', 'motorola', 'phone', 'hard', 'time', 'get', 'group', 'chat', 'mix', 'iphon', 'user', 'got', 'around', 'instal', 'go', 'sms', 'pro', 'free', 'enabl', 'group', 'chat', 'mms', 'screen', 'qualiti', 'better', 'iphon', 'thing', 'wish', 'phone', 'micro', 'sd', 'good', 'qualiti', 'case', 'not', 'cost', 'forgot', 'remov', 'sticker', 'rear', 'thought', 'speaker', 'horribl', 'remov', 'sticker', 'block', 'speaker', 'lowest', 'volum', 'strengthen', 'part', 'dts', 'effect', 'music', 'player', 'abl', 'turn', 'volumn', 'low', 'enough', 'would', 'love', 'tri', 'blu', 'life', 'pure', 'screen', 'sinc', 'phone', 'plus', 'find', 'anyth', 'negtiv', 'phone', 'i', 'updat', 'reveiw', 'i', 'glad', 'got', 'phone', 'instead', 'anoth', 'motorola', 'moto', 'phone', 'still', 'great', 'instal', 'outsid', 'live', 'wallpap', 'caus', 'littl', 'bit', 'hichup', 'sever', 'app', 'open', 'run', 'live', 'wallpap', 'background', 'made', 'phone', 'lag', 'bit', 'hold', 'power', 'button', 'make', 'restart', 'mani', 'app', 'open', 'guess', 'littl', 'much', 'sinc', 'phone', 'gb', 'ram', 'learn', 'hold', 'power', 'volumn', 'button', 'time', 'take', 'screen', 'shot', 'far', 'good', 'come', 'anyth', 'els', 'i', 'far', 'still', 'decent', 'case', 'great', 'phone', 'forgot', 'mention', 'earphon', 'come', 'phone', 'realli', 'high', 'qualiti', 'use', 'navig', 'first', 'time', 'today', 'took', 'littl', 'longer', 'i', 'use', 'lock', 'satellit', 'arriv', 'destin', 'show', 'go', 'side', 'road', 'actual', 'freeway', 'caught', 'soon', 'made', 'correct', 'i', 'pretti', 'sure', 'satellit', 'connect', 'problem', 'not', 'sure', 'bad', 'day', 'act', 'time', 'get', 'destin', 'constant', 'use', 'navig', 'might', 'want', 'wait', 'review', 'phone', 'far', 'great', 'like', 'phone', 'better', 'motorola', 'moto', 'g', 'lg', 'optimus', 'camera', 'qualiti', 'also', 'nice', 'front', 'camera', 'not', 'anyth', 'brag', 'rear', 'face', 'camera', 'awesom', 'even', 'low', 'light', 'take', 'quick', 'snap', 'multi', 'shot', 'take', 'like', 'shot', 'second', 'press', 'hold', 'button', 'i', 'keep', 'guy', 'updat', 'find', 'someth', 'gps', 'work', 'pretti', 'good', 'cloud', 'cover', 'caus', 'issu', 'earlier', 'want', 'take', 'screen', 'shot', 'press', 'power', 'volum', 'button', 'time', 'power', 'button', 'slight', 'sooner', 'phone', 'froze', 'coupl', 'time', 'tri', 'watch', 'web', 'embed', 'video', 'reboot', 'press', 'power', 'button', 'second', 'phone', 'still', 'work', 'great', 'impress', 'build', 'qualiti', 'batteri', 'life', 'phone', 'good', 'could', 'not', 'go', 'back', 'phone', 'not', 'last', 'least', 'hour', 'watch', 'youtub', 'without', 'i', 'begin', 'find', 'decent', 'case', 'phone', 'found', 'help', 'yet', 'charg', 'phone', 'day', 'worri', 'charg', 'port', 'might', 'not', 'hold', 'well', 'sinc', 'i', 'problem', 'cheaper', 'phone', 'tablet', 'charger', 'seem', 'stop', 'fit', 'tight', 'not', 'problem', 'charg', 'port', 'rememb', 'insert', 'backward', 'compar', 'samsung', 'tri', 'use', 'gps', 'sever', 'time', 'give', 'lot', 'sure', 'problem', 'gps', 'phone', 'bad', 'design', 'phone', 'still', 'give', 'phone', 'solid', 'star', 'rate', 'due', 'qualiti', 'phone', 'besid', 'gps', 'issu', 'batteri', 'life', 'still', 'hold', 'nice', 'i', 'not', 'sure', 'front', 'glass', 'made', 'gorilla', 'glass', 'took', 'screen', 'protector', 'week', 'ago', 'scratch', 'yet', 'find', 'cheap', 'rubber', 'case', 'ebay', 'fit', 'realli', 'nice', 'phone', 'phone', 'lte', 'expand', 'memori', 'would', 'chang', 'whole', 'famili', 'phone', 'i', 'think', 'upgrad', 'phone', 'phone', 'realli', 'held', 'good', 'far', 'phone', 'still', 'solid', 'work', 'like', 'brand', 'new', 'abl', 'find', 'gel', 'case', 'wife', 'gave', 'youngest', 'one', 'love', 'rest', 'famili', 'use', 'lg', 'iphon', 'i', 'still', 'happi', 'phone', 'phone', 'lte', 'better', 'perhap', 'expand', 'memori', 'would', 'probabl', 'still', 'use', 'phone', 'anoth', 'year', 'last', 'review', 'phone', 'qualiti', 'phone', 'great', 'sold', 'phone', 'keep', 'track', 'blu', 'realli', 'sad', 'see', 'product', 'realli', 'nice', 'budget', 'devic', 'lack', 'type', 'support', 'devic', 'nice', 'not', 'stuck', 'jellybean', 'phone', 'gps', 'realli', 'need', 'fix', 'could', 'live', 'price', 'lack', 'type', 'updat', 'blu', 'ruin', 'experi', 'softwar', 'got', 'purchas', 'blu', 'product', 'rememb', 'phone', 'might', 'realli', 'nice', 'begin', 'bargain', 'get', 'outdat', 'realli', 'quick', 'other', 'around', 'enjoy', 'new', 'firmwar'], ['love', 'smartphon', 'fast', 'nice', 'superb', 'money', 'great', 'buy', 'samsung', 'retir', 'took', 'place', 'welcom', 'life', 'pure', 'mini'], ['fantast', 'phone', 'could', 'not', 'chosen', 'better'], ['leak', 'water', 'muffl', 'sound', 'not', 'buy'], ['second', 'case', 'six', 'month', 'period', 'bought', 'due', 'portion', 'case', 'break', 'disappoint', 'thought', 'would', 'last', 'longer', 'six', 'month', 'lot', 'durabl', 'tough'], ['great', 'product'], ['good'], ['assum', 'brought', 'lifeproof', 'case', 'would', 'life', 'name', 'waterproof', 'dirtproof', 'drop', 'proof', 'snowproof', 'case', 'week', 'drop', 'bunkb', 'ft', 'ground', 'screen', 'shatter', 'un', 'usuabl', 'displeas', 'product'], ['arriv', 'alreadi', 'broke', 'near', 'clip', 'insert', 'charger', 'littl', 'not', 'bad', 'enough', 'could', 'not', 'use', 'clip', 'actual', 'jold', 'togeth', 'still', 'pass', 'water', 'test', 'arriv', 'april', 'may', 'clip', 'crack', 'split', 'half', 'sad', 'thing', 'not', 'first', 'time', 'worst', 'part', 'longest', 'either', 'lifeproof', 'case', 'last', 'two', 'week', 'not', 'exact', 'happi', 'product', 'expect', 'case', 'last', 'month'], ['not', 'seen', 'packag', 'even', 'thought', 'say', 'diliverd', 'not', 'happi'], ['item', 'describ', 'still', 'work', 'learn', 'use'], ['time', 'reset', 'lose', 'sync', 'even', 'phone', 'right', 'next', 'watch', 'featur', 'not', 'work'], ['not', 'written', 'packag', 'dissappoint'], ['receiv', 'head', 'time', 'easi', 'pair', 'samsung', 'galaxi', 'core', 'prime', 'make', 'call', 'send', 'txt', 'take', 'pic', 'host', 'thing', 'great', 'product'], ['give', 'custom', 'star', 'item', 'smart', 'watch'], ['yr', 'old', 'love', 'super', 'warm', 'comfi', 'bat', 'wing', 'go', 'effortless'], ['receiv', 'head', 'time', 'easi', 'pair', 'samsung', 'galaxi', 'core', 'prime', 'make', 'call', 'send', 'txt', 'take', 'pic', 'host', 'thing', 'great', 'product'], ['nice', 'love'], ['nice', 'still', 'not', 'tri', 'give', 'present', 'still', 'need', 'two', 'let', 'know'], ['nice', 'android', 'smartwatch', 'realli', 'not', 'time', 'lot', 'stuff', 'yet', 'would', 'recommend', 'famili', 'friend', 'still', 'want', 'lg', 'smartwatch', 'someth', 'real', 'deal', 'later', 'ppl'], ['hi', 'amazon', 'staff', 'good', 'day', 'thank', 'stuff', 'bought', 'ur', 'ship', 'actual', 'give', 'inform', 'regard', 'quadband', 'voic', 'dial', 'cellphon', 'i', 'goin', 'home', 'philippin', 'want', 'send', 'pictur', 'gift', 'special', 'life', 'thank', 'easi', 'purchas', 'happi', 'day', 'alway'], ['order', 'phone', 'twice', 'process', 'make', 'second', 'return', 'want', 'much', 'like', 'phone', 'fact', 'love', 'featur', 'love', 'extern', 'keypad', 'stylus', 'need', 'accept', 'prepaid', 'sim', 'card', 'issu', 'howev', 'neither', 'two', 'phone', 'order', 'would', 'recogn', 'microsd', 'card', 'tri', 'two', 'differ', 'card', 'work', 'fine', 'devic', 'could', 'not', 'get', 'work', 'unfortun', 'issu', 'otherwis', 'pretti', 'cool', 'product'], ['took', 'mani', 'attempt', 'scan', 'qr', 'code', 'instal', 'app', 'app', 'chines', 'took', 'watch', 'get', 'gsm', 'sim', 'card', 'network', 'compat', 'not', 'signal', 'request', 'return', 'approv', 'seller', 'pay', 'intern', 'postag', 'send', 'back', 'postag', 'would', 'cost', 'much', 'watch', 'not', 'worth'], ['hi', 'would', 'like', 'inform', 'cell', 'damag', 'flash', 'not', 'work', 'option', 'either', 'automat', 'mode'], ['satisfi', 'love', 'window', 'phone', 'work', 'good', 'issu'], ['like', 'nice', 'good', 'gift', 'realli', 'item', 'nice'], ['get', 'pay', 'guess', 'phone', 'not', 'fit', 'samsung', 'galaxi', 'ii', 'note', 'case', 'phone', 'not', 'includ', 'note', 'facebook', 'photo', 'not', 'upload', 'contact', 'book', 'netflix', 'account', 'not', 'work', 'phone', 'phone', 'receiv', 'appear', 'previous', 'use', 'scratch', 'main', 'front', 'button', 'went', 'purchas', 'open', 'mind', 'felt', 'would', 'get', 'deal', 'howev', 'wild', 'disappoint', 'phone', 'come', 'two', 'batteri', 'nice', 'batteri', 'last', 'long', 'time', 'return', 'phone', 'bite', 'bullet', 'get', 'real', 'thing'], ['start', 'say', 'love', 'screen', 'larg', 'enough', 'see', 'glass', 'without', 'glass', 'everyth', 'els', 'us', 'great', 'except', 'wait', 'unit', 'state', 'network', 'kick', 'ship', 'hong', 'kong', 'everyth', 'not', 'work', 'proper', 'first', 'twentyfour', 'hour', 'foid'], ['good'], ['would', 'not', 'work'], ['dad', 'love', 'cellphon', 'happi'], ['look', 'everywher', 'phone', 'found', 'happi', 'love', 'window', 'easi', 'use', 'work', 'like', 'charm'], ['good', 'phone'], ['love', 'phone', 'prefer', 'nokia'], ['lumia', 'xl', 'lte', 'pretti', 'great', 'phone', 'not', 'without', 'flaw', 'i', 'not', 'go', 'go', 'full', 'detail', 'review', 'i', 'focus', 'specif', 'batteri', 'gps', 'pretti', 'physic', 'button', 'nice', 'clicki', 'even', 'underneath', 'big', 'rubber', 'casecon', 'phone', 'littl', 'bit', 'underpow', 'screen', 'suffic', 'everi', 'applic', 'made', 'window', 'touchscreen', 'littl', 'less', 'sensit', 'would', 'mobil', 'still', 'unfinish', 'mani', 'area', 'softwar', 'power', 'speaker', 'back', 'kind', 'obnoxi'], ['feel', 'littl', 'big', 'alway', 'trust', 'thank'], ['lumia', 'xl', 'excel', 'phone', 'take', 'amaz', 'sharp', 'photo', 'match', 'qualiti', 'phone', 'three', 'time', 'cost', 'run', 'smooth', 'despit', 'tier', 'processor', 'translat', 'better', 'batteri', 'life', 'without', 'compromis', 'user', 'experi', 'i', 'use', 'phone', 'week', 'not', 'gone', 'mark', 'even', 'near', 'day', 'addit', 'pros', 'io', 'android', 'glanc', 'screen', 'lumia', 'xl', 'give', 'user', 'option', 'alway', 'show', 'time', 'notif', 'eat', 'littl', 'doubl', 'tap', 'wake', 'sleep', 'doubl', 'tap', 'screen', 'navig', 'bar', 'wake', 'put', 'phone', 'sleep', 'tile', 'actual', 'huge', 'one', 'peopl', 'often', 'dislik', 'tile', 'interfac', 'person', 'love', 'easi', 'find', 'task', 'need', 'attend', 'phone', 'one', 'look', 'screen', 'need', 'respond', 'someon', 'text', 'not', 'forget', 'number', 'go', 'show', 'text', 'icon', 'even', 'i', 'clear', 'synchron', 'second', 'lumia', 'abil', 'automat', 'bring', 'app', 'set', 'older', 'phone', 'made', 'upgrad', 'process', 'smooth', 'someon', 'hand', 'phone', 'would', 'idea', 'sub', 'phone', 'smooth', 'build', 'also', 'scream', 'iphon', 'case', 'remov', 'mean', 'scratch', 'case', 'scuff', 'crack', 'alway', 'replac', 'mere', 'realli', 'like', 'compar', 'old', 'addit', 'storag', 'via', 'sd', 'card', 'add', 'sd', 'card', 'phone', 'increas', 'board', 'storag', 'gb', 'less', 'got', 'gb', 'micro', 'sd', 'avail', 'site', 'disadvantag', 'android', 'widget', 'widget', 'realli', 'nice', 'old', 'galaxi', 'wish', 'tile', 'interfac', 'would', 'bit', 'facebook', 'messeng', 'facebook', 'messeng', 'app', 'android', 'widget', 'would', 'alway', 'despit', 'app', 'made', 'easier', 'facebook', 'say', 'best', 'phone', 'i', 'own', 'date', 'i', 'use', 'galaxi', 'iphon', 'lumi', 'fact', 'phone', 'sub', 'unlock', 'contract', 'effect', 'compet', 'flagship', 'phone', 'three', 'time', 'price', 'make', 'purchas', 'incred', 'valu'], ['purchas', 'gift', 'wife', 'replac', 'nokia', 'lumina', 'larger', 'screen', 'great', 'fit', 'mani', 'tile', 'main', 'screen', 'view', 'pictur', 'video', 'much', 'usabl', 'camera', 'take', 'realli', 'nice', 'pictur', 'also', 'window', 'upgrad', 'compat', 'come', 'still', 'use', 'htc', 'radar', 'i', 'jealous', 'may', 'need', 'buy', 'cost', 'latest', 'phone', 'market', 'phone', 'bargain', 'everyth', 'newer', 'phone', 'love', 'window', 'phone', 'os', 'great', 'upgrad', 'option', 'fraction', 'price'], ['realli', 'like', 'phone', 'howev', 'delic', 'drop', 'inch', 'ground', 'complet', 'shatter', 'day', 'receiv', 'goe', 'right', 'drain', 'oh', 'well', 'still', 'like'], ['actual', 'bought', 'phone', 'nephew', 'kind', 'phone', 'issu', 'last', 'coupl', 'year', 'not', 'keep', 'work', 'look', 'decent', 'phone', 'cheap', 'phone', 'android', 'phone', 'curious', 'would', 'react', 'window', 'phone', 'turn', 'love', 'thing', 'ask', 'want', 'tri', 'i', 'impress', 'usabl', 'say', 'someth', 'phone', 'android', 'i', 'not', 'impress', 'window', 'pc', 'system', 'quit', 'intellig', 'laid', 'fast', 'realli', 'good', 'phone'], ['i', 'happi', 'new', 'phone', 'replac', 'previous', 'window', 'phone', 'set', 'fast', 'easi', 'phone', 'arriv', 'well', 'within', 'expect', 'time', 'hold', 'charg', 'well', 'major', 'concern', 'purchas', 'factori', 'refurbish', 'phone', 'not', 'give', 'five', 'star', 'easili', 'phone', 'solid', 'four'], ['great', 'phone', 'noth', 'not', 'like', 'excel', 'respons', 'look', 'go', 'full', 'day', 'charg', 'may', 'not', 'use', 'wifi', 'connect', 'voic', 'day', 'fact', 'batteri', 'easili', 'replac', 'huge', 'carri', 'extra', 'batteri', 'backpack', 'batteri', 'low', 'simpli', 'swap', 'best', 'possibl', 'option', 'i', 'never', 'guy', 'airport', 'run', 'around', 'look', 'power', 'like', 'iphon', 'differ', 'phone', 'case', 'cover', 'buy', 'new', 'case', 'replac', 'entir', 'cover', 'phone', 'case', 'not', 'need', 'fit', 'factori', 'case', 'replac', 'nice', 'design', 'mani', 'nice', 'case', 'avail', 'phone', 'leather', 'case', 'get', 'compliment', 'think', 'either', 'like', 'window', 'phone', 'os', 'not', 'intuit', 'expect', 'expect', 'like', 'tile', 'navig', 'page', 'easi', 'rearrang', 'resiz', 'issu', 'see', 'window', 'phone', 'lack', 'softwar', 'support', 'waze', 'exampl', 'fair', 'crippl', 'window', 'android', 'app', 'need', 'clear', 'far', 'fewer', 'app', 'android', 'iphon', 'not', 'issu'], ['solid', 'phone', 'matur', 'window', 'phone', 'amaz', 'camera', 'top', 'batteri', 'life'], ['tl', 'dr', 'good', 'phone', 'peopl', 'like', 'window', 'os', 'especi', 'current', 'got', 'window', 'phone', 'year', 'ago', 'nexus', 'nexus', 'android', 'phone', 'i', 'use', 'budget', 'window', 'phone', 'nokia', 'decid', 'give', 'tri', 'month', 'ago', 'sinc', 'offer', 'big', 'discount', 'retail', 'amazon', 'like', 'window', 'not', 'use', 'lot', 'app', 'usual', 'one', 'use', 'platform', 'app', 'everyth', 'person', 'window', 'phone', 'like', 'not', 'window', 'os', 'make', 'signific', 'improv', 'previous', 'os', 'feel', 'like', 'well', 'integr', 'intellig', 'system', 'use', 'build', 'qualiti', 'least', 'equal', 'nexus', 'phone', 'step', 'lumia', 'i', 'use', 'overal', 'like', 'window', 'terrif', 'phone'], ['respect', 'great', 'upgrad', 'nokia', 'continuum', 'abl', 'tri', 'microsoft', 'store', 'great', 'pretti', 'much', 'full', 'pc', 'experi', 'excel', 'powerpoint', 'edg', 'browser', 'open', 'time', 'use', 'i', 'would', 'get', 'dock', 'bit', 'much', 'impuls', 'buy', 'pretti', 'fast', 'fluid', 'well', 'despit', 'hear', 'app', 'gap', 'pretti', 'much', 'everyth', 'need', 'got', 'though', 'would', 'kill', 'batteri', 'half', 'day', 'get', 'realli', 'hot', 'turn', 'sd', 'card', 'work', 'fine', 'not', 'good', 'enough', 'need', 'realli', 'fast', 'card', 'fix', 'heat', 'batteri', 'drain', 'though', 'definit', 'not', 'good', 'batteri', 'also', 'issu', 'log', 'wifi', 'hotspot', 'login', 'page', 'need', 'sometim', 'not', 'come', 'reboot', 'phone', 'still', 'work', 'definit', 'star', 'devic', 'star', 'issu', 'get', 'sort'], ['actual', 'purchas', 'son', 'love', 'phone', 'pokemon', 'go', 'came', 'i', 'heard', 'grumbl', 'wish', 'peopl', 'would', 'write', 'good', 'game', 'window', 'platform'], ['except', 'phone', 'chines', 'fix', 'great', 'phone', 'happi', 'thank'], ['realli', 'great', 'phone', 'want', 'good', 'high', 'end', 'yet', 'modest', 'altern', 'expens', 'high', 'end', 'galaxi', 'iphon', 'still', 'work', 'window', 'mobil', 'come', 'alon', 'nice', 'much', 'much', 'stabl', 'buggi', 'trust', 'peopl', 'complain', 'lack', 'app', 'os', 'main', 'one', 'ad', 'time'], ['phone', 'constant', 'program', 'freez', 'lag', 'app', 'turn', 'not', 'use', 'not', 'respons', 'part', 'time', 'not', 'even', 'turn', 'use', 'phone', 'without', 'talk', 'batteri', 'first'], ['not', 'even', 'tell', 'much', 'love', 'phone', 'best', 'phone', 'i', 'ever', 'spectacular', 'camera', 'put', 'sim', 'card', 'issu', 'get', 'work', 'call', 'even', 'work', 'lot', 'peopl', 'onlin', 'said', 'would', 'must', 'love', 'window', 'phone', 'want', 'phone', 'i', 'use', 'sever', 'year', 'love', 'coupl', 'accessori', 'phone', 'microsoft', 'well', 'got', 'display', 'dock', 'free', 'microsoft', 'run', 'promot', 'cool', 'littl', 'devic', 'turn', 'phone', 'laptop', 'use', 'hdmi', 'featur', 'phone', 'great', 'phone', 'awesom', 'display', 'huge', 'realli', 'good', 'watch', 'awesom', 'phone'], ['want', 'money', 'back', 'fake', 'phonei', 'not', 'use', 'week', 'chang', 'week', 'chang', 'sim', 'card', 'provid', 'nano', 'sim', 'cardsand', 'day', 'look', 'phone', 'isnot', 'work', 'good', 'problem', 'signaland', 'not', 'sim', 'card', 'power', 'bateri', 'not', 'charg', 'goodpow', 'bateri', 'die', 'fastreali', 'pay', 'today', 'refund', 'week', 'wat', 'make', 'bad', 'kill', 'good', 'not', 'enderstern'], ['phone', 'not', 'new', 'describ', 'know', 'bought', 'anoth', 'new', 'one', 'direct', 'microsoft', 'know', 'new', 'insid', 'packag', 'suppos', 'look', 'like', 'crash', 'time', 'take', 'batteri', 'unfreez', 'screen', 'broken', 'take', 'case', 'take', 'batteri', 'drop', 'phone', 'unhappi'], ['phone', 'fast', 'take', 'best', 'photo', 'even', 'better', 'wife', 'button', 'like', 'hard', 'time', 'middl', 'action', 'put', 'glass', 'screen', 'protect', 'cover', 'unit', 'unit', 'great', 'need', 'add', 'phone', 'better', 'comput', 'quick', 'internet', 'activ', 'howev', 'detail', 'work', 'need', 'larger', 'sound', 'good', 'phone'], ['phone', 'great', 'brought', 'brazil', 'best', 'camera', 'overal', 'system', 'way', 'faster', 'old'], ['great', 'phone', 'camera', 'fantast', 'tile', 'user', 'interfac', 'allow', 'user', 'quick', 'see', 'inform', 'news', 'weather', 'etc', 'without', 'open', 'app', 'also', 'run', 'smooth', 'also', 'like', 'featur', 'show', 'short', 'clip', 'view', 'pictur', 'take', 'iri', 'scan', 'access', 'phone', 'without', 'enter', 'pin', 'cool', 'need', 'various', 'light', 'condit', 'improv', 'recognit', 'howev', 'great', 'phone', 'not', 'need', 'app'], ['good'], ['great', 'phone', 'like'], ['bought', 'telephon', 'unlock', 'lock', 'wa', 'money', 'back'], ['phone', 'not', 'unlock', 'pleas', 'send', 'activ', 'code', 'pleas', 'thank'], ['deal'], ['realli', 'realli', 'dislik', 'product', 'signal', 'suck', 'slow', 'phone'], ['good', 'phone', 'big', 'improv', 'previous', 'nokia', 'phone'], ['got', 'phone', 'use', 'straight', 'talk', 'previous', 'phone', 'galaxi', 'origin', 'verizon', 'unlock', 'switch', 'straight', 'talk', 'att', 'would', 'never', 'get', 'anyth', 'edg', 'network', 'yrs', 'love', 'lumia', 'day', 'love', 'work', 'smooth', 'lag', 'far', 'sound', 'great', 'screen', 'crisp', 'clear', 'far', 'best', 'phone', 'go', 'pay', 'anoth', 'galaxi', 'straight', 'talk', 'i', 'glad', 'want', 'nice', 'phone', 'like', 'galaxi', 'lg', 'look', 'first'], ['good', 'seller', 'good', 'phone', 'problem', 'phone', 'ship', 'quick', 'polici', 'question', 'answer', 'prompt', 'purchas', 'seller', 'phone', 'littl', 'slower', 'expect', 'lock', 'coupl', 'time', 'still', 'crazi', 'good', 'valu', 'iphon', 'get', 'weird', 'sometim', 'price', 'lumia', 'four', 'star', 'five', 'star', 'seller'], ['phone', 'unlock', 'ask', 'protect', 'recoveri', 'code', 'not', 'know', 'get', 'recoveri', 'code', 'phone'], ['sophist'], ['first', 'window', 'phone', 'not', 'user', 'friend', 'end', 'give', 'away'], ['excel'], ['love', 'happi', 'nokia', 'last', 'phone', 'samsung'], ['camera', 'phone', 'best', 'camera', 'ever', 'seen', 'easili', 'say', 'camera', 'better', 'camera', 'galaxi', 'edg', 'sure'], ['yeah', 'love', 'phone', 'camera', 'nice', 'bigger', 'screen', 'without', 'fork', 'samsung', 'iphon', 'show', 'age', 'i', 'bought', 'bodi', 'glove', 'phone', 'protector', 'make', 'sure', 'get', 'screen', 'protector', 'though', 'easi', 'scratch', 'big', 'screen', 'male', 'phone', 'cost', 'nz', 'singl', 'sim', 'model'], ['happi', 'phone', 'size', 'right', 'screen', 'bright', 'sharp'], ['great', 'phone', 'camera', 'fantast', 'tile', 'user', 'interfac', 'allow', 'user', 'quick', 'see', 'inform', 'news', 'weather', 'etc', 'without', 'open', 'app', 'also', 'run', 'smooth', 'also', 'like', 'featur', 'show', 'short', 'clip', 'view', 'pictur', 'take', 'iri', 'scan', 'access', 'phone', 'without', 'enter', 'pin', 'cool', 'need', 'various', 'light', 'condit', 'improv', 'recognit', 'howev', 'great', 'phone', 'not', 'need', 'app'], ['amaz'], ['good'], ['great'], ['clip', 'hold', 'phone', 'place', 'realli', 'tight', 'strong', 'enough', 'grasp', 'not', 'feel', 'phone', 'fall', 'place', 'phone', 'tilt', 'deep', 'enough', 'angl', 'tend', 'flop', 'way', 'lock', 'posit', 'would', 'much', 'stronger', 'leg', 'flexibl', 'enough', 'mold', 'still', 'maintain', 'strong', 'lock', 'downsid', 'took', 'almost', 'month', 'ship', 'would', 'paid', 'similar', 'item', 'ship', 'not', 'long'], ['look', 'good', 'fit', 'snug', 'around', 'news', 'realli', 'bad', 'far', 'i', 'concern', 'case', 'charg', 'cord', 'not', 'four', 'iphon', 'cord', 'one', 'work', 'one', 'car', 'two', 'home', 'use', 'one', 'cord', 'gave', 'keep', 'take', 'phone', 'case', 'charg', 'phone', 'case', 'booster', 'batteri', 'not', 'charg', 'never'], ['work', 'paint', 'chip', 'case', 'look', 'bad', 'job', 'recharg', 'batteri', 'though', 'also', 'use', 'differ', 'charger', 'one', 'charg', 'cabl', 'lay', 'around'], ['work', 'great', 'extend', 'batteri', 'two', 'day', 'without', 'charg'], ['mophi', 'much', 'attract', 'use', 'better', 'materi', 'feel', 'better', 'especi', 'like', 'led', 'batteri', 'strength', 'indic', 'bottom'], ['work', 'great'], ['great', 'product', 'kool', 'new', 'design'], ['everyth', 'ok', 'expect'], ['work', 'great'], ['actor', 'i', 'citi', 'day', 'run', 'around', 'audit', 'go', 'see', 'shoot', 'mophi', 'enabl', 'amount', 'batteri', 'extra', 'inconveni', 'total', 'recommend', 'someon', 'go'], ['us', 'use', 'outdat', 'phone', 'case', 'look', 'new', 'work', 'great'], ['love', 'thing', 'small', 'enough', 'fit', 'pocket', 'charg', 'iphon', 'pretti', 'fast', 'order', 'two'], ['cheap', 'good', 'phone'], ['good'], ['good', 'price', 'amost', 'buy', 'one', 'prime', 'phone', 'much', 'better', 'thought', 'especi', 'googl', 'oper', 'love'], ['second', 'moto', 'g', 'play', 'spoken', 'ip', 'provid', 'twice', 'verizon', 'phone', 'pc', 'abil', 'stream', 'channel', 'like', 'amazon', 'netflix', 'turn', 'wifi', 'phone', 'hous', 'short', 'turn', 'wifi', 'pc', 'stream', 'work', 'perfect', 'turn', 'slow', 'pc', 'slow', 'stream', 'pc', 'speed', 'test', 'wifi', 'practic', 'noth', 'tech', 'look', 'verizon', 'scratch', 'head', 'explan', 'peopl', 'visit', 'cell', 'phone', 'wifi', 'problem', 'total', 'confus', 'also', 'not', 'abl', 'get', 'answer', 'motorola', 'give', 'not', 'time', 'deal', 'give', 'two', 'cup', 'string'], ['suppos', 'budget', 'phone', 'good', 'job', 'except', 'coupl', 'notabl', 'annoy', 'i', 'would', 'give', 'though', 'prime', 'exclus', 'factor', 'annoy', 'not', 'even', 'intrus', 'least', 'first', 'annoy', 'stutter', 'audio', 'switch', 'earphon', 'speakerphon', 'basic', 'get', 'audio', 'stutter', 'audio', 'return', 'full', 'volum', 'cut', 'normal', 'audio', 'return', 'last', 'second', 'appar', 'typic', 'play', 'accord', 'publish', 'review', 'site', 'second', 'annoy', 'display', 'wake', 'aka', 'breath', 'alert', 'second', 'period', 'instead', 'second', 'normal', 'android', 'phone', 'even', 'moto', 'g', 'version', 'second', 'not', 'enough', 'read', 'notif', 'let', 'alon', 'respond', 'unless', 'prepar', 'wake', 'phone', 'fulli', 'bit', 'stutter', 'display', 'not', 'get', 'fulli', 'bright', 'go', 'moto', 'famili', 'close', 'stock', 'android', 'i', 'would', 'still', 'get', 'one', 'moto', 'not', 'play', 'especi', 'mayb', 'next', 'time', 'said', 'done', 'work', 'well', 'primari', 'purpos', 'got', 'android', 'smartphon', 'run', 'googl', 'hangout', 'use', 'googl', 'voic', 'number', 'call', 'home'], ['everyth', 'need', 'open', 'sim', 'use', 'foreign', 'countri', 'ad', 'not', 'obtrus', 'phone', 'much', 'faster', 'moto', 'replac', 'camera', 'much', 'better', 'ad', 'memori', 'make', 'use', 'lot', 'app', 'easier', 'adequ', 'batteri', 'life', 'lifestyl', 'bargain'], ['great', 'product'], ['great', 'phone', 'good', 'price', 'beginn'], ['absolut', 'shock', 'good', 'phone', 'old', 'phone', 'samsung', 'thought', 'i', 'would', 'move', 'brand', 'slow', 'bloatwar', 'etc', 'terrif', 'surpris', 'purchas', 'moto', 'play', 'everyth', 'need', 'great', 'batteri', 'life', 'work', 'perfect', 'servic', 'reason', 'fast', 'sharp', 'look', 'know', 'camera', 'phone', 'cost', 'expect', 'not', 'see', 'go', 'back', 'samsung', 'moto', 'new', 'brand', 'realli', 'terrif', 'phone', 'far'], ['wow', 'amaz', 'devic'], ['own', 'number', 'moto', 'phone', 'past', 'year', 'origin', 'moto', 'x', 'gen', 'moto', 'g', 'gen', 'moto', 'g', 'gen', 'moto', 'g', 'play', 'best', 'bunch', 'far', 'moto', 'g', 'gen', 'play', 'not', 'person', 'use', 'phone', 'everyth', 'not', 'play', 'game', 'billion', 'app', 'keep', 'check', 'everi', 'minut', 'like', 'peopl', 'use', 'main', 'text', 'call', 'listen', 'music', 'audio', 'phone', 'sound', 'better', 'via', 'headphon', 'moto', 'list', 'better', 'lumia', 'samsung', 'galaxi', 'lg', 'tri', 'foobar', 'lossless', 'file', 'great', 'treat', 'power', 'mid', 'price', 'jvc', 'iem', 'well', 'other', 'includ', 'audio', 'techinca', 'fine', 'also', 'attach', 'via', 'otg', 'cabl', 'play', 'support', 'work', 'well', 'chord', 'mojo', 'role', 'overal', 'perform', 'audio', 'good', 'experienc', 'late', 'via', 'headphon', 'except', 'low', 'bass', 'breakup', 'realli', 'deep', 'sub', 'bass', 'moder', 'volum', 'know', 'fart', 'type', 'bass', 'get', 'teeni', 'built', 'amp', 'ask', 'handl', 'fine', 'regular', 'music', 'not', 'feed', 'drum', 'bass', 'type', 'lot', 'super', 'low', 'synthes', 'bass', 'great', 'extern', 'help', 'yup', 'clear', 'weight', 'bulk', 'penalti', 'carri', 'mojo', 'pocket', 'walk', 'not', 'worth', 'pocket', 'play', 'exhibit', 'bizarr', 'behavior', 'pull', 'play', 'pocket', 'unlock', 'screen', 'swipe', 'chang', 'album', 'foobar', 'press', 'side', 'screen', 'lock', 'button', 'reinsert', 'phone', 'pocket', 'case', 'result', 'differ', 'track', 'start', 'play', 'receiv', 'call', 'pull', 'phone', 'pocket', 'unhook', 'headphon', 'put', 'phone', 'ear', 'whole', 'phone', 'power', 'okay', 'let', 'us', 'see', 'screen', 'lock', 'diagram', 'solv', 'problem', 'set', 'one', 'also', 'note', 'screen', 'lock', 'time', 'second', 'think', 'low', 'go', 'past', 'day', 'odd', 'behavior', 'continu', 'select', 'album', 'start', 'play', 'lock', 'screen', 'whoa', 'rhythmic', 'phone', 'dial', 'tone', 'time', 'walk', 'step', 'thought', 'song', 'phone', 'rhythmic', 'dial', 'okay', 'hmm', 'anoth', 'occas', 'open', 'messag', 'app', 'nowher', 'huge', 'hamburg', 'emoticon', 'flap', 'arm', 'show', 'way', 'get', 'rid', 'even', 'though', 'colorado', 'not', 'partak', 'green', 'stuff', 'haha', 'go', 'hold', 'phone', 'hand', 'least', 'second', 'put', 'back', 'pocket', 'see', 'help', 'not', 'back', 'everyth', 'els', 'phone', 'truli', 'like', 'main', 'motiv', 'get', 'function', 'band', 'mhz', 'mobil', 'live', 'area', 'cell', 'strength', 'low', 'home', 'store', 'near', 'lumia', 'work', 'great', 'band', 'penetr', 'build', 'provid', 'usabl', 'signal', 'case', 'regular', 'lte', 'would', 'not', 'phone', 'margin', 'better', 'not', 'band', 'work', 'distanc', 'specif', 'store', 'time', 'get', 'dairi', 'section', 'signal', 'gone', 'radio', 'wise', 'old', 'lumia', 'phone', 'excel', 'phone', 'overal', 'price', 'realli', 'competit', 'unless', 'wish', 'invok', 'tier', 'chines', 'maker', 'littl', 'long', 'term', 'reput', 'us', 'ad', 'intrus', 'anoth', 'notif', 'banner', 'lock', 'screen', 'nowher', 'near', 'bad', 'tri', 'view', 'websit', 'phone', 'get', 'mani', 'ad', 'scroll', 'read', 'still', 'dial', 'issu', 'place', 'phone', 'back', 'pocket', 'track', 'notic', 'wear', 'synthet', 'materi', 'like', 'sport', 'short', 'top', 'less', 'wear', 'jean', 'lead', 'believ', 'static', 'may', 'go', 'strong', 'front', 'truli', 'fantast', 'deal', 'averag', 'budget', 'price', 'phone'], ['love', 'phone', 'great', 'sound', 'batteri', 'life'], ['love', 'price'], ['motorola', 'x', 'pure', 'like', 'hardwar', 'minim', 'interfer', 'stock', 'android', 'firmwar', 'play', 'lock', 'screen', 'ad', 'seem', 'like', 'first', 'phone', 'year', 'old', 'start', 'set', 'phone', 'went', 'creat', 'restrict', 'profil', 'found', 'guest', 'user', 'restrict', 'profil', 'complet', 'remov', 'call', 'motorola', 'support', 'stump', 'version', 'multipl', 'profil', 'enabl', 'stock', 'cust', 'svc', 'also', 'unabl', 'determin', 'version', 'phone', 'profil', 'disabl', 'look', 'like', 'good', 'hardwar', 'price', 'not', 'usabl', 'purpos', 'without', 'restrict', 'profil'], ['seem', 'fine', 'overal', 'use', 'week', 'complaint', 'far', 'slight', 'buzz', 'hear', 'i', 'listen', 'someon', 'talk', 'side', 'listen', 'ring', 'call', 'updat', 'use'], ['love', 'everyth', 'phone', 'best', 'deal', 'town'], ['great', 'phone', 'work', 'well', 'fast', 'microsd', 'card', 'slot', 'memori', 'expans', 'i', 'use', 'cricket', 'decent', 'size', 'not', 'work', 'fast', 'without', 'much', 'plenti', 'space', 'contain', 'microsd', 'card', 'slot', 'easili', 'increas', 'not', 'notif', 'light', 'believ', 'due', 'moto', 'display', 'softwar', 'would', 'nice', 'see', 'notif', 'without', 'phone'], ['bought', 'phone', 'wife', 'along', 'sim', 'card', 'setup', 'line', 'old', 'number', 'port', 'ram', 'thing', 'happen', 'audio', 'phone', 'neat', 'featur', 'android', 'paperwork', 'phone', 'setup', 'took', 'longer', 'impress', 'network', 'not', 'plan', 'replac', 'phone', 'may', 'use', 'wife', 'phone'], ['simpli', 'not', 'turn', 'spent', 'dollar', 'phone', 'not', 'work', 'day', 'one'], ['got', 'tire', 'give', 'appl', 'money', 'decid', 'switch', 'iphon', 'afford', 'android', 'phone', 'like', 'amazon', 'lot', 'consid', 'blu', 'i', 'verizon', 'could', 'not', 'announc', 'play', 'look', 'review', 'compar', 'phone', 'handl', 'android', 'vs', 'phone', 'stop', 'would', 'not', 'know', 'realli', 'experi', 'switch', 'io', 'easi', 'pleas', 'surpris', 'phone', 'oper', 'within', 'coupl', 'hour', 'within', 'coupl', 'day', 'fair', 'phone', 'like', 'size', 'littl', 'bigger', 'iphon', 'not', 'much', 'transit', 'not', 'want', 'big', 'phone', 'screen', 'resolut', 'great', 'except', 'direct', 'sunlight', 'not', 'care', 'placement', 'button', 'side', 'kept', 'turn', 'screen', 'tri', 'adjust', 'volum', 'batteri', 'life', 'excel', 'realli', 'like', 'quick', 'charg', 'deal', 'breaker', 'laggi', 'memori', 'constant', 'full', 'play', 'game', 'card', 'game', 'would', 'slow', 'phone', 'use', 'confer', 'call', 'speakerphon', 'move', 'app', 'send', 'text', 'messag', 'look', 'phone', 'number', 'lag', 'bad', 'made', 'decis', 'send', 'back', 'deal', 'not', 'gold', 'standard', 'phone', 'not', 'deal', 'much', 'said', 'like', 'phone', 'overal', 'i', 'upgrad', 'moto', 'slight', 'bigger', 'like', 'processor', 'much', 'faster', 'play', 'play', 'great', 'phone', 'high', 'recommend', 'peopl', 'not', 'demand', 'phone', 'tri', 'much', 'budget', 'phone', 'negat', 'reflect', 'phone'], ['yeah', 'cheap', 'mean', 'bad', 'camera', 'poor', 'perform', 'weird', 'glitch', 'like', 'googl', 'freez', 'requir', 'reboot', 'featur', 'like', 'smart', 'lock', 'trust', 'place', 'not', 'work', 'etc', 'phone', 'good', 'batteri', 'life', 'cost', 'ad', 'frustrat', 'experi', 'never', 'use', 'high', 'end', 'phone', 'not', 'notic', 'differ', 'appreci', 'basic', 'stock', 'android', 'phone', 'kind', 'aw', 'i', 'return', 'mine'], ['great', 'phone'], ['new', 'world', 'easi', 'use'], ['continu', 'review', 'right', 'smart', 'phone', 'given', 'noth', 'hour', 'grief', 'learn', 'way', 'around', 'devic', 'give', 'layman', 'pictur', 'experi', 'rate', 'junctur', 'base', 'most', 'lack', 'given', 'motorola', 'custom', 'appar', 'misinform', 'dispens', 'accept', 'phone', 'verizon', 'least', 'i', 'discov', 'motorola', 'say', 'compat', 'verizon', 'wireless', 'not', 'tri', 'set', 'home', 'visit', 'verizon', 'store', 'techi', 'tri', 'half', 'hour', 'final', 'quit', 'say', 'not', 'phone', 'verizon', 'research', 'issu', 'via', 'googl', 'home', 'yes', 'one', 'believ', 'connect', 'verizon', 'one', 'statement', 'verizon', 'motorola', 'tri', 'come', 'agreement', 'cooper', 'sinc', 'new', 'phone', 'came', 'may', 'not', 'agre', 'cooper', 'call', 'verizon', 'via', 'phone', 'deal', 'issu', 'one', 'person', 'could', 'hard', 'speak', 'english', 'clear', 'told', 'need', 'get', 'sim', 'visit', 'best', 'buy', 'got', 'return', 'recal', 'verizon', 'number', 'still', 'could', 'not', 'get', 'internet', 'even', 'make', 'call', 'later', 'call', 'got', 'anoth', 'gentleman', 'inform', 'password', 'locat', 'one', 'els', 'got', 'net', 'unfortun', 'wifi', 'inform', 'limit', 'use', 'sinc', 'verizon', 'wifi', 'play', 'piggyback', 'verizon', 'go', 'set', 'select', 'wifi', 'verizon', 'wifi', 'outsid', 'wifi', 'area', 'phone', 'not', 'get', 'internet', 'one', 'visit', 'nice', 'restaur', 'offic', 'depot', 'stapl', 'advertis', 'free', 'wifi', 'mean', 'set', 'phone', 'wifi', 'show', 'dropdown', 'window', 'not', 'charg', 'phone', 'time', 'entic', 'custom', 'thus', 'phone', 'not', 'influenc', 'local', 'wifi', 'set', 'carrier', 'verizon', 'sprint', 'tracfon', 'etc', 'not', 'work', 'without', 'carrier', 'even', 'though', 'not', 'verizon', 'custom', 'cell', 'phone', 'use', 'wifi', 'cell', 'phone', 'get', 'beyond', 'verizon', 'whatev', 'wifi', 'signal', 'reli', 'carrier', 'thus', 'switch', 'verizon', 'wifi', 'result', 'far', 'verizon', 'not', 'accept', 'wireless', 'servic', 'tracfon', 'not', 'work', 'beyond', 'phone', 'call', 'not', 'good', 'enough', 'earlier', 'decid', 'call', 'tracfon', 'carrier', 'like', 'sprint', 'other', 'said', 'could', 'use', 'phone', 'system', 'via', 'byop', 'bring', 'phone', 'offer', 'sinc', 'verizon', 'would', 'not', 'let', 'trackfon', 'assign', 'new', 'number', 'though', 'not', 'tell', 'number', 'show', 'best', 'thing', 'trackfon', 'phone', 'cost', 'level', 'want', 'chose', 'even', 'cheaper', 'plan', 'not', 'verizon', 'i', 'not', 'go', 'play', 'game', 'talk', 'forev', 'still', 'not', 'internet', 'shock', 'motorola', 'amazon', 'bought', 'not', 'includ', 'instruct', 'booklet', 'nada', 'would', 'help', 'yes', 'know', 'may', 'abl', 'read', 'info', 'net', 'motorola', 'site', 'still', 'not', 'instruct', 'book', 'help', 'later', 'final', 'found', 'user', 'guid', 'via', 'googl', 'search', 'help', 'amazon', 'motorola', 'page', 'print', 'though', 'would', 'booklet', 'thank', 'lot', 'motorola', 'lack', 'help', 'tracfon', 'recogn', 'new', 'phone', 'previous', 'cell', 'automat', 'transfer', 'contact', 'older', 'phone', 'newer', 'one', 'not', 'transfer', 'never', 'much', 'grief', 'get', 'cell', 'phone', 'work', 'grant', 'smart', 'phone', 'android', 'still', 'updat', 'one', 'puzzlement', 'low', 'volum', 'sound', 'come', 'phone', 'listen', 'call', 'held', 'near', 'ear', 'could', 'hard', 'hear', 'person', 'end', 'even', 'though', 'set', 'highest', 'volum', 'took', 'best', 'buy', 'explain', 'phone', 'place', 'ear', 'yea', 'help', 'still', 'low', 'shown', 'put', 'speaker', 'multipli', 'volum', 'make', 'easier', 'hear', 'whether', 'not', 'one', 'need', 'place', 'next', 'ear', 'not', 'problem', 'solv', 'though', 'not', 'place', 'former', 'cell', 'phone', 'ear', 'clear', 'hear', 'next', 'problem', 'upload', 'pictur', 'desktop', 'digit', 'camera', 'upload', 'pictur', 'comput', 'desktop', 'simpli', 'hook', 'cabl', 'camera', 'comput', 'turn', 'camera', 'negoti', 'pictur', 'hook', 'appropri', 'cabl', 'camera', 'noth', 'went', 'comput', 'anoth', 'problem', 'solv', 'camera', 'not', 'easi', 'digit', 'camera', 'addit', 'snafu', 'cabl', 'not', 'standard', 'buy', 'one', 'special', 'moto', 'problem', 'solv', 'realli', 'search', 'answer', 'one', 'answer', 'sever', 'actual', 'work', 'i', 'includ', 'may', 'find', 'frustrat', 'still', 'turn', 'pc', 'need', 'recogn', 'moto', 'g', 'play', 'order', 'upload', 'pictur', 'involv', 'moto', 'g', 'driver', 'call', 'moto', 'devic', 'manag', 'type', 'googl', 'taken', 'free', 'download', 'go', 'direct', 'request', 'still', 'not', 'home', 'still', 'not', 'upload', 'pictur', 'one', 'thing', 'connect', 'phone', 'pc', 'need', 'go', 'top', 'phone', 'pull', 'use', 'finger', 'menu', 'bar', 'list', 'usb', 'option', 'tap', 'statement', 'taken', 'window', 'give', 'option', 'like', 'charg', 'ptp', 'mtp', 'choos', 'ptp', 'mode', 'emul', 'digit', 'camera', 'allow', 'comput', 'oper', 'system', 'take', 'inform', 'pictur', 'number', 'pictur', 'appear', 'desktop', 'easili', 'take', 'come', 'actual', 'get', 'onto', 'internet', 'cell', 'via', 'tracfon', 'verizon', 'i', 'sure', 'i', 'jump', 'spent', 'hour', 'patient', 'fellow', 'tracfon', 'carrier', 'hope', 'use', 'phone', 'valiant', 'attempt', 'conclud', 'phone', 'not', 'work', 'tracfon', 'though', 'expect', 'pronounc', 'phone', 'defect', 'not', 'know', 'els', 'also', 'visit', 'verizon', 'wireless', 'cheapest', 'cell', 'plan', 'allow', 'get', 'internet', 'cost', 'plus', 'fee', 'tax', 'read', 'also', 'verizon', 'could', 'not', 'get', 'phone', 'work', 'say', 'motorola', 'decid', 'get', 'internet', 'usabl', 'smart', 'phone', 'tracfon', 'abl', 'get', 'plan', 'not', 'count', 'fee', 'tax', 'yes', 'googl', 'amazon', 'voic', 'see', 'want', 'tracfon', 'true', 'not', 'live', 'phone', 'use', 'similar', 'pc', 'home', 'tracfon', 'basic', 'plan', 'not', 'allow', 'lot', 'minut', 'month', 'recal', 'correct', 'alway', 'minut', 'still', 'bargain', 'compar', 'major', 'carrier', 'case', 'close'], ['good', 'articl', 'recommend', 'good', 'function'], ['i', 'product', 'three', 'day', 'i', 'read', 'review', 'phone', 'built', 'expect', 'prior', 'get', 'phone', 'first', 'i', 'differ', 'samsung', 'devic', 'year', 'howev', 'price', 'point', 'ram', 'unlock', 'phone', 'dual', 'sim', 'micro', 'nano', 'hard', 'like', 'bloatwear', 'devic', 'run', 'smooth', 'overh', 'issu', 'fast', 'camera', 'great', 'ask', 'i', 'happi', 'made', 'switch', 'moto', 'plusaft', 'use', 'phone', 'camera', 'featur', 'holiday', 'say', 'phone', 'exceed', 'expect'], ['like', 'mani', 'other', 'troubl', 'activ', 'phone', 'verizon', 'via', 'usb', 'charg', 'cord', 'difficult', 'get', 'difficult', 'get', 'motorola', 'sent', 'replac', 'cord', 'also', 'not', 'fit', 'proper', 'way', 'short', 'use', 'even', 'fit', 'cord', 'come', 'feet', 'use', 'either', 'cord', 'would', 'quick', 'damag', 'phone', 'not', 'fit', 'snug', 'phone', 'like', 'pictur', 'either', 'not', 'use', 'phone', 'enough', 'realli', 'review', 'everyth', 'not', 'good', 'start', 'anyon', 'els', 'problem', 'cord', 'not', 'fit', 'proper', 'send', 'phone', 'problem', 'i', 'done', 'fact', 'motorola', 'sent', 'inch', 'cord', 'replac', 'foot', 'cord', 'not', 'give', 'confid', 'motorola', 'first', 'motorola', 'phone', 'may', 'replac', 'phone', 'charg', 'cord', 'still', 'difficult', 'put', 'take', 'phone', 'i', 'ever', 'cord', 'old', 'phone', 'fit', 'great', 'i', 'not', 'sure', 'problem', 'also', 'notic', 'port', 'moto', 'phone', 'not', 'look', 'see', 'two', 'metal', 'dot', 'one', 'not', 'visibl', 'not', 'know', 'mean', 'would', 'prefer', 'consist', 'clear', 'someth', 'not', 'decid', 'keep', 'phone', 'use', 'cord', 'go', 'hassl', 'return', 'find', 'anoth', 'phone'], ['product', 'appar', 'not', 'work', 'sprint', 'un', 'abl', 'activ'], ['nice', 'price'], ['not', 'buy', 'phone', 'exist', 'sprint', 'plan', 'sprint', 'consid', 'prepaid', 'phone', 'not', 'support', 'mani', 'q', 'peopl', 'rais', 'problem', 'problem', 'real', 'phone', 'go', 'back', 'amazon', 'refund'], ['good', 'phone'], ['love', 'cell', 'work', 'fine', 'sprint', 'account', 'happi', 'far'], ['great', 'phone', 'realli', 'fast', 'simpl', 'design', 'price', 'think', 'good', 'deal'], ['motorola', 'becom', 'afford', 'without', 'lack', 'featur', 'processor', 'speed', 'increas', 'along', 'sleek', 'love'], ['love', 'phone', 'intuit', 'found', 'smart', 'enough', 'smart', 'phone', 'tech', 'impress', 'price', 'function', 'outstand', 'famili', 'product', 'look', 'phone', 'replac', 'option', 'bravo', 'motorola'], ['great', 'smart', 'phone', 'excel', 'batteri', 'life'], ['phone', 'not', 'not', 'tradit', 'led', 'notif', 'light', 'alert', 'new', 'text', 'messag', 'miss', 'call', 'etc', 'instead', 'softwar', 'featur', 'call', 'moto', 'display', 'dim', 'puls', 'display', 'instead', 'unintuit', 'thing', 'i', 'seen', 'great', 'phone', 'softwar', 'experi', 'otherwis', 'not', 'sure', 'thought', 'remov', 'standard', 'consum', 'featur', 'smartphon', 'replac', 'arguabl', 'wors', 'proprietari', 'one', 'good', 'design', 'choic', 'feedback', 'offici', 'given', 'consum', 'ask', 'might', 'motorola', 'would', 'say', 'not', 'like', 'not', 'use', 'led', 'sever', 'generat', 'phone'], ['ok', 'i', 'moto', 'plus', 'storag', 'ram', 'hour', 'not', 'go', 'extens', 'review', 'thing', 'i', 'build', 'feel', 'phone', 'good', 'not', 'super', 'premium', 'like', 'phone', 'still', 'fit', 'tight', 'uniform', 'gap', 'around', 'screen', 'back', 'cover', 'anyth', 'back', 'cover', 'snap', 'without', 'problem', 'phone', 'look', 'well', 'android', 'system', 'take', 'almost', 'storag', 'leav', 'user', 'show', 'mb', 'ramth', 'button', 'power', 'volum', 'feel', 'great', 'make', 'nice', 'littl', 'clicki', 'feel', 'push', 'power', 'button', 'textur', 'easi', 'way', 'feel', 'differ', 'finger', 'print', 'scanner', 'use', 'although', 'not', 'serv', 'button', 'anyth', 'wake', 'phone', 'unlock', 'super', 'would', 'estim', 'second', 'faster', 'far', 'finger', 'print', 'scanner', 'great', 'way', 'better', 'screen', 'look', 'great', 'full', 'hd', 'color', 'warm', 'look', 'white', 'not', 'blue', 'look', 'samsung', 'phone', 'full', 'inch', 'display', 'yes', 'button', 'screen', 'go', 'away', 'certain', 'app', 'give', 'full', 'screen', 'use', 'like', 'watch', 'video', 'sound', 'good', 'although', 'one', 'front', 'face', 'speaker', 'top', 'loud', 'qualiti', 'excel', 'call', 'iphon', 'two', 'three', 'feet', 'away', 'phone', 'speaker', 'moto', 'plus', 'sign', 'feedback', 'echo', 'indic', 'excel', 'job', 'nois', 'cancel', 'iphon', 'howev', 'sound', 'like', 'horror', 'ui', 'user', 'interfac', 'slick', 'basic', 'android', 'fast', 'respons', 'moto', 'gestur', 'work', 'well', 'far', 'doubl', 'twist', 'camera', 'doubl', 'chop', 'flashlight', 'not', 'test', 'other', 'phone', 'water', 'dust', 'resist', 'not', 'test', 'obvious', 'camera', 'seem', 'great', 'far', 'low', 'light', 'photo', 'look', 'pretti', 'good', 'even', 'pro', 'mode', 'let', 'us', 'tweak', 'aspect', 'camera', 'hold', 'shoot', 'button', 'take', 'photo', 'rapid', 'success', 'pretti', 'cool', 'phone', 'also', 'let', 'us', 'record', 'slow', 'motion', 'video', 'con', 'phone', 'think', 'nfc', 'not', 'big', 'deal', 'person', 'never', 'plan', 'use', 'android', 'pay', 'anytim', 'soon', 'least', 'never', 'bump', 'phone', 'share', 'stuff', 'peopl', 'i', 'nfc', 'past', 'phone', 'year', 'never', 'use', 'except', 'tri', 'see', 'magnetomet', 'compass', 'i', 'not', 'sure', 'full', 'implic', 'not', 'compass', 'gps', 'navig', 'still', 'work', 'reli', 'gps', 'sensor', 'phone', 'also', 'use', 'glonass', 'russian', 'version', 'unit', 'state', 'gps', 'system', 'twice', 'mani', 'satellit', 'mean', 'twice', 'reliabl', 'accur', 'faster', 'compass', 'googl', 'sky', 'map', 'not', 'work', 'correct', 'big', 'bummer', 'heat', 'issu', 'live', 'south', 'texa', 'test', 'phone', 'outsid', 'camera', 'app', 'take', 'dozen', 'photo', 'use', 'never', 'notic', 'temp', 'c', 'sensor', 'c', 'also', 'camera', 'app', 'never', 'start', 'lag', 'updat', 'review', 'anyth', 'chang', 'month', 'two', 'spent', 'time', 'use', 'phone', 'day', 'bump', 'star', 'batteri', 'life', 'good', 'easili', 'last', 'day', 'fact', 'i', 'phone', 'work', 'sinc', 'morn', 'use', 'pretti', 'often', 'pm', 'still', 'left', 'pretti', 'screen', 'look', 'great', 'full', 'sun', 'full', 'bright', 'set', 'problem', 'use', 'phone', 'like'], ['great', 'phone', 'fast', 'easi', 'use', 'fun', 'use'], ['nice', 'phone', 'price', 'point', 'run', 'littl', 'hot', 'time', 'time', 'manag'], ['phone', 'arriv', 'perfect', 'condit', 'real'], ['overal', 'happi', 'far', 'phone', 'like', 'moto', 'gestur', 'activ', 'camera', 'littl', 'kwirk', 'android', 'version', 'need', 'figur', 'thing', 'believ', 'general', 'problem', 'block', 'contact', 'mean', 'send', 'voicemail', 'instal', 'program', 'get', 'rington', 'customis', 'gave', 'troubl', 'remov', 'could', 'not', 'chang', 'rington', 'wife', 'anymor', 'stuck', 'unaud', 'sound', 'delet', 'contact', 'recreat', 'one', 'funni', 'bug', 'technic', 'fingerprint', 'sensor', 'great', 'batteri', 'last', 'forev', 'phone', 'mode', 'day', 'suspect', 'use', 'wifi', 'less', 'lag', 'core', 'say', 'wifi', 'use', 'like', 'ipad', 'option', 'limit', 'data', 'background', 'use', 'awesom', 'menus', 'not', 'hide', 'got', 'zizo', 'case', 'use', 'hook', 'hang', 'car', 'need', 'use', 'gps', 'came', 'tamper', 'screen', 'protector', 'readi', 'sport', 'fall', 'case', 'search', 'look', 'like', 'not', 'instal', 'gb', 'sdcard', 'amaz', 'io', 'user', 'jealous', 'remov', 'star', 'annoy', 'bug', 'android', 'dramat', 'not', 'bypass', 'googl', 'need', 'figur', 'sometim'], ['realli', 'like', 'phone', 'smooth', 'touch', 'finger', 'scanner', 'work', 'well', 'screen', 'great', 'price', 'would', 'hard', 'beat'], ['went', 'back', 'forth', 'decis', 'buy', 'slight', 'expens', 'version', 'go', 'regular', 'moto', 'sinc', 'spec', 'better', 'ram', 'memori', 'better', 'mp', 'camera', 'fingerprint', 'sensor', 'chose', 'gift', 'card', 'bundl', 'checkout', 'phone', 'total', 'tax', 'gift', 'card', 'arriv', 'next', 'day', 'allow', 'buy', 'accessori', 'phone', 'first', 'i', 'long', 'time', 'tracfon', 'user', 'use', 'tf', 'certifi', 'phone', 'tf', 'byop', 'bring', 'phone', 'plan', 'made', 'sens', 'buy', 'unlock', 'phone', 'technolog', 'restrict', 'updat', 'android', 'relat', 'easi', 'purchas', 'byop', 'sim', 'kit', 'walmart', 'use', 'cdma', 'network', 'card', 'mini', 'sim', 'decid', 'not', 'port', 'old', 'tf', 'phone', 'number', 'setup', 'via', 'account', 'tracfon', 'lightn', 'fast', 'within', 'coupl', 'minut', 'phone', 'number', 'minut', 'port', 'phone', 'i', 'happi', 'say', 'regular', 'tracfon', 'minut', 'card', 'tripl', 'howev', 'not', 'believ', 'smartphon', 'design', 'card', 'phone', 'screen', 'show', 'i', 'verizon', 'network', 'order', 'access', 'balanc', 'tracfon', 'app', 'googl', 'play', 'whatev', 'reason', 'unabl', 'get', 'proper', 'wireless', 'signal', 'current', 'router', 'i', 'never', 'use', 'wireless', 'wire', 'ethernet', 'portion', 'i', 'not', 'exact', 'sure', 'sure', 'problem', 'router', 'configur', 'may', 'contact', 'provid', 'work', 'around', 'purchas', 'plugabl', 'usb', 'otg', 'ethernet', 'adaptor', 'via', 'amazon', 'came', 'today', 'immedi', 'work', 'upon', 'odd', 'thing', 'download', 'googl', 'play', 'app', 'app', 'need', 'download', 'upon', 'open', 'basic', 'program', 'customiz', 'option', 'upon', 'startup', 'not', 'recogn', 'internet', 'due', 'data', 'wireless', 'turn', 'guess', 'finish', 'upgrad', 'app', 'get', 'wireless', 'signal', 'buy', 'data', 'minut', 'camera', 'huge', 'plus', 'regular', 'canon', 'digit', 'mp', 'intern', 'camera', 'i', 'alreadi', 'taken', 'bunch', 'pictur', 'say', 'slight', 'better', 'canon', 'storm', 'yesterday', 'abl', 'captur', 'lightn', 'strike', 'video', 'also', 'look', 'good', 'favorit', 'thing', 'far', 'panorama', 'someth', 'canon', 'not', 'previous', 'phone', 'camera', 'not', 'half', 'good', 'resolut', 'addit', 'featur', 'definit', 'say', 'best', 'cellphon', 'camera', 'i', 'ever', 'i', 'hard', 'hear', 'ear', 'volum', 'sound', 'adequ', 'rington', 'radio', 'download', 'video', 'not', 'actual', 'made', 'call', 'yet', 'not', 'comment', 'screen', 'resolut', 'beauti', 'crisp', 'addit', 'wallpap', 'provid', 'one', 'order', 'connect', 'phone', 'recogniz', 'media', 'devic', 'comput', 'must', 'go', 'top', 'pull', 'tab', 'chang', 'charg', 'want', 'use', 'otherwis', 'plug', 'via', 'usb', 'comput', 'not', 'automat', 'show', 'file', 'took', 'figur', 'found', 'answer', 'onlin', 'forum', 'thought', 'i', 'would', 'pass', 'import', 'info', 'abl', 'transfer', 'wallpap', 'addit', 'rington', 'rington', 'must', 'add', 'file', 'direct', 'rington', 'folder', 'otherwis', 'option', 'file', 'make', 'think', 'far', 'i', 'pleas', 'phone', 'recommend', 'tracfon', 'user', 'look', 'compat', 'unlock', 'phone', 'aug', 'decid', 'drop', 'phone', 'star', 'learn', 'secur', 'vulner', 'read', 'articl', 'download', 'app', 'quadroot', 'googleplay', 'despit', 'phone', 'not', 'one', 'list', 'show', 'follow', 'vulnerabl', 'secur', 'purpos', 'alreadi', 'antivirus', 'fact', 'vulner', 'discov', 'februari', 'april', 'long', 'phone', 'launch', 'juli', 'make', 'wonder', 'went', 'ahead', 'use', 'defect', 'chip', 'least', 'instal', 'patch', 'vulner', 'articl', 'state', 'respons', 'qualcomm', 'believ', 'creat', 'patch', 'bug', 'start', 'use', 'fix', 'version', 'factori', 'also', 'distribut', 'patch', 'phone', 'maker', 'oper', 'howev', 'not', 'clear', 'mani', 'compani', 'issu', 'updat', 'custom', 'phone', 'sinc', 'check', 'forum', 'appear', 'awar', 'problem', 'patch', 'releas', 'long', 'go', 'take', 'releas', 'patch', 'alreadi', 'suppos', 'given', 'qualcomm', 'want', 'brows', 'forum', 'go'], ['good', 'qualiti', 'phone', 'gb', 'ram', 'less', 'price'], ['excel', 'price'], ['mine', 'charg', 'like', 'month', 'old', 'th', 'batteri', 'not', 'last', 'half', 'day', 'batteri', 'chang', 'soit', 'throw', 'away', 'phone', 'stop', 'take', 'charg', 'not', 'buy', 'day', 'warranti'], ['great', 'product'], ['realli', 'nice'], ['bought', 'christma', 'gift', 'wife', 'hear', 'disparag', 'comment', 'smart', 'phone', 'i', 'luddit', 'smart', 'phone', 'beyond', 'ken', 'reli', 'review', 'know', 'sort', 'thing', 'moto', 'good', 'deal', 'sinc', 'plus', 'warranti', 'old', 'phone', 'give', 'fit', 'gave', 'earli', 'good', 'thing', 'first', 'phone', 'would', 'not', 'boot', 'flash', 'moto', 'screen', 'tri', 'everyth', 'onlin', 'help', 'chat', 'moto', 'help', 'thing', 'avail', 'moto', 'tech', 'said', 'return', 'amazon', 'quick', 'replac', 'review', 'convinc', 'us', 'first', 'experi', 'fluke', 'stuck', 'plus', 'charg', 'boot', 'right', 'transfer', 'data', 'app', 'old', 'phone', 'quick', 'easi', 'not', 'realiz', 'happen', 'love', 'new', 'phone', 'far', 'old', 'phone', 'sever', 'memori', 'limit', 'giggl', 'see', 'much', 'free', 'space', 'everyth', 'work', 'perfect', 'camera', 'take', 'beauti', 'clear', 'pictur', 'thought', 'price', 'great', 'featur', 'new', 'servic', 'tracfon', 'much', 'better', 'coverag', 'area', 'old', 'virgin', 'mobil', 'i', 'not', 'rant', 'difficulti', 'obtain', 'account', 'number', 'virgin', 'could', 'transfer', 'phone', 'number', 'deserv', 'page', 'not', 'troubl', 'first', 'one', 'would', 'make', 'star', 'would', 'realli', 'ding', 'half', 'star', 'option'], ['read', 'review', 'clark', 'howard', 'recommend', 'moto', 'seal', 'deal', 'wife', 'lost', 'hear', 'sever', 'year', 'ago', 'troubl', 'hear', 'phone', 'let', 'use', 'buy', 'one', 'sinc', 'abl', 'hear', 'clear', 'mine', 'i', 'use', 'moto', 'x', 'sever', 'year', 'love', 'extra', 'memori'], ['great', 'phone', 'realli', 'realli', 'fast', 'feel', 'nice', 'hand', 'lightweight'], ['good', 'work', 'well', 'short', 'time', 'perform', 'well', 'would', 'recommend'], ['look', 'unlock', 'phone', 'quit', 'sometim', 'phone', 'not', 'disappoint', 'mani', 'review', 'say', 'not', 'work', 'verizon', 'simpl', 'activ', 'long', 'verizon', 'lte', 'sim', 'card', 'activ', 'last', 'phone', 'set', 'link', 'explain', 'activ', 'phone', 'verizon', 'would', 'say', 'not', 'hesit', 'purchas', 'phone', 'fast', 'good', 'batteri', 'life', 'realli', 'like', 'bloatwar'], ['gave', 'star', 'ship', 'amaz', 'fastest', 'ever', 'seen', 'unfortun', 'phone', 'not', 'work', 'us', 'cellular', 'even', 'though', 'motorola', 'websit', 'say', 'fulli', 'compat', 'test', 'went', 'way', 'chain', 'us', 'cellular', 'luck', 'return', 'phone', 'get', 'one', 'would', 'work', 'make', 'sure', 'check', 'carrier', 'prior', 'get', 'phone', 'websit', 'not', 'alway', 'accur', 'learn', 'hard', 'way'], ['bought', 'replac', 'old', 'moto', 'g', 'generat', 'love', 'fast', 'huge', 'memori', 'fingerprint', 'scanner', 'awesom', 'fast', 'not', 'figur', 'someon', 'would', 'rather', 'samsung', 'phone', 'great', 'phone', 'price'], ['phone', 'overheat', 'often', 'necessari'], ['phone', 'less', 'week', 'impress', 'far', 'respons', 'instal', 'app', 'issu', 'batteri', 'life', 'excel', 'not', 'stream', 'video', 'audio', 'use', 'frequent', 'appoint', 'miscellan', 'app', 'usag', 'throughout', 'day', 'plug', 'night', 'still', 'batteri', 'left', 'price', 'happi'], ['phone', 'great', 'not', 'believ', 'realli', 'not', 'someon', 'sell', 'phone', 'without', 'charger', 'realli', 'stupid', 'thing', 'ever', 'seen', 'slike', 'sell', 'car', 'without', 'tire'], ['great', 'phone', 'price', 'pros', 'storag', 'ram', 'nice', 'screen', 'qualiti', 'fingerprint', 'reader', 'megapixel', 'camera', 'price', 'bloatwar', 'unlockedcon', 'overh', 'issu', 'poor', 'batteri', 'life', 'nfc', 'knew', 'make', 'purchas', 'compassoveral', 'would', 'high', 'recommend', 'buy', 'phone'], ['excellent', 'smartphon', 'king', 'would', 'better', 'trip', 'colombia', 'not', 'bad', 'advic', 'comentari'], ['ok', 'love', 'phone', 'recent', 'destroy', 'samsung', 'galaxi', 'need', 'replac', 'not', 'like', 'not', 'want', 'commit', 'anoth', 'year', 'contract', 'found', 'littl', 'guy', 'oh', 'man', 'i', 'week', 'still', 'love', 'batteri', 'life', 'great', 'recharg', 'quick', 'deplet', 'love', 'camera', 'slow', 'motion', 'video', 'expert', 'camera', 'mode', 'know', 'els', 'love', 'love', 'fm', 'radio', 'receiv', 'smart', 'phone', 'not', 'disabl', 'listen', 'fm', 'radio', 'without', 'use', 'app', 'use', 'data', 'like', 'iheartradio', 'someth', 'would', 'use', 'true', 'local', 'station', 'not', 'point', 'point', 'manufactur', 'includ', 'radio', 'phone', 'carrier', 'decid', 'disabl', 'protect', 'monopoli', 'data', 'anoth', 'good', 'thing', 'phone', 'unlock', 'use', 'whatev', 'carrier', 'want', 'take', 'abroad', 'use', 'differ', 'countri', 'switch', 'sim', 'card', 'not', 'get', 'behind', 'wife', 'use', 'samsung', 'galaxi', 'love', 'get', 'time', 'replac', 'go', 'one', 'babi', 'see', 'much', 'enjoy', 'may', 'not', 'appreci', 'technic', 'advantag', 'phone', 'other', 'like', 'look', 'form', 'factor', 'interfac', 'short', 'joy', 'use'], ['nice'], ['initi', 'impress', 'moto', 'plus', 'day', 'use', 'pretti', 'older', 'lg', 'one', 'first', 'thing', 'notic', 'larger', 'size', 'compar', 'smaller', 'lg', 'paper', 'differ', 'not', 'seem', 'like', 'much', 'real', 'world', 'experi', 'make', 'somewhat', 'difficult', 'hold', 'handl', 'moto', 'pull', 'store', 'moto', 'front', 'pant', 'pocket', 'difficult', 'well', 'not', 'deal', 'breaker', 'someth', 'get', 'use', 'mani', 'phone', 'seem', 'around', 'size', 'come', 'grip', 'matt', 'back', 'phone', 'somewhat', 'grippi', 'not', 'quit', 'enough', 'prefer', 'use', 'phone', 'without', 'case', 'use', 'case', 'phone', 'main', 'smooth', 'bezel', 'side', 'phone', 'make', 'bit', 'slipperi', 'daili', 'use', 'build', 'qualiti', 'seem', 'top', 'notch', 'phone', 'price', 'rang', 'like', 'back', 'cover', 'easili', 'pri', 'open', 'access', 'sim', 'card', 'micro', 'sim', 'slot', 'includ', 'adapt', 'fit', 'nano', 'sim', 'plus', 'micro', 'sd', 'storag', 'model', 'plenti', 'space', 'file', 'music', 'photo', 'app', 'etc', 'nice', 'see', 'option', 'storag', 'made', 'avail', 'bummer', 'batteri', 'though', 'port', 'micro', 'usb', 'access', 'would', 'prefer', 'headphon', 'jack', 'place', 'bottom', 'charg', 'port', 'screen', 'seem', 'durabl', 'thin', 'bezel', 'side', 'perhap', 'littl', 'thin', 'not', 'deal', 'breaker', 'though', 'slight', 'lip', 'around', 'screen', 'allow', 'place', 'phone', 'flat', 'surfac', 'without', 'concern', 'like', 'speaker', 'top', 'get', 'loud', 'full', 'volum', 'without', 'sound', 'tinni', 'crack', 'play', 'audio', 'howev', 'notic', 'speaker', 'phone', 'not', 'sound', 'rich', 'full', 'came', 'phone', 'call', 'disappoint', 'power', 'volum', 'button', 'right', 'side', 'good', 'clicki', 'power', 'button', 'textur', 'surfac', 'compar', 'smooth', 'surfac', 'volum', 'rocker', 'slight', 'con', 'button', 'place', 'close', 'seem', 'switch', 'placement', 'compar', 'mani', 'phone', 'fingerprint', 'sensor', 'front', 'work', 'except', 'well', 'accur', 'fast', 'probabl', 'twice', 'fast', 'ipad', 'air', 'sensor', 'almost', 'delay', 'work', 'second', 'test', 'wish', 'sensor', 'place', 'back', 'phone', 'perhap', 'moto', 'emblem', 'dimpl', 'person', 'prefer', 'one', 'thing', 'note', 'fingerprint', 'sensor', 'serv', 'purpos', 'unlock', 'phone', 'wish', 'lenovo', 'built', 'featur', 'fingerprint', 'sensor', 'like', 'compani', 'done', 'seem', 'scrimp', 'come', 'marshmallow', 'i', 'impress', 'featur', 'addit', 'custom', 'hand', 'gestur', 'featur', 'exampl', 'moto', 'bring', 'phone', 'seem', 'littl', 'light', 'custom', 'featur', 'compar', 'lg', 'done', 'phone', 'though', 'next', 'bloatwar', 'phone', 'nice', 'lack', 'common', 'app', 'like', 'calcul', 'music', 'player', 'easili', 'remedi', 'download', 'free', 'app', 'play', 'store', 'overal', 'phone', 'oper', 'smooth', 'scroll', 'swipe', 'text', 'switch', 'app', 'text', 'swipe', 'includ', 'googl', 'keyboard', 'app', 'work', 'realli', 'well', 'definit', 'plus', 'phone', 'work', 'like', 'breez', 'qualcomm', 'octa', 'core', 'processor', 'ram', 'tackl', 'task', 'fair', 'well', 'processor', 'casual', 'game', 'work', 'well', 'enough', 'seem', 'thank', 'android', 'featur', 'full', 'hd', 'screen', 'bright', 'vibrant', 'work', 'well', 'enough', 'not', 'rival', 'ole', 'screen', 'samsung', 'like', 'less', 'half', 'price', 'flagship', 'phone', 'not', 'expect', 'i', 'not', 'sure', 'yet', 'well', 'bright', 'broad', 'daylight', 'suspect', 'full', 'bright', 'suffici', 'seem', 'work', 'well', 'advertis', 'nice', 'phone', 'current', 'os', 'storag', 'ram', 'speedi', 'processor', 'full', 'hd', 'screen', 'time', 'secur', 'updat', 'android', 'n', 'virtual', 'free', 'bloatwar', 'price', 'rang', 'realli', 'budget', 'phone', 'person', 'shop', 'list', 'minor', 'con', 'still', 'recommend', 'moto', 'plus', 'anyon', 'look', 'afford', 'phone', 'star'], ['realli', 'nice', 'cellphon', 'work', 'worldwid'], ['order', 'version', 'ram', 'i', 'month', 'feel', 'like', 'use', 'enough', 'give', 'decent', 'review', 'i', 'use', 'quit', 'extens', 'sinc', 'purchas', 'come', 'droid', 'turbo', 'immedi', 'notic', 'chang', 'perform', 'better', 'not', 'bloatwar', 'moto', 'bloatwar', 'actual', 'use', 'not', 'concern', 'slightest', 'batteri', 'life', 'better', 'expect', 'get', 'full', 'day', 'plus', 'casual', 'usag', 'play', 'pokemon', 'go', 'seem', 'burn', 'batteri', 'problem', 'everyon', 'processor', 'quick', 'color', 'screen', 'great', 'feel', 'good', 'hand', 'notic', 'use', 'headphon', 'screen', 'start', 'get', 'glitchi', 'not', 'anyth', 'unless', 'unplug', 'headphon', 'sinc', 'primarili', 'use', 'bluetooth', 'not', 'issu', 'root', 'phone', 'within', 'day', 'own', 'also', 'instal', 'custom', 'recoveri', 'xpose', 'framework', 'i', 'not', 'sure', 'came', 'factori', 'way', 'camera', 'sub', 'par', 'low', 'light', 'situat', 'near', 'imposs', 'captur', 'good', 'light', 'great', 'pictur', 'taken', 'compar', 'turbo', 'camera', 'not', 'hold', 'qualiti', 'wise', 'fingerprint', 'scanner', 'work', 'surpris', 'better', 'anticip', 'compar', 'iphon', 'prefer', 'moto', 'plus', 'motorola', 'lenovo', 'great', 'job', 'phone', 'i', 'excit', 'see', 'els', 'produc', 'price', 'point', 'would', 'high', 'recommend', 'phone', 'anyon'], ['i', 'not', 'sure', 'go', 'sudden', 'screen', 'goe', 'crazi', 'flip', 'sever', 'differ', 'app', 'ask', 'replac', 'thought', 'mayb', 'someth', 'happen', 'first', 'one', 'got', 'second', 'one', 'within', 'month', 'second', 'phone', 'thing'], ['transfer', 'set', 'contact', 'moto', 'e', 'not', 'work', 'due', 'not', 'support', 'latest', 'version', 'android', 'howev', 'i', 'still', 'glad', 'upgrad', 'moto', 'g', 'plus'], ['better', 'expect', 'excel', 'valu', 'fm', 'radio', 'awesom', 'fingerprint', 'scanner', 'great', 'featur', 'would', 'buy', 'glad', 'go', 'instead', 'use', 'samsung', 'consid'], ['awesom', 'beast', 'phone', 'pleas', 'moto', 'plus', 'far', 'not', 'big', 'fear', 'though', 'would', 'never', 'call', 'small', 'especi', 'face', 'price', 'not', 'see', 'find', 'better', 'end', 'user', 'experi', 'os', 'speedi', 'camera', 'capabl', 'come', 'almost', 'zero', 'bloatwar', 'probabl', 'storag', 'space', 'i', 'ever', 'need', 'paid', 'gb', 'version', 'want', 'gb', 'ram', 'help', 'ensur', 'not', 'issu', 'lag', 'road', 'extra', 'seem', 'total', 'worth'], ['let', 'say', 'initi', 'respons', 'phone', 'great', 'thought', 'motorola', 'afford', 'phone', 'lot', 'offer', 'perform', 'great', 'begin', 'soon', 'lot', 'keep', 'mind', 'phone', 'month', 'everi', 'singl', 'app', 'close', 'say', 'unfortun', 'app', 'name', 'not', 'respond', 'give', 'option', 'report', 'issu', 'say', 'infrequ', 'occurr', 'first', 'time', 'time', 'phone', 'said', 'android', 'ui', 'not', 'respond', 'ridicul', 'ask', 'fix', 'i', 'found', 'shut', 'phone', 'littl', 'start', 'back', 'usual', 'give', 'decent', 'amount', 'screen', 'time', 'also', 'phone', 'oper', 'extrem', 'poor', 'batteri', 'fall', 'not', 'low', 'amount', 'batteri', 'tri', 'oper', 'devic', 'charg', 'extrem', 'sporad', 'i', 'not', 'say', 'common', 'problem', 'bash', 'motorola', 'piec', 'junk', 'receiv', 'i', 'tell', 'experi', 'i', 'would', 'like', 'give', 'review', 'phone', 'spec', 'far', 'not', 'chanc', 'tri', 'sinc', 'full', 'week', 'proper', 'work', 'condit', 'not', 'mention', 'clip', 'back', 'cover', 'snap', 'take', 'sim', 'card', 'place', 'anoth', 'phone', 'not', 'real', 'impress'], ['great', 'phone', 'realli', 'realli', 'fast', 'feel', 'nice', 'hand', 'lightweight'], ['good', 'phone', 'good', 'featur', 'like', 'water', 'resist', 'moto', 'remov'], ['think', 'great', 'phone', 'lot', 'featur', 'happi', 'choic'], ['love', 'featur', 'send', 'back', 'known', 'problem', 'ghost', 'screen', 'screen', 'jump', 'way', 'stop', 'shut', 'phone', 'bought', 'moto', 'x', 'pure', 'plus', 'love'], ['best', 'smartphon', 'ever', 'smooth', 'lot', 'space', 'app', 'especi', 'spotifi'], ['updat', 'everyth', 'fine', 'until', 'start', 'use', 'camera', 'phone', 'went', 'outing', 'not', 'abl', 'take', 'video', 'min', 'got', 'soo', 'hot', 'stuck', 'not', 'abl', 'use', 'phone', 'until', 'temperatur', 'drop', 'tri', 'time', 'use', 'camera', 'diff', 'circumst', 'get', 'stuck', 'whenev', 'get', 'hot', 'total', 'unus', 'return', 'disappoint', 'fingerprint', 'sensor', 'cool', 'work', 'everytim', 'perfect', 'perform', 'optimum', 'though', 'weightless', 'feel', 'littl', 'chunkier', 'expect', 'great', 'buy', 'amazon', 'limit', 'time', 'deal', 'ad', 'ram'], ['could', 'not', 'get', 'phone', 'work', 'work', 'fine', 'verizon', 'sim', 'card', 'would', 'not', 'get', 'lte', 'text', 'messag', 'spent', 'hour', 'chat', 'also', 'went', 'store', 'tri', 'differ', 'sim', 'card', 'could', 'not', 'get', 'lte', 'text', 'work', 'plan', 'return', 'phone'], ['good'], ['use', 'phone', 'less', 'month', 'plagu', 'host', 'ill', 'batteri', 'charg', 'charg', 'indic', 'epilept', 'i', 'batteri', 'go', 'minut', 'phone', 'random', 'goe', 'random', 'batteri', 'level', 'even', 'charg', 'phone', 'exhibit', 'ghost', 'screen', 'effect', 'regret', 'buy', 'product', 'certain', 'not', 'worth', 'buy', 'reason', 'get', 'one', 'star', 'not', 'give', 'zero', 'star'], ['far', 'good', 'i', 'phone', 'month', 'happi', 'signific', 'faster', 'screen', 'great', 'batteri', 'life', 'great', 'turbo', 'charg', 'extrem', 'fast', 'not', 'issu', 'phone', 'get', 'hot', 'even', 'case', 'play', 'pull', 'verizon', 'sim', 'pop', 'reboot', 'everyth', 'work', 'i', 'issu', 'voicemail', 'speaker', 'surpris', 'loud', 'realli', 'like', 'stock', 'android', 'nn', 'bloatwar', 'gestur', 'help', 'use', 'doubl', 'chop', 'motion', 'turn', 'flashlight', 'thought', 'may', 'buy', 'wife', 'one', 'christma'], ['two', 'week', 'receiv', 'moto', 'plus', 'devic', 'shut', 'random', 'shut', 'mean', 'screen', 'goe', 'complet', 'black', 'sound', 'may', 'play', 'listen', 'music', 'watch', 'video', 'cut', 'well', 'happen', 'regardless', 'much', 'charg', 'phone', 'may', 'even', 'occur', 'plug', 'charg', 'power', 'cycl', 'devic', 'clear', 'cach', 'partit', 'tri', 'boot', 'safeti', 'mode', 'avail', 'own', 'moto', 'g', 'generat', 'addit', 'nexus', 'extrem', 'disappoint', 'not', 'believ', 'coincid', 'lenovo', 'purchas', 'motorola', 'began', 'slowli', 'phase', 'motorola', 'name', 'buy', 'latest', 'model', 'troubl'], ['start', 'research', 'sub', 'phone', 'alway', 'flagship', 'phone', 'sinc', 'think', 'reason', 'anymor', 'pay', 'alot', 'money', 'phone', 'read', 'review', 'saw', 'spec', 'moto', 'g', 'plus', 'ram', 'hard', 'drive', 'micro', 'sd', 'card', 'slot', 'high', 'resolut', 'screen', 'see', 'sunlight', 'camera', 'laser', 'focus', 'octacor', 'process', 'gestur', 'built', 'os', 'said', 'let', 'us', 'tri', 'go', 'buy', 'money', 'phone', 'came', 'day', 'galaxi', 'note', 'user', 'plug', 'sim', 'card', 'carrier', 'moto', 'g', 'plus', 'instant', 'impress', 'mess', 'issu', 'set', 'new', 'phone', 'load', 'app', 'want', 'account', 'want', 'batteri', 'last', 'day', 'nice', 'smooth', 'far', 'easi', 'use', 'screen', 'crystal', 'clear', 'far', 'love', 'charg', 'realli', 'fast', 'sound', 'qualiti', 'amaz', 'phone', 'averag', 'speaker', 'not', 'bad', 'save', 'not', 'order', 'flagship', 'phone', 'put', 'toward', 'massag', 'chair', 'eye'], ['motorola', 'becom', 'afford', 'without', 'lack', 'featur', 'processor', 'speed', 'increas', 'along', 'sleek', 'love'], ['think', 'worth', 'share', 'stori', 'learn', 'lesson', 'inexpens', 'model', 'vigor', 'phone', 'cell', 'provid', 'mistak', 'low', 'grade', 'phone', 'addit', 'got', 'insur', 'per', 'month', 'cours', 'month', 'phone', 'slowli', 'degrad', 'first', 'bluetooth', 'random', 'disconnect', 'car', 'bluetooth', 'speaker', 'phone', 'ran', 'memori', 'got', 'sd', 'card', 'pictur', 'video', 'call', 'start', 'drop', 'perform', 'kept', 'degrad', 'point', 'took', 'second', 'pull', 'home', 'screen', 'keep', 'close', 'app', 'get', 'perform', 'least', 'reason', 'final', 'enough', 'made', 'insur', 'claim', 'accept', 'deduct', 'replac', 'phone', 'slight', 'lesser', 'model', 'phone', 'escap', 'came', 'much', 'bloatwar', 'carrier', 'could', 'not', 'even', 'instal', 'regular', 'applic', 'newer', 'phone', 'slower', 'origin', 'overal', 'experi', 'quit', 'frustrat', 'decid', 'homework', 'much', 'research', 'phone', 'decid', 'moto', 'pick', 'top', 'unlock', 'model', 'avail', 'juli', 'ram', 'bundl', 'amazon', 'gift', 'card', 'essenti', 'go', 'phone', 'inexpens', 'phone', 'gb', 'avail', 'storag', 'reserv', 'os', 'processor', 'ram', 'make', 'babi', 'scream', 'keep', 'sever', 'applic', 'open', 'time', 'fli', 'without', 'paus', 'camera', 'nice', 'featur', 'phone', 'price', 'point', 'perhap', 'desir', 'featur', 'would', 'imag', 'stabil', 'phone', 'featur', 'start', 'twice', 'cost', 'one', 'pictur', 'much', 'nicer', 'expens', 'vigor', 'phone', 'i', 'use', 'plus', 'fingerprint', 'reader', 'awesom', 'unlock', 'screen', 'train', 'fingerprint', 'reader', 'touch', 'thumb', 'phone', 'instant', 'unlock', 'wick', 'cool', 'two', 'lack', 'plus', 'estim', 'video', 'time', 'phone', 'start', 'record', 'pretti', 'crummi', 'intern', 'speaker', 'work', 'great', 'phone', 'call', 'music', 'sound', 'pretti', 'tinni', 'fair', 'not', 'heard', 'phone', 'whose', 'speaker', 'impress', 'heard', 'better', 'phone', 'said', 'use', 'bluetooth', 'speaker', 'music', 'sound', 'insur', 'not', 'think', 'worth', 'price', 'consid', 'deduct', 'put', 'away', 'month', 'come', 'save', 'cancel', 'crummi', 'insur', 'plan', 'end', 'month', 'i', 'enough', 'save', 'replac', 'phone'], ['nice'], ['realli', 'nice', 'cellphon', 'work', 'worldwid'], ['best', 'phone', 'ever', 'storag', 'great', 'fast', 'unbeliev', 'camera', 'good', 'price', 'compar', 'appl', 'samsung', 'phone'], ['much', 'better', 'origin', 'gen', 'motog', 'screen', 'littl', 'larg', 'text', 'navig', 'one', 'hand', 'kind', 'wish', 'inch', 'smaller', 'screen', 'allow', 'rare', 'screen', 'hang', 'up', 'usual', 'happen', 'mani', 'app', 'open', 'problem', 'love', 'camera', 'becom', 'main', 'camera'], ['realli', 'easi', 'intuit', 'set', 'respons', 'multipl', 'screen', 'easi', 'switch', 'informationgreat', 'speaker', 'music', 'voic', 'not', 'tinni', 'thin', 'keyboard', 'even', 'big', 'finger', 'nice', 'camera', 'good', 'shot', 'style', 'optionsworth', 'ad', 'sd', 'cardoveral', 'great', 'valu'], ['work', 'great', 'surpris', 'app', 'pre', 'instal', 'old', 'phone', 'page', 'page', 'one', 'less', 'one', 'third', 'app', 'pre', 'instal', 'longer', 'live', 'without', 'shake', 'flashlight', 'mode'], ['phone', 'great', 'hang', 'lock', 'differ', 'app', 'also', 'built', 'qualiti', 'around', 'ear', 'peac', 'sharp'], ['i', 'love', 'fantast', 'phone', 'wish', 'nfc', 'could', 'googl', 'pay', 'set', 'command', 'not', 'bother', 'much', 'although', 'slight', 'counter', 'intuit', 'fingerprint', 'sensor', 'not', 'doubl', 'home', 'phone', 'fast', 'super', 'respons', 'take', 'sd', 'card', 'love'], ['excel', 'devic', 'day', 'batteri', 'stun', 'perform', 'budget', 'phone', 'mine', 'root', 'custom', 'kernel', 'even', 'further', 'batteri', 'perform', 'great', 'motorola', 'provid', 'instruct', 'unlock', 'bootload'], ['amaz', 'phone', 'consid', 'price', 'love', 'camera', 'happi', 'custom'], ['free', 'gift', 'card', 'valu', 'item', 'amaz', 'mani', 'unlock', 'cell', 'phone', 'gb', 'storag', 'gb', 'memori', 'cost', 'less', 'not', 'mani', 'sure', 'offer', 'closest', 'thing', 'pure', 'android', 'amaz', 'respons', 'got', 'today', 'equal', 'amaz', 'moto', 'husband', 'happili', 'inherit', 'sinc', 'gb', 'storag', 'gb', 'memori', 'satisfi', 'requir', 'happi', 'purchas', 'high', 'recommend'], ['great', 'phone', 'big', 'improv', 'previous', 'phone', 'huawei', 'ascend', 'mate', 'realli', 'like', 'camera', 'laser', 'focus', 'front', 'face', 'speaker'], ['phone', 'not', 'packag', 'arriv', 'screen', 'protector'], ['took', 'littl', 'bit', 'get', 'use', 'phone', 'use', 'realli', 'like', 'use', 'total', 'wireless', 'servic', 'virgin', 'mobil', 'not', 'allow', 'bring', 'unlock', 'phone', 'switch', 'not', 'troubl', 'get', 'set', 'sound', 'qualiti', 'pretti', 'good', 'thing', 'littl', 'tinni', 'sound', 'not', 'use', 'earphon', 'not', 'buy', 'listen', 'music', 'batteri', 'last', 'day', 'mixtur', 'talk', 'phone', 'text', 'play', 'game', 'social', 'media', 'surf', 'web', 'like', 'bigger', 'screen', 'size', 'complain', 'not', 'abl', 'text', 'one', 'hand', 'not', 'find', 'big', 'deal', 'small', 'hand', 'find', 'comfort', 'love', 'new', 'phone', 'husband', 'jealous'], ['need', 'new', 'phone', 'fit', 'bill', 'got', 'board', 'ram', 'plus', 'camera', 'love'], ['best', 'phone', 'time'], ['excel', 'phone', 'money', 'fast', 'lot', 'memori', 'app', 'photo', 'not', 'choke', 'yet', 'come', 'almost', 'stock', 'android', 'without', 'bunch', 'camera', 'take', 'great', 'pic', 'good', 'light', 'flash', 'sinc', 'imag', 'stabil', 'action', 'shot', 'low', 'light', 'may', 'suffer', 'phone', 'better', 'camera', 'cost', 'twice', 'much', 'like', 'fact', 'phone', 'work', 'almost', 'network', 'allow', 'switch', 'carrier', 'want', 'phone', 'meet', 'need', 'good', 'come'], ['good', 'phone', 'wife', 'broke', 'nexus', 'screen', 'still', 'go', 'strong', 'get', 'littl', 'old', 'not', 'want', 'spend', 'bunch', 'money', 'get', 'nexus', 'fix', 'bought', 'love', 'display', 'size', 'perform', 'qualiti', 'camera', 'good', 'factor', 'price', 'except'], ['great', 'phone', 'far', 'respons', 'visibl', 'lag', 'fingerprint', 'reader', 'reliabl', 'recognit', 'far', 'sound', 'seem', 'fair', 'clear', 'camera', 'start', 'quick', 'not', 'realli', 'push', 'camera', 'pace', 'wife', 'ador', 'play', 'pokemon', 'go', 'stutter', 'lag', 'overh', 'updat', 'use'], ['great', 'product', 'work', 'perfect', 'make', 'differ', 'great', 'camera', 'littl', 'heavi', 'great', 'phone'], ['best', 'budget', 'phone', 'ever'], ['phone', 'premium', 'phone', 'afford', 'price', 'plenti', 'storag', 'well', 'finger', 'print', 'scanner', 'unlock', 'phone', 'coupl', 'month', 'point', 'love', 'charg', 'one', 'phone', 'last', 'morn', 'morn', 'follow', 'day', 'also', 'charg', 'less', 'batteri', 'full', 'less', 'hour', 'astound', 'screen', 'look', 'fantast', 'full', 'bright', 'not', 'realli', 'chang', 'longev', 'batteri', 'thing', 'would', 'chang', 'short', 'root', 'devic', 'obvious', 'notif', 'light', 'phone', 'not', 'activ', 'unless', 'root', 'phone', 'bit', 'bummer', 'devic', 'get', 'bog', 'not', 'close', 'app', 'clean', 'junk', 'phone', 'phone', 'also', 'get', 'realli', 'hot', 'work', 'hard', 'understand', 'someth', 'note', 'speaker', 'lack', 'great', 'batteri', 'lifeawesom', 'display', 'downsidesquick', 'phone', 'even', 'monthsunlock', 'devic', 'mean', 'bloatwar', 'great', 'camerafingerprint', 'scanner', 'usefulcon', 'run', 'hotshould', 'abl', 'use', 'tool', 'lack', 'luster'], ['moto', 'plus', 'great', 'phone', 'replac', 'nexus', 'die', 'nougat', 'upgrad', 'nfc', 'everyth', 'els', 'great', 'great', 'accur', 'finger', 'print', 'scanner', 'actual', 'prefer', 'front', 'good', 'pictur', 'good', 'sound', 'beauti', 'screen', 'perfect', 'size', 'stock', 'android', 'solid', 'build', 'great', 'batteri', 'life', 'last', 'day', 'turbo', 'charg', 'wish', 'phone', 'spent'], ['great', 'product', 'better', 'mani', 'phone', 'market', 'twice', 'price'], ['great', 'phone', 'good', 'qualiti', 'user', 'friend', 'android', 'os'], ['trade', 'samsung', 'galaxi', 'love', 'featur', 'galor', 'unlock', 'took', 'verizon', 'us', 'carrier', 'got', 'activ', 'network', 'european', 'trip', 'took', 'three', 'store', 'slid', 'irish', 'sim', 'work', 'beauti', 'uk', 'abl', 'use', 'local', 'sim', 'phone', 'not', 'even', 'lose', 'app', 'roam', 'charg'], ['awesom', 'beast', 'phone', 'pleas', 'moto', 'plus', 'far', 'not', 'big', 'fear', 'though', 'would', 'never', 'call', 'small', 'especi', 'face', 'price', 'not', 'see', 'find', 'better', 'end', 'user', 'experi', 'os', 'speedi', 'camera', 'capabl', 'come', 'almost', 'zero', 'bloatwar', 'probabl', 'storag', 'space', 'i', 'ever', 'need', 'paid', 'gb', 'version', 'want', 'gb', 'ram', 'help', 'ensur', 'not', 'issu', 'lag', 'road', 'extra', 'seem', 'total', 'worth'], ['plus', 'wife', 'regular', 'amazon', 'version', 'use', 'mine', 'work', 'less', 'like', 'kept', 'month', 'switch', 'phone', 'bc', 'go', 'get', 'fire', 'phone', 'crucial', 'part', 'job', 'overheat', 'drop', 'call', 'low', 'signal', 'sd', 'card', 'say', 'miss', 'sporad', 'card', 'hold', 'import', 'app', 'app', 'would', 'stop', 'work', 'multipl', 'time', 'throughout', 'day', 'plug', 'got', 'ghost', 'touch', 'screen', 'everyth', 'goe', 'crazi', 'gps', 'bad', 'compass', 'coordin', 'use', 'gps', 'get', 'direct', 'camera', 'good', 'crash', 'time', 'day', 'charg', 'batteri', 'time', 'day', 'good', 'phone', 'someon', 'not', 'use', 'often', 'water', 'resist', 'would', 'worth', 'comparison', 'mani', 'walmart', 'phone', 'zte', 'low', 'end', 'blu', 'low', 'end', 'not', 'worth', 'paid', 'month', 'ago', 'lenovo', 'also', 'ruin', 'motorola', 'custom', 'servic', 'charg', 'repair', 'whether', 'fix', 'not', 'even', 'would', 'return', 'soon', 'possibl', 'new', 'updat', 'may', 'correct', 'issu', 'would', 'not', 'hold', 'breath', 'amazon', 'would', 'not', 'even', 'give', 'full', 'refund', 'back', 'even', 'though', 'case', 'protector', 'day', 'not', 'good', 'buy', 'lost', 'call', 'amazon', 'within', 'day', 'recommend', 'spoke', 'motorola', 'took', 'week', 'get', 'back', 'close', 'return', 'window', 'amazon', 'said', 'would', 'extend', 'curtsey', 'allow', 'return', 'reduc', 'rate', 'sinc', 'not', 'return', 'within', 'day', 'told', 'contact', 'get', 'buy', 'phone', 'get', 'better', 'phone'], ['made', 'jump', 'appl', 'iphon', 'glad', 'first', 'realli', 'like', 'phone', 'batteri', 'life', 'almost', 'doubl', 'iphon', 'thought', 'good', 'second', 'screen', 'phone', 'equal', 'not', 'exceed', 'iphon', 'fingerprint', 'unlock', 'scanner', 'work', 'perfect', 'camera', 'spectacular', 'never', 'gotten', 'good', 'photo', 'smart', 'phone', 'alway', 'use', 'dedic', 'digit', 'camera', 'serious', 'stuff', 'phone', 'replac', 'devic', 'phone', 'larger', 'without', 'larg', 'make', 'text', 'far', 'easier', 'iphon', 'cpu', 'moto', 'plus', 'blow', 'away', 'one', 'previous', 'phone', 'rotat', 'sensor', 'work', 'far', 'time', 'iphon', 'would', 'not', 'rotat', 'without', 'addit', 'twist', 'wrist', 'time', 'happi', 'phone', 'believ', 'motorola', 'serious', 'hit', 'phone', 'qualiti', 'best', 'bargain', 'smart', 'phone'], ['nice', 'phone'], ['excellent', 'smartphon', 'king', 'would', 'better', 'trip', 'colombia', 'not', 'bad', 'advic', 'comentari'], ['got', 'one', 'one', 'friend', 'good', 'product', 'fast', 'hang', 'heat', 'camera', 'also', 'quit', 'good', 'not', 'want', 'expens', 'phone', 'someth', 'use', 'day', 'day', 'use', 'got', 'lot', 'app', 'still', 'issu', 'slow', 'anyth', 'like'], ['espect', 'recom'], ['less', 'month', 'usag', 'connect', 'becom', 'loos', 'current', 'almost', 'imposs', 'actual', 'make', 'connect', 'charg', 'phone', 'connect', 'also', 'loos', 'unstabl', 'not', 'possibl', 'connect', 'motorola', 'tech', 'support', 'sinc', 'still', 'warranti', 'option', 'mail', 'phone', 'sever', 'week', 'attempt', 'repair', 'send', 'back', 'sinc', 'phone', 'person', 'busi', 'not', 'option', 'pay', 'fee', 'plus', 'refund', 'deposit', 'send', 'replac', 'negat', 'review', 'product', 'essenti', 'stop', 'work', 'month', 'fee', 'i', 'forc', 'pay', 'obtain', 'replac'], ['thing', 'space', 'age', 'made', 'call', 'could', 'use', 'calcul', 'brilliant', 'person', 'came', 'idea'], ['fantast', 'phone', 'photo', 'wonder'], ['great', 'phone', 'best', 'camera', 'wife', 'bought', 'gift', 'love'], ['love', 'phone', 'never', 'moto', 'not', 'know', 'expect', 'bought', 'one', 'i', 'love', 'chang', 'app', 'play', 'game', 'go', 'favorit', 'social', 'app', 'done', 'without', 'phone', 'ever', 'get', 'slow', 'also', 'camera', 'awesom', 'love', 'android', 'os', 'love', 'big', 'screen', 'i', 'super', 'happi', 'moto', 'x'], ['sceptic', 'buy', 'phone', 'glad'], ['bought', 'mom', 'look', 'smartphon', 'cut', 'back', 'payment', 'high', 'end', 'phone', 'loov', 'realli', 'bad', 'eyesight', 'cataract', 'bright', 'screen', 'see', 'previous', 'phone', 'alway', 'turn', 'bright', 'way', 'kill', 'batteri', 'not', 'phone', 'screen', 'bright', 'alreadi', 'batteri', 'last', 'realli', 'well', 'constant', 'play', 'game', 'great', 'invest', 'think', 'stick', 'motorola', 'instead', 'go', 'back', 'samsung', 'flagship', 'phone'], ['best', 'phone', 'ever', 'own', 'batteri', 'life', 'chang'], ['good'], ['even', 'read', 'review', 'pull', 'dog', 'run', 'not', 'walk', 'still', 'chanc', 'wil', 'bombard', 'staff', 'call', 'ask', 'chang', 'reveiw', 'not', 'ask', 'not', 'satisfi', 'screw', 'i', 'take', 'loss', 'feel', 'lucki', 'say', 'run', 'not', 'walk'], ['dedic', 'fan', 'alreadi', 'bought', 'phone', 'stop', 'work', 'sent', 'repair', 'motorola', 'uk', 'inform', 'unit', 'motorola', 'handset', 'refus', 'repair', 'complain', 'got', 'refund', 'return', 'bewar'], ['todo', 'muy', 'bueno', 'en', 'tiempo', 'forma', 'el', 'producto', 'es', 'muy', 'bueno', 'la', 'atencion', 'tambien', 'todo', 'punto', 'gracia', 'amazon'], ['estoy', 'muy', 'contenta', 'con', 'el', 'producto', 'es', 'solo', 'touch', 'las', 'letra', 'son', 'muy', 'pequeña', 'es', 'un', 'fastidio', 'tener', 'q', 'usar', 'siempr', 'el', 'lapiz', 'para', 'escribir', 'el', 'unico', 'idioma', 'que', 'trae', 'es', 'el', 'que', 'debo', 'escribir', 'letra', 'por', 'verdadero', 'fastidio', 'por', 'lo', 'dema', 'todo', 'bien'], ['comput', 'necesari'], ['great', 'phone', 'second', 'one', 'ran', 'first', 'one', 'car', 'still', 'work', 'screen', 'bust', 'bought', 'anoth', 'one', 'alway', 'use', 'ballist', 'cell', 'phone', 'cover'], ['bought', 'phone', 'evalu', 'anoth', 'devic', 'purchas', 'vendor', 'two', 'month', 'work', 'perfect', 'decid', 'buy', 'month', 'not', 'extrem', 'heavi', 'use', 'phone', 'shut', 'would', 'not', 'turn', 'life', 'tweek', 'coupl', 'day', 'later', 'softwar', 'problem', 'abl', 'start', 'constant', 'shut', 'time', 'middl', 'call', 'text', 'lay', 'sleep', 'batteri', 'not', 'charg', 'past', 'despit', 'calibr', 'thus', 'stat', 'not', 'refresh', 'constant', 'forc', 'app', 'shut', 'realli', 'frustrat', 'worst', 'part', 'camera', 'burt', 'one', 'day', 'sign', 'abl', 'fix', 'regret', 'purchas', 'great'], ['ok'], ['bought', 'phone', 'return', 'week', 'develop', 'reboot', 'issu', 'research', 'onlin', 'must', 'common', 'would', 'reboot', 'time', 'everi', 'hour', 'imposs', 'use', 'everytim', 'need', 'use', 'middl', 'reboot', 'until', 'fix', 'problem', 'would', 'avoid', 'phone'], ['great', 'phone', 'voic', 'work', 'inconvi', 'usb', 'charger', 'connect', 'proprietari', 'not', 'phone', 'purchas', 'usb', 'cabl', 'car', 'charger', 'not', 'big', 'problelm'], ['depend', 'tough', 'phone', 'good', 'batteri', 'love', 'easi', 'use'], ['toughest', 'flip', 'ever', 'built', 'us', 'militari', 'standard', 'work', 'well', 'big', 'hand', 'take', 'lick', 'well', 'bought', 'first', 'second', 'five', 'year', 'got', 'car', 'charger', 'cord', 'reason', 'price', 'not', 'not', 'need', 'stink', 'app', 'real', 'person', 'real', 'phone', 'gps', 'search', 'address', 'type', 'busi', 'frequent', 'locat', 'save', 'easili', 'logic', 'extens', 'menu', 'system', 'ancient', 'text', 'servic', 'long', 'rang', 'batteri', 'avail', 'take', 'special', 'extra', 'thick', 'back', 'replac', 'standard', 'one', 'realli', 'use', 'featur', 'need', 'bigger', 'batteri', 'first', 'phone', 'seri', 'one', 'seri', 'old', 'longer', 'life', 'batteri', 'work', 'well', 'newer', 'phone', 'unit', 'accept', 'verbal', 'command', 'also', 'handi', 'speaker', 'button', 'origin', 'verizon', 'item', 'longer', 'avail', 'vendor', 'mobil', 'cell', 'mart', 'texa', 'great', 'work', 'would', 'buy', 'free', 'phone', 'not', 'walk', 'store', 'contractor', 'never', 'go', 'store', 'front', 'outlet', 'great', 'real', 'verizon', 'peopl', 'line', 'phone'], ['love', 'phone', 'phone', 'recondit', 'not', 'replac', 'batteri', 'must', 'purchas', 'batteri', 'month'], ['love'], ['phone', 'advertis', 'new', 'howev', 'stop', 'work', 'close', 'week', 'activ', 'phone', 'phone', 'cellar', 'would', 'not', 'respond', 'quit', 'work', 'despit', 'numer', 'attempt', 'contact', 'end', 'contact', 'motorola', 'assist', 'phone', 'per', 'motorola', 'phone', 'least', 'previous', 'owner', 'factori', 'warranti', 'expir', 'year', 'ago', 'phone', 'well', 'year', 'old', 'phone', 'flat', 'defect', 'cell', 'phone', 'week', 'end', 'purchas', 'new', 'samsung', 'galaxi', 'local', 'retail', 'not', 'contact', 'regard', 'accessori', 'purchas', 'phone', 'hard', 'case', 'car', 'charger', 'loss', 'cell', 'phone', 'servic', 'still', 'pay', 'even', 'though', 'unabl', 'use', 'amazon', 'actual', 'credit', 'account', 'cost', 'phone', 'plus', 'ship', 'phone', 'back', 'amazon', 'motorola', 'one', 'assist', 'not', 'seller', 'not', 'contact', 'amazon', 'becam', 'involv', 'today', 'yet', 'get', 'respons', 'regard', 'request', 'payment', 'accessori', 'purchas', 'seller', 'great', 'contact', 'need', 'make', 'anoth', 'purchas', 'howev', 'issu', 'forget', 'longer', 'exist', 'eye', 'would', 'high', 'suggest', 'not', 'use', 'seller'], ['would', 'recommend', 'product', 'one', 'need', 'replac', 'phone', 'number', 'button', 'littl', 'worn', 'hard', 'read', 'figur', 'not', 'big', 'deal', 'use', 'phone', 'expect', 'wear', 'work', 'great', 'extrem', 'happi', 'purchas'], ['phone', 'like', 'wore', 'use', 'one', 'great', 'replac', 'like', 'new'], ['purchas', 'fine', 'would', 'recommend', 'anyon', 'wish', 'purchas', 'phone', 'like'], ['return', 'item', 'not', 'phone', 'list', 'describ', 'although', 'state', 'new', 'not', 'work', 'proper', 'still', 'await', 'refund'], ['could', 'tell', 'total', 'want', 'one', 'ride', 'plan', 'steer', 'away', 'spend', 'littl', 'came', 'excel', 'qualiti', 'great', 'way', 'break', 'realm', 'smarter', 'technolog'], ['tri', 'phone', 'first', 'time', 'last', 'month', 'want', 'sinc', 'summer', 'phone', 'truli', 'remark', 'devic', 'age', 'still', 'manag', 'simpl', 'innov', 'cool', 'manag', 'fit', 'perfect', 'despit', 'age', 'android', 'newest', 'generat', 'flagship', 'wish', 'android', 'still', 'made', 'phone', 'qwerti', 'keyboard', 'c'], ['devic', 'fill', 'purpos', 'well', 'question', 'product', 'includ', 'contact', 'seller', 'direct', 'great', 'work', 'answer', 'question', 'easili', 'one', 'small', 'caution', 'pictur', 'product', 'not', 'produc', 'seller', 'thus', 'not', 'accur', 'exampl', 'one', 'pic', 'show', 'manual', 'includ', 'not', 'box', 'seller', 'explain', 'buy', 'bulk', 'etc', 'not', 'alway', 'manual', 'inform', 'oper', 'instruct', 'avail', 'line', 'not', 'much', 'issu'], ['got', 'phone', 'begin', 'batteri', 'not', 'hundr', 'percent', 'effect', 'wrote', 'review', 'contact', 'batteri', 'honest', 'say', 'compani', 'product', 'worth', 'main', 'peopl', 'actual', 'help', 'anyth', 'wrong', 'first', 'time', 'i', 'contact', 'seller', 'great', 'servic', 'thank', 'youjrc'], ['i', 'care', 'phone', 'electron', 'pretti', 'much', 'everi', 'aspect', 'phone', 'becam', 'broken', 'month', 'soon', 'arriv', 'jack', 'malfunct', 'sent', 'audio', 'one', 'side', 'headphon', 'multipl', 'button', 'keyboard', 'stop', 'work', 'soon', 'shut', 'restart', 'random', 'use', 'lg', 'i', 'far', 'longer', 'droid', 'would', 'say', 'case', 'uncommon', 'i', 'droid', 'broke', 'cours', 'year', 'lg', 'samsung', 'phone', 'fine', 'work', 'condit', 'year'], ['got', 'phone', 'replac', 'droid', 'bionic', 'went', 'boom', 'coupl', 'year', 'got', 'use', 'got', 'say', 'littl', 'expect', 'not', 'much', 'not', 'sure', 'droid', 'not', 'know', 'hit', 'home', 'button', 'brought', 'voic', 'command', 'got', 'bit', 'annoy', 'eventu', 'stop', 'hit', 'time', 'second', 'fine', 'screen', 'bit', 'phantom', 'would', 'random', 'thing', 'type', 'gibberish', 'clean', 'screen', 'alcohol', 'pad', 'work', 'fine', 'although', 'feel', 'not', 'alcohol', 'swab', 'everi', 'day', 'two', 'improvis', 'bit', 'ultim', 'actual', 'pretti', 'decent', 'phone', 'older', 'grind', 'gear', 'lot', 'phone', 'ten', 'day', 'broke', 'without', 'warn', 'open', 'keyboard', 'touchscreen', 'portion', 'complet', 'detach', 'without', 'warn', 'hang', 'attach', 'cabl', 'second', 'two', 'detach', 'result', 'touch', 'screen', 'tumbl', 'onto', 'metal', 'truck', 'skateboard', 'shatter', 'disfigur', 'either', 'someth', 'loos', 'kind', 'hulk', 'strength', 'i', 'send', 'back', 'amazon', 'though', 'i', 'not', 'expect', 'return', 'refund', 'sinc', 'phone', 'liter', 'disfigur', 'differ', 'part', 'real', 'concern'], ['phone', 'work', 'one', 'day', 'spazz', 'bad', 'dial', 'random', 'ppl', 'freez', 'shut', 'absolut', 'mistak', 'seller', 'kind', 'n', 'phone', 'defin', 'minimum', 'star', 'problem', 'knew', 'disast', 'would', 'not', 'bought'], ['love', 'phone', 'full', 'keyboard', 'nice', 'full', 'touch', 'screen', 'googl', 'map', 'pin', 'need', 'fb', 'cube', 'flip', 'status', 'friend', 'not', 'keep', 'go', 'post', 'download', 'applic', 'someon', 'ruin', 'last', 'global', 'phone', 'replac', 'could', 'not', 'find', 'anoth', 'phone', 'love', 'much', 'phone', 'could', 'ever', 'replac', 'motorola', 'global'], ['okay', 'not', 'know', 'bad', 'comment', 'seller', 'actual', 'love', 'droid', 'got', 'seller', 'busi', 'seller', 'thank', 'much', 'phone', 'came', 'real', 'quick', 'faster', 'expect', 'actual', 'happi', 'got', 'one', 'littl', 'small', 'problem', 'turn', 'turn', 'back', 'boot', 'clock', 'work', 'recoveri', 'option', 'go', 'reboot', 'system', 'restart', 'normal', 'afterward', 'great', 'phone', 'need', 'figur', 'make', 'stop', 'boot', 'like', 'everyth', 'great', 'oh', 'camera', 'littl', 'blurri', 'still', 'great', 'phone', 'high', 'recommend', 'seller', 'know', 'busi'], ['updat', 'updat', 'review', 'star', 'month', 'use', 'phone', 'complet', 'brick', 'could', 'never', 'connect', 'vzw', 'network', 'not', 'even', 'make', 'call', 'receiv', 'activ', 'bring', 'metro', 'pcs', 'option', 'not', 'verizon', 'took', 'local', 'vzw', 'store', 'second', 'time', 'said', 'phone', 'complet', 'malfunct', 'noth', 'complet', 'utter', 'bought', 'lost', 'vzw', 'not', 'abl', 'connect', 'vzw', 'network', 'sinc', 'purchas', 'i', 'taken', 'vzw', 'store', 'tri', 'multipl', 'thing', 'vzw', 'support', 'multipl', 'time', 'whatsoev', 'regardless', 'whether', 'phone', 'fault', 'vzw', 'custom', 'screw', 'end', 'littl', 'blue', 'triangl', 'notif', 'bar', 'accord', 'vzw', 'support', 'signifi', 'phone', 'roam', 'mode', 'littl', 'blue', 'triangl', 'never', 'goe', 'away', 'alter', 'roam', 'set', 'phone', 'mobil', 'network', 'set', 'set', 'wireless', 'network', 'mobil', 'network', 'option', 'except', 'system', 'select', 'carrier', 'mobil', 'network', 'show', 'not', 'someth', 'serious', 'wrong', 'phone', 'abil', 'connect', 'verizon', 'reason', 'not', 'give', 'star', 'perfect', 'function', 'accept', 'decid', 'new', 'phone', 'purchas'], ['work', 'well', 'far', 'month', 'though', 'time', 'tell', 'slide', 'keyboard', 'last'], ['purchas', 'smart', 'phone', 'mother', 'die', 'state', 'husband', 'skill', 'nurs', 'possibl', 'not', 'come', 'home', 'new', 'latest', 'greatest', 'smart', 'phone', 'stolen', 'day', 'purchas', 'not', 'pay', 'replac', 'bought', 'droid', 'may', 'not', 'fanci', 'work', 'great'], ['love', 'phone', 'need', 'organ', 'give', 'mani', 'option', 'must', 'recommend'], ['phone', 'huge', 'wast', 'money', 'disappoint', 'right', 'away', 'began', 'freez', 'constant', 'myriad', 'ridicul', 'glitch', 'point', 'actual', 'complet', 'unus', 'end', 'get', 'new', 'phone', 'carrier', 'extrem', 'disappoint', 'tri', 'return', 'phone', 'dice'], ['phone', 'water', 'damag', 'wi', 'fi', 'not', 'work', 'right', 'mic', 'not', 'work', 'use', 'speaker', 'talk', 'could', 'not', 'contact', 'provid', 'get', 'replac', 'not', 'happi'], ['good', 'thing', 'phone', 'sim', 'card', 'came', 'phone', 'kept', 'turn', 'paid', 'activ', 'could', 'not', 'make', 'receiv', 'call'], ['x', 'wife', 'order'], ['arriv', 'time', 'daughter', 'need', 'replac', 'phone', 'verizon', 'phone', 'order', 'keep', 'unlimit', 'phone', 'packag', 'low', 'price', 'work', 'ut', 'great'], ['upset', 'order', 'daughter', 'birthday', 'went', 'put', 'minut', 'phone', 'report', 'lost', 'stollen', 'not', 'use'], ['greatest', 'phone', 'ever', 'purchas', 'anoth', 'phone', 'need', 'upgrad'], ['phone', 'appear', 'new', 'box', 'wish', 'motorola', 'provd', 'inform', 'firtt', 'time', 'user', 'wihtout', 'go', 'onlin'], ['origin', 'phone', 'order', 'defect', 'offer', 'replac', 'took', 'week', 'receiv', 'receiv', 'replac', 'phone', 'also', 'give', 'troubl'], ['phone', 'awesom', 'phone', 'good', 'sound', 'space', 'phone', 'packag', 'came', 'right', 'time'], ['not', 'rate', 'phone', 'never', 'work', 'never', 'charg', 'not', 'abl', 'turn', 'phone', 'defect', 'not', 'happi', 'long', 'receiv', 'defect'], ['receiv', 'phone', 'today', 'phone', 'good', 'condit', 'love', 'price', 'phone', 'great', 'car', 'charger', 'not', 'even', 'blue', 'dot', 'realli', 'good', 'thank', 'guy'], ['extrem', 'happi', 'droid', 'phone', 'phone', 'would', 'get', 'would', 'new', 'version', 'exact', 'set', 'easi', 'understand', 'not', 'receiv', 'paperwork', 'figur', 'love', 'keyboard', 'text', 'front', 'scroll', 'not', 'screw', 'like', 'phone', 'seem', 'touchi', 'see', 'own', 'phone', 'long', 'time'], ['bought', 'phine', 'winter', 'year', 'issu', 'one', 'not', 'last', 'heat', 'part', 'screen', 'quit', 'sender', 'give', 'new', 'batteri', 'rest', 'final', 'went', 'bad', 'refurbish', 'phone', 'terribl', 'offens', 'compani', 'sent', 'happi', 'help'], ['text', 'would', 'not', 'work', 'phone', 'contact', 'verizon', 'problem', 'told', 'phone', 'defect'], ['phone', 'receiv', 'good', 'condit', 'work', 'well', 'tracfon'], ['everyth', 'want', 'cell', 'work', 'perfic', 'would', 'buy', 'anoth', 'ps', 'not', 'buy', 'one', 'oakland', 'wireless', 'sell', 'junk'], ['work', 'bought', 'store', 'phone', 'last', 'throughout', 'whole', 'day', 'proper', 'use', 'phone', 'keyboard', 'smooth', 'feel', 'keep', 'thumb', 'relax', 'plus', 'arriv', 'realli', 'quick', 'abl', 'use', 'work'], ['droid', 'motorola', 'excel', 'buy', 'came', 'readi', 'put', 'use', 'not', 'shown', 'glitch', 'sinc', 'receiv', 'recommend', 'product', 'recent', 'purchas', 'one', 'nephew', 'well'], ['not', 'bad', 'phone', 'love', 'app'], ['not', 'expect', 'item', 'sent', 'back'], ['nice', 'phone', 'not', 'work', 'verizon', 'bc', 'system'], ['got', 'phone', 'quick', 'everyth', 'expect', 'easi', 'use', 'great', 'qualiti', 'amaz', 'screen', 'super', 'fast', 'browser', 'sync', 'easili', 'social', 'network', 'email', 'etc', 'thank'], ['love', 'droid', 'one', 'love', 'not', 'anyth', 'motorolla'], ['nice', 'phone', 'work', 'pageplus', 'look', 'new', 'like', 'state', 'took', 'littl', 'longer', 'get', 'thought', 'far', 'worth', 'wait'], ['phone', 'great', 'condtion', 'good', 'buy', 'droid', 'fan', 'come', 'car', 'charger'], ['not', 'make', 'arriv', 'time', 'return', 'one', 'not', 'work', 'one', 'great', 'far', 'problem', 'one', 'prior', 'one', 'realli', 'enjoy', 'querti', 'keyboard', 'function', 'need'], ['love', 'droid', 'main', 'qwerti', 'keyboard', 'one', 'anyway', 'not', 'give', 'phone', 'let', 'us', 'call', 'issu', 'phone', 'compar', 'last', 'batteri', 'life', 'bare', 'get', 'hour', 'talk', 'time', 'standbi', 'mayb', 'good', 'day', 'previous', 'droid', 'could', 'easili', 'get', 'day', 'standbi', 'hoiur', 'not', 'problem', 'not', 'know', 'upgrad', 'oper', 'sysem', 'old', 'batteri', 'phone', 'ship', 'prompt', 'issu', 'order', 'high', 'capac', 'batteri', 'judg', 'review', 'help', 'power', 'challeng', 'regardless', 'still', 'love', 'phone', 'regret', 'day', 'longer', 'avail'], ['not', 'defect', 'never', 'work'], ['good', 'littl', 'phone', 'wife', 'love', 'phone', 'one', 'day', 'hope', 'get', 'away', 'physic', 'keyboard'], ['phone', 'still', 'amaz', 'even', 'though', 'fair', 'old', 'not', 'cost', 'big', 'buck', 'contract', 'call', 'qualiti', 'pretti', 'good', 'servic', 'still', 'good', 'phone', 'current', 'phone', 'market', 'star'], ['one', 'fell', 'river', 'problem', 'button', 'not', 'alway', 'work', 'i', 'text'], ['littl', 'bro', 'went', 'stupid', 'thing', 'break', 'phone', 'love', 'droid', 'much', 'want', 'upgrad', 'look', 'new', 'one', 'brought', 'price', 'easili', 'better', 'anyth', 'els', 'found', 'order', 'got', 'pretti', 'much', 'immedi', 'pretti', 'damn', 'good', 'shape', 'everyth', 'work', 'fine', 'could', 'not', 'happier', 'phone'], ['phone', 'screen', 'lock', 'could', 'not', 'reset', 'week', 'use'], ['son', 'pleas', 'purchas', 'cell', 'phone', 'work', 'fine'], ['drop', 'phone', 'replac', 'phone', 'perfect', 'exact', 'love', 'everyth', 'function', 'intend', 'problem', 'chang', 'old', 'phone', 'new', 'phone'], ['less', 'three', 'month', 'purchas', 'not', 'charg', 'past', 'despit', 'batteri', 'chang', 'product', 'not', 'fulli', 'refurbish', 'repres', 'wast', 'money', 'move'], ['receiv', 'defect', 'could', 'not', 'hear', 'convers', 'unless', 'speakerphon'], ['glad', 'replac', 'phone', 'order', 'need', 'anoth', 'phone'], ['receiv', 'droid', 'within', 'minut', 'put', 'inform', 'make', 'mine', 'current', 'recommend', 'phone', 'nephew', 'other'], ['phone', 'fine', 'refurbish', 'item', 'definit', 'not', 'new', 'descript', 'phone', 'decent', 'condit', 'not', 'new'], ['excel', 'phone', 'upgrad', 'origin', 'droid', 'maxx', 'signific', 'improv', 'sever', 'key', 'area'], ['work', 'great', 'easi', 'get', 'use'], ['store', 'demo', 'phone', 'not', 'remov', 'demo', 'softwar', 'take', 'phone', 'short', 'turn', 'verizon', 'store', 'actual', 'tri', 'unsuccesf', 'said', 'phone', 'not', 'suppos', 'ever', 'get', 'public', 'make', 'wonder', 'compani', 'got', 'hold'], ['terribl', 'not', 'even', 'get', 'net', 'play', 'store', 'take', 'ever', 'tri', 'get', 'internet', 'worst', 'phone', 'i', 'ever', 'said', 'unlock', 'crap', 'cricket', 'wireless', 'like', 'small', 'size', 'small', 'phone', 'got', 'samsung', 'mini', 'hear', 'get', 'good', 'recept', 'bum'], ['cell', 'broken', 'not', 'specif', 'cell', 'broken', 'screen', 'rais', 'bad', 'product'], ['nice', 'phone'], ['phone', 'not', 'sim', 'card', 'not', 'abl', 'get', 'work', 'feel', 'wast', 'money'], ['recomendado'], ['not', 'fast', 'expect'], ['back', 'not', 'great', 'glue', 'alreadi', 'start', 'detach', 'phone', 'week', 'also', 'batteri', 'die', 'constant', 'matter', 'fact', 'moment', 'phone', 'not', 'turn', 'idea', 'tri', 'take', 'back', 'pain', 'would', 'not', 'purchas', 'phone', 'actual', 'would', 'like', 'money', 'back', 'one'], ['excel'], ['got', 'differ', 'account', 'could', 'not', 'get', 'refund', 'phone'], ['phone', 'horribl', 'slow', 'hang', 'certain', 'app', 'would', 'not', 'recommend'], ['worst', 'buy', 'ever', 'better', 'phone', 'verizon'], ['item', 'not', 'power', 'took', 'verizon', 'told', 'bad'], ['best', 'purchas', 'excel', 'tell', 'truth', 'relat', 'product', 'fast', 'ship', 'recommend', 'x'], ['applic', 'ad', 'instal', 'not', 'part', 'initi', 'os', 'instal', 'also', 'burn', 'imag', 'screen', 'give', 'impress', 'not', 'actual', 'new', 'cell', 'phone'], ['phone', 'not', 'feel', 'look', 'work', 'like', 'originalbewar', 'seller', 'sinc', 'phone', 'not', 'matchth', 'descriptioncounterfeit', 'phone'], ['bien'], ['like', 'phone', 'lot', 'bought', 'replac', 'phone', 'broke', 'easi', 'use', 'look', 'like', 'new', 'one'], ['one', 'could', 'hear', 'alway', 'sound', 'muffl', 'even', 'cover', 'horribl', 'great', 'phone', 'never', 'plan', 'talk', 'anyon'], ['great', 'product', 'like', 'new'], ['work', 'perfect', 'root', 'phone', 'not', 'troubl'], ['phone', 'refurbish', 'mix', 'not', 'work', 'one', 'hear'], ['stop', 'work', 'day', 'suck'], ['good', 'afternoon', 'notifi', 'product', 'came', 'problem', 'phone', 'activ', 'activ', 'goe', 'crazi', 'without', 'even', 'touch', 'realli', 'hope', 'help', 'prompt', 'respons', 'thank'], ['batteri', 'life', 'could', 'better', 'everyth', 'els', 'great'], ['buy', 'use', 'phone', 'ask', 'worth', 'price', 'stop', 'work', 'better', 'buy', 'new', 'one', 'opinion', 'contact', 'mine', 'die', 'month', 'would', 'not', 'budg', 'day', 'return', 'polici', 'money', 'wast'], ['great', 'product', 'verizon', 'not', 'work', 'venezuela', 'phone', 'restart', 'mani', 'time'], ['excel'], ['good'], ['excel', 'i', 'happi', 'purchas'], ['not', 'last', 'week', 'good', 'would', 'not', 'hold', 'charg', 'alway', 'shut', 'total', 'junk'], ['perfect'], ['not', 'good'], ['not', 'handl', 'basic', 'plain', 'outdat'], ['great', 'phone', 'everyth', 'need'], ['phone', 'would', 'not', 'turn', 'took', 'verizon', 'store', 'tech', 'look', 'said', 'fri', 'sent', 'back'], ['work', 'ok', 'almost', 'warranti', 'ran', 'advertis', 'new', 'phone', 'upon', 'deeper', 'inspect', 'magnifi', 'glass', 'doubt', 'compani', 'freewir', 'mobil', 'work', 'harder', 'dress', 'worn', 'phone', 'new', 'case', 'new', 'protect', 'sticker', 'call', 'new', 'phone', 'sell', 'honest', 'product', 'cours', 'let', 'us', 'not', 'forget', 'sorri', 'not', 'anyth', 'brushoff', 'oh', 'well', 'live', 'learn', 'compani', 'oper', 'way', 'one', 'hit', 'wonder', 'not', 'around', 'long'], ['phone', 'not', 'work', 'well', 'seem', 'ok', 'first', 'day', 'began', 'hang', 'frequent', 'requir', 'turn', 'turn', 'back', 'week', 'live', 'trash', 'phone', 'get', 'anoth', 'one'], ['got', 'phone', 'reason', 'price', 'i', 'use', 'type', 'need', 'chang', 'ship', 'date', 'say', 'aug', 'got', 'today', 'great', 'ship'], ['earphon', 'jack', 'not', 'work', 'pain', 'deactiv', 'new', 'phone', 'reactiv', 'old', 'phone', 'clear', 'person', 'info', 'new', 'phone', 'case', 'not', 'truli', 'refurbish', 'pack', 'new', 'one', 'not', 'work', 'go', 'post', 'offic', 'send', 'traceabl', 'mean', 'wait', 'friend', 'purchas', 'refurbish', 'item', 'amazon', 'problem', 'experi', 'unpleas', 'hope', 'seller', 'fix', 'phone', 'send', 'us', 'anoth', 'one', 'work', 'time', 'manner'], ['work', 'great', 'like', 'new', 'purchas'], ['phone', 'virtual', 'brand', 'new', 'pleas'], ['phone', 'everyth', 'expect', 'would', 'recommend', 'phone', 'anyon', 'tri', 'upgrad'], ['could', 'give', 'phone', 'seller', 'zero', 'star', 'would', 'almost', 'never', 'write', 'review', 'unless', 'realli', 'impress', 'beyond', 'horribl', 'immedi', 'box', 'processor', 'lag', 'skip', 'sometim', 'complet', 'fail', 'app', 'close', 'multipl', 'time', 'use', 'other', 'random', 'open', 'phone', 'alreadi', 'numer', 'peopl', 'phone', 'hour', 'readi', 'back', 'jeep', 'minut', 'ago', 'keyboard', 'went', 'complet', 'haywir', 'type', 'noth', 'husband', 'deploy', 'month', 'communic', 'via', 'facebook', 'messeng', 'not', 'near', 'laptop', 'time', 'keyboard', 'not', 'function', 'complet', 'unaccept', 'unaccept', 'situat', 'left', 'high', 'regret', 'decis', 'purchas', 'phone', 'anybodi', 'retail', 'husband', 'drop', 'crack', 'oversea', 'purchas', 'phone', 'could', 'send', 'one', 'lesson', 'learn', 'save', 'money', 'time', 'phone', 'list', 'new', 'arriv', 'blemish', 'back', 'way', 'oper', 'way', 'new', 'phone', 'alreadi', 'print', 'return', 'label'], ['batteri', 'not', 'last', 'hour', 'poor', 'bought', 'batteri', 'suppos', 'last'], ['old', 'model', 'not', 'want', 'act', 'like', 'junk'], ['total', 'piec', 'noth', 'els', 'say'], ['phone', 'incred', 'batteri', 'life', 'android', 'phone', 'unbeat', 'price', 'not', 'tri', 'go', 'everi', 'featur', 'review', 'alreadi', 'simpli', 'reinforc', 'fact', 'easi', 'use', 'phone', 'android', 'featur', 'construct', 'motorola', 'would', 'recommend', 'phone', 'anyon', 'know'], ['good', 'phone'], ['not', 'even', 'use', 'piec', 'phone', 'stolen'], ['took', 'long', 'time', 'get', 'defect', 'product'], ['ginorm', 'gigant', 'piec', 'junk'], ['phone', 'ok', 'sudden', 'batteri', 'not', 'charg', 'ok', 'charger', 'die', 'intern', 'guess', 'option', 'new', 'phone', 'not', 'happi', 'bout'], ['phone', 'slow', 'glitchi', 'take', 'liter', 'min', 'open', 'anyth', 'data', 'turn', 'take', 'longer', 'minut', 'open', 'thing', 'data', 'turn', 'also', 'phone', 'freez', 'crash', 'sometim', 'not', 'anyth', 'revert', 'back', 'home', 'screen', 'even', 'though', 'click', 'app', 'first', 'figur', 'older', 'phone', 'would', 'slow', 'last', 'week', 'met', 'guy', 'phone', 'not', 'slow', 'glitchi', 'mine', 'month', 'phone', 'slowli', 'get', 'wors', 'not', 'stand', 'anymor', 'need', 'return', 'phone', 'get', 'refund'], ['love', 'phone'], ['excel'], ['not', 'droid', 'razr', 'maxx', 'phone', 'creat', 'equal', 'first', 'one', 'last', 'year', 'almost', 'day', 'brick', 'lost', 'everyth', 'not', 'back', 'insur', 'sent', 'second', 'one', 'would', 'lag', 'sometim', 'go', 'slow', 'restart', 'year', 'restart', 'almost', 'everi', 'day', 'phone', 'also', 'would', 'not', 'synch', 'work', 'email', 'calendar', 'huge', 'hassl', 'new', 'phone', 'howev', 'work', 'great', 'synch', 'everyth', 'not', 'realiz', 'much', 'miss', 'never', 'lag', 'like', 'old', 'phone', 'occasion', 'restart', 'get', 'internet', 'restart', 'phone', 'work', 'great', 'ship', 'prompt', 'sign', 'wear', 'know', 'refurb', 'phone', 'motorolla', 'not', 'make', 'anymor', 'one', 'look', 'brand', 'new', 'definit', 'recommend', 'seller'], ['phone', 'amaz', 'high', 'recommend', 'nano', 'sd', 'card', 'went', 'right', 'exist', 'verizon', 'phone', 'moto', 'x', 'everyth', 'transfer', 'problem', 'fast', 'work', 'great', 'issu'], ['not', 'ever', 'buy', 'phone', 'hear', 'piec', 'crap'], ['excel', 'phone', 'new', 'condit'], ['phone', 'month', 'alreadi', 'not', 'charg', 'proper', 'charger', 'work', 'fine', 'phone', 'not', 'one', 'realli', 'disappoint', 'wast', 'money', 'switch', 'phone', 'month'], ['phone', 'great', 'take', 'realli', 'nice', 'pictur', 'batteri', 'life', 'good', 'day', 'shut', 'night', 'bad', 'thing', 'say', 'upgrad', 'droid', 'razr'], ['arriv', 'perfect', 'condit', 'visibl', 'scratch', 'sign', 'wear', 'note', 'not', 'remov', 'back', 'insert', 'sim', 'card', 'pull', 'volum', 'rocker', 'card', 'goe', 'littl', 'clip', 'attach', 'rocker', 'slide', 'back', 'activ', 'need', 'phone', 'imei', 'phone', 'id', 'serial', 'number', 'find', 'go', 'set', 'phone', 'status', 'imei', 'number', 'activ', 'tracfon', 'sound', 'clear', 'photo', 'great', 'bought', 'wife', 'replac', 'old', 'phone', 'i', 'jealous'], ['receiv', 'phone', 'condit', 'advertis', 'work', 'great'], ['bad', 'batteri', 'sent', 'back', 'realli', 'good', 'return'], ['one', 'speaker', 'alreadi', 'blown', 'lot', 'game', 'not', 'compat', 'not', 'charg', 'mean', 'take', 'hour', 'get', 'charg'], ['phone', 'not', 'charg', 'bought', 'like', 'new', 'phone', 'not', 'charg', 'cord', 'would', 'nice', 'warn', 'spend', 'anoth', 'charg', 'phone'], ['could', 'not', 'get', 'verizon', 'signal', 'samsung', 'phone', 'locat', 'stay', 'summer', 'research', 'found', 'motorola', 'better', 'antenna', 'order', 'refurbish', 'phone', 'came', 'perfect', 'condit', 'signal', 'good', 'buy'], ['love', 'great', 'price', 'phone', 'bill', 'cheaper'], ['great', 'product', 'accur'], ['sweet', 'phone', 'place', 'buy'], ['phone', 'show', 'wear', 'expect', 'one', 'key', 'would', 'not', 'work', 'phone', 'cold', 'blue', 'tooth', 'capabl', 'die', 'coupl', 'month', 'phone', 'worthless'], ['phone', 'expect', 'not', 'realli', 'problem', 'recommend', 'other', 'would', 'want', 'phone', 'like'], ['equip', 'di', 'money'], ['perfect'], ['product', 'good', 'thought', 'servic', 'good', 'ask', 'money', 'back', 'said', 'would', 'never'], ['good'], ['love', 'new', 'phone', 'blue', 'color', 'awesom', 'easi', 'set', 'put', 'sim', 'card', 'readi', 'go'], ['believ', 'not', 'actual', 'sold', 'htc', 'smart', 'phone', 'replac', 'krzr', 'want', 'reliabl', 'phone', 'make', 'call', 'send', 'occasion', 'txt', 'krzr', 'fill', 'shoe', 'beauti', 'small', 'fit', 'pocket', 'sound', 'qualiti', 'featur', 'averag', 'unbeliev', 'flip', 'phone', 'consid', 'old', 'school', 'sea', 'ever', 'expand', 'smart', 'phone'], ['unfortun', 'chose', 'return', 'item', 'ship', 'prompt', 'custom', 'servic', 'unfortun', 'still', 'pictur', 'facil', 'phone', 'arrow', 'phone', 'sketchi', 'not', 'light'], ['yr', 'old', 'love', 'although', 'not', 'abl', 'send', 'video', 'pictur', 'text', 'messag'], ['not', 'even', 'use', 'phone', 'week', 'yet', 'kept', 'shut', 'complet', 'unus', 'disappoint', 'smart', 'not', 'buy', 'phone'], ['phone', 'year', 'softwar', 'crash', 'everi', 'time', 'turn', 'phone', 'usual', 'take', 'tri', 'phone', 'boot', 'troubl', 'free', 'boot', 'without', 'problem', 'slowli', 'not', 'happi', 'phone', 'gave', 'away', 'end', 'got', 'nokia', 'instead'], ['excel', 'product', 'money', 'not', 'come', 'accesori', 'headset', 'bluetoth', 'noth', 'charger'], ['pretti', 'much', 'love', 'featur', 'phone', 'everyth', 'look', 'knew', 'would', 'featur', 'lost', 'intern', 'lack', 'occas', 'shut', 'i', 'talk', 'someon', 'not', 'get', 'onlin', 'outsid', 'rang', 'wifi', 'stuff', 'either', 'rare', 'unnecessari', 'one', 'issu', 'camera', 'act', 'littl', 'funni', 'realli', 'point', 'complain', 'canon'], ['product', 'look', 'good', 'batteri', 'weak', 'take', 'hard', 'charg', 'problem'], ['phone', 'wack', 'not', 'worth', 'money', 'think', 'flip', 'phone', 'better', 'not', 'buy', 'dumb', 'phone'], ['would', 'say', 'processor', 'slow', 'depend', 'use', 'best', 'upgrad', 'better', 'os', 'alreadi', 'like', 'phone', 'cheapest', 'solut', 'keyboard', 'bought', 'lost', 'everyday', 'use', 'long', 'batteri', 'life', 'applic', 'googl', 'play', 'cours', 'waranti', 'need', 'compar', 'cheap', 'window', 'phone', 'dell', 'would', 'choos', 'motorola', 'mayb', 'littl', 'faster', 'one', 'gps', 'wifi', 'sensor', 'work', 'great', 'app', 'sometim', 'fall'], ['ok'], ['bought', 'replac', 'phone', 'year', 'old', 'daughter', 'inexpens', 'perform', 'well', 'love'], ['great', 'phone', 'price'], ['phone', 'make', 'life', 'much', 'easier', 'concern', 'not', 'pick', 'not', 'break', 'headphon', 'jack', 'tri', 'get', 'plug', 'accept', 'smaller', 'plug', 'notch', 'not', 'phone', 'far'], ['excel'], ['phone', 'fine', 'not', 'total', 'not', 'hold', 'charg', 'year', 'later', 'hour'], ['nice', 'phone', 'price'], ['realli', 'like', 'phone', 'got', 'version', 'download', 'dooblou', 'wifi', 'free', 'es', 'file', 'explor', 'plenti', 'room', 'add', 'card', 'plenti', 'room', 'plenti', 'add', 'still', 'wait', 'hard', 'cover', 'clumsi', 'solid', 'phone', 'would', 'recommend', 'anyon', 'wife', 'iphon', 'first', 'real', 'smart', 'phone', 'think', 'great', 'keep', 'good', 'work', 'motorola'], ['bought', 'phone', 'coupl', 'week', 'ago', 'not', 'need', 'smartphon', 'bell', 'whistl', 'normal', 'accompani', 'complet', 'satisfi', 'everyth', 'need', 'matter', 'nervous', 'low', 'price', 'turn', 'set', 'knew', 'would', 'perfect', 'need', 'nice', 'not', 'get', 'rip', 'price', 'cell', 'phone'], ['phone', 'lack', 'basic', 'capabl', 'intern', 'storag', 'pathet', 'i', 'abl', 'get', 'hand', 'app', 'run', 'storag', 'not', 'indic', 'transfer', 'app', 'sd', 'card', 'pleas', 'someon', 'prove', 'wrong', 'one', 'phone', 'not', 'auto', 'focus', 'camera', 'mean', 'qr', 'code', 'not', 'flash', 'camera', 'forget', 'flashlight', 'app', 'pictur', 'less', 'bright', 'place', 'descript', 'say', 'long', 'last', 'batteri', 'sure', 'last', 'hour', 'i', 'use', 'mean', 'dead', 'well', 'end', 'day', 'use', 'surf', 'internet', 'i', 'pretti', 'sure', 'reason', 'get', 'smart', 'phone', 'first', 'place', 'front', 'camera', 'selfi', 'phone', 'i', 'unabl', 'connect', 'phone', 'comput', 'usb', 'cabl', 'special', 'softwar', 'not', 'coupl', 'posit', 'android', 'googl', 'store', 'app', 'mean', 'googl', 'allow', 'use', 'android', 'app', 'phone', 'integr', 'nice', 'googl', 'account', 'servic', 'give', 'good', 'notif', 'not', 'flood', 'call', 'text', 'like', 'interfac', 'call', 'use', 'googl', 'contact', 'find', 'want', 'call', 'pretti', 'i', 'not', 'realli', 'sure', 'think', 'phone', 'first', 'smartphon', 'took', 'long', 'final', 'upgrad', 'like', 'well', 'everyth', 'integr', 'disappoint', 'basic', 'task', 'phone', 'not', 'i', 'own', 'phone', 'almost', 'month', 'phone', 'complet', 'piec', 'junk', 'start', 'ok', 'got', 'glitch', 'left', 'right', 'get', 'slower', 'wifi', 'stop', 'work', 'way', 'reset', 'everi', 'minut', 'often', 'lose', 'connect', 'sim', 'card', 'tmobil', 'stop', 'work', 'right', 'hate', 'phone'], ['bought', 'one', 'girlfriend', 'love', 'love', 'order', 'one', 'absolut', 'best', 'android', 'phone', 'price', 'rang', 'excel', 'devic'], ['good', 'price', 'moto', 'g', 'even', 'conveni'], ['good', 'cellphon', 'like'], ['excel', 'seller', 'recommend'], ['fine'], ['play', 'phone', 'say', 'certain', 'best', 'unlock', 'phone', 'buy', 'updat', 'review', 'get', 'use', 'starter', 'fast', 'enough', 'daili', 'activ', 'spec', 'review', 'miss', 'come', 'charg', 'cabl', 'power', 'adapt', 'one', 'piec', 'cabl', 'attach', 'adapt', 'need', 'plug', 'pc', 'need', 'get', 'usb', 'cabl', 'also', 'downsid', 'adapt', 'max', 'rate', 'made', 'india', 'not', 'expect', 'charger', 'charg', 'bit', 'slow', 'might', 'deliber', 'done', 'extend', 'batteri', 'life', 'plug', 'differ', 'adapt', 'charg', 'fast', 'build', 'qualiti', 'phone', 'good', 'like', 'moto', 'g', 'play', 'around', 'feel', 'solid', 'not', 'feel', 'like', 'cheap', 'nokia', 'star', 'due', 'price', 'featur', 'go', 'buy', 'know', 'limit'], ['use', 'moto', 'e', 'abroad', 'last', 'year', 'travel', 'work', 'fine', 'intern', 'sim', 'recent', 'upgrad', 'android', 'moto', 'longer', 'unlock', 'insert', 'sim', 'travel', 'abroad', 'result', 'messag', 'sim', 'network', 'unlock', 'pin', 'phone', 'network', 'lock', 'buggi', 'interact', 'android'], ['bought', 'gift', 'wife', 'first', 'smartphon', 'realli', 'enjoy', 'new', 'way', 'phone', 'plan', 'day', 'made', 'realli', 'difficult', 'purchas', 'phone', 'not', 'perfect', 'substitut', 'got', 'not', 'feel', 'like', 'cheapo', 'phone', 'work', 'much', 'better', 'expect', 'seem', 'hold', 'realli', 'well', 'especi', 'consid', 'three', 'littl', 'one', 'never', 'fail', 'find', 'phone', 'matter', 'well', 'hide', 'negat', 'camera', 'take', 'decent', 'pictur', 'good', 'light', 'littl', 'movement', 'knew', 'go', 'purchas', 'enough', 'need', 'smartphon', 'feel', 'high', 'end', 'not', 'want', 'pay', 'high', 'end', 'price', 'recommend', 'one'], ['phone', 'work', 'well'], ['nice', 'phone', 'price', 'not', 'flagship', 'phone', 'perfect', 'peopl', 'want', 'good', 'qualiti', 'basic', 'level', 'smartphon', 'perfect', 'kid', 'older', 'need', 'someth', 'reliabl'], ['good', 'cell', 'phone', 'easi', 'set', 'manufactur', 'instal', 'custom', 'applic', 'use', 'good', 'coverag', 'fast', 'updat', 'latest', 'android', 'high', 'buen', 'teléfono', 'celular', 'fácil', 'de', 'configurar', 'el', 'fabricant', 'instala', 'una', 'poca', 'aplicacion', 'personalizada', 'pero', 'toda', 'ella', 'muy', 'útile', 'muy', 'buena', 'cobertura', 'rápido', 'actualizado', 'con', 'lo', 'último', 'en', 'android', 'muy', 'muy', 'recomendado'], ['item', 'describ', 'prompt', 'ship', 'set', 'instal', 'easili', 'perform', 'well'], ['good', 'productarr', 'time'], ['excel', 'product', 'expect'], ['good', 'seller', 'good', 'product', 'great', 'attent', 'thank'], ['son', 'moto', 'x', 'stolen', 'school', 'phn', 'compar', 'happi', 'replac', 'del', 'quick', 'well', 'i', 'happi', 'purchas'], ['deliv', 'time', 'work', 'exact', 'advertis', 'purchas', 'go', 'well'], ['work', 'fine', 'not', 'tech', 'savvi', 'grandaught', 'help', 'answer', 'question'], ['phone', 'reason', 'use', 'though', 'notic', 'press', 'press', 'screen', 'not', 'hard', 'touch', 'lcd', 'panel', 'caus', 'weird', 'distort'], ['purchas', 'phone', 'brother', 'absolut', 'love', 'go', 'btc', 'get', 'chip', 'cut', 'mini', 'regular', 'size', 'gsm', 'chip', 'free', 'charg'], ['liter', 'best', 'phone', 'money', 'perfect', 'teenag', 'hook', 'two', 'minut'], ['great', 'smartphon'], ['exceed', 'expect', 'lot', 'purchas', 'three', 'forma', 'anda', 'brother'], ['general', 'think', 'realli', 'good', 'phone', 'price', 'fast', 'intern', 'memori', 'enough', 'light', 'phone', 'react', 'quick', 'littl', 'lag', 'play', 'googl', 'play', 'game', 'provid', 'avail', 'memori', 'add', 'microsd', 'card', 'camera', 'also', 'good', 'not', 'flash', 'react', 'ok', 'low', 'light', 'environmentsth', 'wifi', 'rang', 'surpris', 'realli', 'qualiti', 'also', 'good', 'standard', 'everi', 'motorola', 'phone', 'equal', 'bug', 'phone', 'reboot', 'sometim', 'listen', 'custom', 'equal', 'camera', 'resolut', 'problem', 'thought', 'resolut', 'imag', 'tipsif', 'turn', 'equal', 'music', 'play', 'excel', 'phone', 'not', 'reboot', 'buy', 'microsd', 'card', 'improv', 'look', 'great', 'android', 'phone', 'price', 'rang', 'not', 'look', 'anoth', 'option', 'littl', 'beast', 'surpris', 'antutu', 'benchmark', 'test', 'score', 'point', 'googl', 'nexus', 'tablet', 'imagin'], ['work', 'perfect', 'describ', 'perfect', 'entri', 'level', 'phone'], ['extrem', 'happi', 'moto', 'phone', 'everyth', 'want', 'look', 'new', 'phone', 'comfort', 'latest', 'version', 'capac', 'hold', 'music', 'copilot', 'offlin', 'gps', 'build', 'could', 'use', 'sever', 'yearsi', 'research', 'sever', 'month', 'lot', 'troubl', 'find', 'phone', 'everyth', 'look', 'want', 'small', 'phone', 'biggest', 'obstacl', 'found', 'initi', 'written', 'inch', 'screen', 'think', 'phone', 'would', 'big', 'one', 'taller', 'width', 'thick', 'iphon', 'said', 'fit', 'comfort', 'research', 'onlin', 'bit', 'saw', 'peopl', 'note', 'micro', 'sd', 'card', 'work', 'fine', 'moto', 'took', 'chanc', 'bought', 'one', 'amazon', 'http', 'went', 'sd', 'card', 'allow', 'format', 'store', 'music', 'halfway', 'full', 'music', 'app', 'video', 'work', 'gripe', 'other', 'note', 'back', 'cover', 'phone', 'part', 'chang', 'color', 'littl', 'bit', 'wiggl', 'room', 'not', 'mean', 'feel', 'like', 'go', 'fall', 'worth', 'note'], ['love', 'phone', 'featur', 'would', 'recommend', 'heartbeat'], ['niec', 'love'], ['great', 'phone', 'money', 'size', 'nice', 'camera', 'fix', 'focus', 'not', 'look', 'great', 'hdr', 'fix', 'exposur', 'issu', 'back', 'tend', 'littl', 'loos', 'phone', 'reason', 'fast', 'amaz', 'capabl', 'devic', 'get', 'littl', 'howev', 'slow', 'big', 'limit', 'micro', 'sd', 'help', 'everyth', 'work', 'corner', 'cut', 'everywher', 'earpiec', 'microphon', 'not', 'sound', 'good', 'clear', 'iphon', 'display', 'refresh', 'rate', 'realli', 'bad', 'scroll', 'run', 'pretti', 'much', 'everyth', 'current', 'top', 'game', 'work', 'bad', 'frame', 'great', 'phone', 'money', 'not', 'expect', 'high', 'end', 'phone'], ['good', 'phone', 'batteri', 'life', 'well', 'run', 'updat', 'well', 'time', 'bought', 'us', 'took', 'ireland', 'absolut', 'issu', 'pleas', 'phone', 'price', 'money', 'well', 'spent'], ['excelent'], ['read', 'review', 'devic', 'purchas', 'not', 'disappoint', 'devic', 'good', 'perform', 'close', 'nativ', 'aosp', 'experi', 'get', 'not', 'contend', 'latest', 'lg', 'samsung', 'devic', 'price', 'unit', 'great', 'bang', 'buck'], ['good', 'phone'], ['got', 'white', 'one', 'mom', 'love', 'howev', 'white', 'one', 'get', 'dirti', 'realli', 'easili', 'may', 'bit', 'slow', 'best'], ['good', 'overal', 'phone', 'nice', 'screen', 'good', 'perform', 'support', 'recent', 'android', 'releas', 'size', 'shape', 'phone', 'also', 'good', 'not', 'big', 'not', 'small', 'reason', 'look', 'updat', 'stock', 'applic', 'gb', 'remain', 'i', 'would', 'buy', 'phone'], ['decent', 'phone', 'wish', 'least', 'flash', 'though', 'chang', 'runtim', 'dalvik', 'art', 'work', 'whole', 'lot', 'better', 'multitask', 'love', 'motorola'], ['perfect'], ['excel', 'phone', 'realli', 'good', 'price', 'best', 'phone', 'buy'], ['satisfi'], ['keep', 'mind', 'take', 'oper', 'system', 'gb', 'take', 'factori', 'instal', 'app', 'control', 'not', 'delet', 'move', 'sd', 'card', 'gmail', 'weather', 'app', 'read', 'app', 'dictionari', 'coupl', 'tini', 'app', 'app', 'not', 'instal', 'sd', 'card', 'move', 'phone', 'memori', 'not', 'enough', 'step'], ['decent', 'phone', 'amaz', 'valu', 'not', 'perform', 'like', 'one', 'flagship', 'phone', 'amaz', 'function', 'camera', 'real', 'draw', 'back'], ['excelent', 'telefono'], ['excel', 'phone', 'price'], ['awesom', 'phone', 'modest', 'price', 'size', 'person', 'prefer', 'senior', 'citizen', 'find', 'size', 'print', 'easi', 'read', 'switch', 'function', 'quit', 'easi', 'camera', 'weak', 'point'], ['excel'], ['tri', 'like', 'realli', 'screen', 'gorgeous', 'phone', 'howev', 'drop', 'wifi', 'connect', 'way', 'mani', 'time', 'becam', 'frustrat', 'would', 'continu', 'disconnect', 'wifi', 'reconnect', 'get', 'internet', 'i', 'android', 'one', 'thing', 'android', 'alway', 'count', 'bug', 'also', 'intern', 'memori', 'go', 'constant', 'move', 'app', 'sd', 'card', 'camera', 'suck', 'other', 'state', 'back', 'feel', 'loos', 'take', 'put', 'sim', 'sd', 'card', 'make', 'feel', 'bit', 'cheap', 'put', 'case', 'take', 'care', 'go', 'stick', 'trusti', 'nokia', 'got', 'last', 'thanksgiv', 'screen', 'not', 'near', 'good', 'one', 'lack', 'app', 'new', 'updat', 'given', 'mani', 'featur', 'happen', 'love', 'includ', 'wifi', 'sens', 'mix', 'radio', 'offlin', 'mix', 'way', 'better', 'camera', 'cortana', 'other', 'oh', 'yeah', 'i', 'month', 'got', 'unlock', 'free', 'wish', 'screen', 'good', 'send', 'back'], ['first', 'smartphon', 'not', 'lot', 'compar', 'howev', 'qualiti', 'seem', 'good', 'batteri', 'life', 'longer', 'husband', 'phone', 'nice', 'size', 'complaint'], ['excelent'], ['wondersul', 'experi', 'seller', 'awesom', 'product', 'deliv', 'expect', 'work', 'perfect'], ['cheap', 'contract', 'minimum', 'android', 'bloat', 'motorola', 'use', 'straight', 'talk', 'save', 'ton', 'compass', 'photo', 'flash', 'acceleromet', 'etc', 'drop', 'ground', 'broke', 'display', 'not', 'glass', 'bought', 'anoth', 'one', 'got', 'case', 'time'], ['own', 'moto', 'g', 'soon', 'offer', 'moto', 'e', 'releas', 'not', 'think', 'twice', 'order', 'bought', 'two', 'gift', 'one', 'best', 'phone', 'market'], ['go', 'oper', 'seattl', 'downtown', 'look', 'smartphon', 'run', 'android', 'good', 'price', 'found', 'noth', 'new', 'moto', 'e', 'found', 'onlin', 'realli', 'good', 'excel', 'price', 'first', 'time', 'recommend', 'get', 'someth', 'iphon', 'iphon', 'expens', 'previous', 'version', 'android', 'pain', 'use', 'keep', 'get', 'better', 'everi', 'motorola', 'work', 'realli', 'fast', 'unlock', 'oper', 'sim', 'card', 'not', 'includ', 'run', 'latest', 'version', 'android', 'screen', 'resolut', 'beauti'], ['i', 'big', 'fan', 'moto', 'g', 'cellphon', 'one', 'rellay', 'good', 'option', 'peopl', 'not', 'need', 'realli', 'power', 'smarthphon', 'not', 'want', 'spend', 'much', 'money', 'although', 'low', 'price', 'get', 'good', 'phone'], ['purchas', 'phone', 'brother', 'absolut', 'love', 'go', 'btc', 'get', 'chip', 'cut', 'mini', 'regular', 'size', 'gsm', 'chip', 'free', 'charg'], ['excelent'], ['exceed', 'expect', 'lot', 'purchas', 'three', 'forma', 'anda', 'brother'], ['absolut', 'fantast', 'devic', 'money', 'use', 'go', 'phone', 'account', 'never', 'happier', 'long', 'day', 'batteri', 'life', 'clean', 'android', 'interfac', 'weird', 'bloatwar', 'useless', 'chose', 'one', 'small', 'size', 'text', 'frequent', 'walk', 'fit', 'nice', 'hand', 'swype', 'text', 'solid', 'thumb', 'keep', 'hand', 'free'], ['bad'], ['great', 'phone', 'work', 'box', 'problem', 'peopl', 'get', 'amazon', 'prime', 'deliveri', 'fast', 'phone', 'came', 'two', 'day', 'date', 'purchas'], ['work', 'quit', 'good'], ['excel', 'ítem'], ['time', 'buy', 'phone', 'friend', 'pick', 'one', 'box', 'store', 'phone', 'great', 'last', 'phone', 'soni', 'ericsson', 'year', 'old', 'littl', 'one', 'hundr', 'buck', 'phone', 'everyth', 'ever', 'need', 'not', 'bell', 'whistl', 'someth', 'would', 'rather', 'spend', 'cost', 'save', 'elsewher', 'thanksan', 'updat', 'motorola', 'releas', 'android', 'lollipop', 'great', 'upgrad', 'phone', 'everyth', 'ever', 'want', 'phone', 'new', 'lower', 'price'], ['amaz', 'price', 'thing', 'goe', 'fast', 'speaker', 'realli', 'loud'], ['work', 'great'], ['littl', 'bigger', 'want', 'work', 'well', 'learn', 'work', 'everyth'], ['good', 'product'], ['excel', 'seller', 'good', 'phone'], ['great'], ['advantag', 'gorilla', 'glass', 'fast', 'cpu', 'perfect', 'screen', 'stabl', 'os', 'batteri', 'best', 'small', 'system', 'flash', 'clear', 'cach', 'instal', 'new', 'softwar', 'otherwis', 'see', 'not', 'enought', 'memori', 'error', 'weak', 'camera', 'autofocus', 'not', 'critic', 'overal', 'imag', 'qualiti', 'poor'], ['work', 'good', 'signal', 'seem', 'not', 'strong', 'like', 'iphon', 'locat'], ['fast', 'ship', 'great', 'phone'], ['hate', 'return', 'voic', 'recept', 'metro', 'orlando', 'crippl', 'ascend', 'ring', 'camera', 'flash', 'camera', 'short', 'batteri', 'life', 'not', 'good', 'valu', 'even', 'starter', 'phone', 'price', 'design', 'cheapi', 'cell', 'phone', 'emerg', 'market', 'like', 'india', 'realli', 'appropri', 'market'], ['good', 'littl', 'phone', 'excel', 'valu'], ['last', 'two', 'month', 'return', 'three', 'new', 'smart', 'phone', 'amazon', 'not', 'work', 'right', 'came', 'origin', 'box', 'charger', 'paper', 'work', 'phone', 'not', 'phone', 'great', 'work', 'work', 'great', 'better', 'eight', 'hundr', 'dollar', 'phone', 'sent', 'back'], ['still', 'impress', 'motorola', 'keep'], ['brilliant', 'littl', 'phone', 'good', 'price'], ['wonder', 'unlock', 'moto', 'e', 'phone', 'delight', 'low', 'price', 'paid', 'far', 'surpass', 'expect', 'smartphon', 'sinc', 'huge', 'five', 'inch', 'samsung', 'galaxi', 'grand', 'phone', 'find', 'perfect', 'travel', 'easi', 'hold', 'due', 'curv', 'back', 'reader', 'goal', 'give', 'everyday', 'practic', 'use', 'regard', 'batteri', 'life', 'simpli', 'amaz', 'absolut', 'best', 'batteri', 'life', 'smartphon', 'tablet', 'own', 'sinc', 'phone', 'not', 'come', 'lot', 'bloatwar', 'useless', 'app', 'help', 'memori', 'run', 'better', 'batteri', 'last', 'longer', 'fact', 'gotten', 'day', 'half', 'batteri', 'use', 'turn', 'wifi', 'internet', 'email', 'etc', 'howev', 'run', 'bright', 'averag', 'day', 'get', 'least', 'full', 'day', 'percent', 'left', 'sometim', 'charg', 'overnight', 'long', 'batteri', 'life', 'sold', 'phone', 'mani', 'time', 'past', 'phone', 'mani', 'bell', 'whistl', 'batteri', 'ran', 'quick', 'howev', 'phone', 'last', 'day', 'go', 'bed', 'goe', 'back', 'charger', 'built', 'slip', 'proof', 'anti', 'slip', 'bumper', 'cover', 'sens', 'slip', 'proof', 'cover', 'built', 'phone', 'attract', 'anti', 'slip', 'front', 'back', 'not', 'need', 'purchas', 'addit', 'cover', 'start', 'use', 'phone', 'howev', 'eye', 'book', 'style', 'cover', 'phone', 'alreadi', 'back', 'phone', 'remov', 'chang', 'color', 'back', 'part', 'differ', 'color', 'screen', 'resolut', 'amaz', 'color', 'vivid', 'font', 'icon', 'clear', 'even', 'though', 'smaller', 'phone', 'inch', 'screen', 'view', 'page', 'internet', 'text', 'clear', 'pictur', 'clear', 'color', 'screen', 'clear', 'read', 'pdf', 'book', 'use', 'adob', 'reader', 'see', 'page', 'without', 'glass', 'kitkat', 'pure', 'android', 'experi', 'sinc', 'pure', 'android', 'overlay', 'essenti', 'app', 'instal', 'leaner', 'phone', 'use', 'much', 'less', 'memori', 'batteri', 'one', 'overlay', 'not', 'straight', 'android', 'mean', 'kitkat', 'os', 'run', 'better', 'faster', 'also', 'found', 'know', 'two', 'samsung', 'tablet', 'kitkat', 'love', 'bloatwar', 'phone', 'not', 'receiv', 'kit', 'kat', 'updat', 'soon', 'purchas', 'phone', 'date', 'run', 'wifi', 'wifi', 'strongest', 'wifi', 'yet', 'phone', 'own', 'realli', 'serious', 'phone', 'fast', 'connect', 'keep', 'connect', 'fact', 'back', 'home', 'furthest', 'router', 'still', 'get', 'bar', 'wifi', 'signal', 'phone', 'test', 'use', 'home', 'router', 'go', 'mani', 'hotspot', 'wifi', 'hotspot', 'problem', 'connect', 'stay', 'connect', 'found', 'speed', 'still', 'high', 'home', 'sever', 'devic', 'connect', 'time', 'router', 'loss', 'extern', 'sd', 'card', 'inform', 'sinc', 'phone', 'extern', 'sd', 'slot', 'instal', 'sandisk', 'micro', 'class', 'micro', 'sd', 'card', 'instal', 'work', 'fine', 'moto', 'phone', 'note', 'peopl', 'higher', 'sd', 'card', 'class', 'phone', 'sometim', 'give', 'error', 'messag', 'sd', 'card', 'unexpect', 'remov', 'not', 'fault', 'phone', 'research', 'extens', 'find', 'state', 'smartphon', 'tablet', 'read', 'class', 'class', 'card', 'better', 'howev', 'peopl', 'problem', 'class', 'card', 'stick', 'class', 'sd', 'card', 'never', 'encount', 'problem', 'phone', 'phone', 'tablet', 'internet', 'webpag', 'video', 'view', 'chrome', 'browser', 'great', 'job', 'howev', 'use', 'maxthon', 'browser', 'great', 'internet', 'view', 'result', 'render', 'webpag', 'quit', 'fast', 'offic', 'program', 'phone', 'found', 'ok', 'went', 'playstor', 'instal', 'doc', 'go', 'let', 'us', 'edit', 'save', 'view', 'ms', 'offic', 'type', 'also', 'view', 'pdf', 'file', 'also', 'ms', 'offic', 'app', 'free', 'music', 'player', 'phone', 'come', 'googl', 'player', 'instal', 'like', 'play', 'music', 'store', 'extern', 'sd', 'card', 'nice', 'save', 'new', 'playlist', 'ok', 'googl', 'player', 'also', 'play', 'music', 'cloud', 'howev', 'let', 'suggest', 'rocket', 'music', 'player', 'free', 'playstor', 'like', 'music', 'extern', 'sd', 'card', 'play', 'playlist', 'folder', 'etc', 'alreadi', 'creat', 'playlist', 'sound', 'player', 'superb', 'home', 'video', 'stock', 'video', 'player', 'ok', 'play', 'home', 'video', 'howev', 'may', 'suggest', 'qq', 'player', 'free', 'app', 'playstor', 'one', 'recommend', 'play', 'everi', 'home', 'video', 'tri', 'bluetooth', 'speed', 'perform', 'bluetooth', 'pair', 'quick', 'sever', 'devic', 'copi', 'file', 'great', 'rate', 'peppi', 'fast', 'found', 'respons', 'phone', 'peppi', 'fast', 'lag', 'ever', 'con', 'new', 'adob', 'flash', 'not', 'support', 'howev', 'found', 'archiv', 'flash', 'instal', 'get', 'onlin', 'video', 'play', 'download', 'older', 'archiv', 'flash', 'give', 'abil', 'view', 'mani', 'internet', 'video', 'use', 'maxthon', 'browser', 'good', 'result', 'howev', 'could', 'not', 'get', 'amazon', 'video', 'play', 'flash', 'camera', 'lower', 'end', 'camera', 'suggest', 'use', 'regular', 'camera', 'best', 'pictur', 'take', 'situat', 'howev', 'test', 'camera', 'took', 'sever', 'outdoor', 'shot', 'well', 'indoor', 'shot', 'bright', 'light', 'amaz', 'pictur', 'look', 'ok', 'good', 'enough', 'email', 'keep', 'yet', 'take', 'regular', 'digit', 'camera', 'serious', 'camera', 'somewhat', 'low', 'intern', 'storag', 'not', 'problem', 'good', 'news', 'app', 'kitkat', 'standard', 'newer', 'updat', 'app', 'move', 'onto', 'extern', 'sd', 'card', 'abl', 'move', 'half', 'instal', 'app', 'still', 'left', 'intern', 'space', 'nfc', 'otg', 'phone', 'not', 'work', 'otg', 'adapt', 'flash', 'drive', 'usb', 'devic', 'not', 'problem', 'use', 'dropbox', 'send', 'pictur', 'etc', 'nfc', 'near', 'field', 'communic', 'not', 'use', 'not', 'problem', 'line', 'would', 'buy', 'moto', 'e', 'phone', 'yes', 'certain', 'would', 'buy', 'phone', 'easi', 'use', 'superb', 'batteri', 'life', 'well', 'simpl', 'oper', 'look', 'easi', 'use', 'low', 'cost', 'android', 'smartphon', 'realli', 'great', 'batteri', 'life', 'let', 'suggest', 'phone', 'also', 'sinc', 'techi', 'person', 'happi', 'answer', 'question', 'may', 'comment', 'section'], ['love', 'phone', 'thought', 'would', 'basic', 'unattract', 'quit', 'nice', 'around', 'realli', 'enjoy', 'android', 'experi', 'use', 'phone', 'skin', 'alter', 'bloat', 'tell', 'googl', 'want', 'phone', 'work', 'well', 'exampl', 'android', 'experi', 'muss', 'fuss', 'wifi', 'tether', 'work', 'minut', 'muck', 'root', 'custom', 'rom', 'etc', 'i', 'use', 'airvoic', 'plan', 'work', 'great', 'configur', 'apn', 'set', 'found', 'airvoic', 'site', 'definit', 'recommend', 'budget', 'smartphon', 'probabl', 'buy', 'anoth', 'wife', 'current', 'use', 'noka', 'lumia', 'edit', 'one', 'small', 'thing', 'not', 'like', 'phone', 'camera', 'minimum', 'focus', 'distanc', 'quit', 'larg', 'therefor', 'scan', 'barcod', 'comparison', 'shop', 'not', 'realli', 'feasibl', 'may', 'get', 'lucki', 'general', 'frustrat', 'consid', 'upgrad', 'moto', 'g', 'give', 'phone', 'wife', 'still', 'love', 'devic', 'ratio'], ['broke', 'screen', 'nexus', 'scrambl', 'get', 'quick', 'replac', 'nexus', 'repair', 'lg', 'phone', 'serv', 'good', 'backup', 'not', 'regret', 'note', 'screen', 'go', 'look', 'blurri', 'compar', 'phone', 'due', 'lower', 'resolut', 'get', 'use', 'not', 'camera', 'selfi', 'snap', 'pictur', 'video', 'coupl', 'bunch', 'app', 'go', 'run', 'storag', 'space', 'quick', 'invest', 'cheap', 'sd', 'card', 'wise', 'phone', 'nexus', 'back', 'i', 'not', 'use', 'phone', 'moment', 'whenev', 'anoth', 'issu', 'friend', 'issu', 'need', 'quick', 'backup', 'one', 'readi', 'duti'], ['nice'], ['first', 'smart', 'phone', 'want', 'someth', 'let', 'make', 'phone', 'call', 'use', 'stupid', 'phone', 'bateri', 'would', 'last', 'far', 'phone', 'met', 'expect', 'cheap', 'add', 'valu'], ['great', 'beauti', 'product'], ['veeri', 'good', 'phone', 'also', 'afford', 'surpris', 'arriv', 'time', 'work', 'perfect', 'reccomend'], ['good', 'product'], ['ver', 'pleas', 'perform', 'valu', 'forma', 'money'], ['good', 'product', 'price', 'look', 'mobil', 'good', 'camera', 'may', 'want', 'look', 'elsewher', 'rear', 'camera', 'decent', 'resolut', 'imag', 'video', 'sometim', 'choppi', 'selfi', 'junki', 'definit', 'not'], ['claro'], ['buen', 'producto', 'rapido', 'fuciona', 'bien', 'con', 'toda', 'las', 'operadora', 'del', 'pai'], ['descent'], ['problem', 'speaker'], ['excel'], ['great', 'deal', 'great', 'seller'], ['bought', 'iphon', 'two', 'christma', 'gift', 'also', 'samsung', 'good', 'i', 'seen', 'far'], ['good', 'econom', 'qualiti', 'make', 'basic'], ['mean', 'unlock', 'phone', 'label', 'packag', 'read', 'function', 'test', 'verizon', 'sim', 'card', 'work', 'cdma', 'network', 'likj', 'sprint', 'verizon', 'not', 'work', 'gsm', 'network', 'like', 'tmobileor', 'att', 'pleas', 'justifi'], ['excel', 'condit', 'work', 'well', 'oversea'], ['great', 'reason', 'devic'], ['work', 'well', 'much', 'satisfi', 'moto'], ['excel'], ['hi', 'bought', 'motorola', 'day', 'use', 'not', 'work', 'recommend', 'contact', 'thank'], ['ok'], ['great', 'phone', 'seller', 'ok'], ['haibucuo'], ['could', 'not', 'happier', 'phone', 'coupl', 'year', 'old', 'got', 'around', 'price', 'steal', 'still', 'hold', 'modern', 'phone', 'well', 'upgrad', 'moto', 'g', 'due', 'drag', 'not', 'con', 'phone', 'could', 'not', 'happier'], ['great', 'phone', 'perfect', 'size', 'fit', 'hand', 'well', 'small', 'tpu', 'case', 'suck', 'make', 'phone', 'bigger', 'tri', 'two', 'differ', 'case', 'kept', 'one', 'notic', 'thinner', 'tighter', 'better', 'screen', 'perfect', 'look', 'review', 'benchmark', 'screen', 'instead', 'let', 'us', 'phone', 'get', 'better', 'batteri', 'life', 'make', 'weaker', 'cpu', 'work', 'good', 'highest', 'end', 'cpus', 'screen', 'also', 'beauti', 'amol', 'amaz', 'screen', 'amaz', 'color', 'gf', 'iphon', 'screen', 'nice', 'realist', 'color', 'look', 'dull', 'bore', 'compar', 'life', 'amaz', 'turn', 'junk', 'googl', 'want', 'use', 'phone', 'locat', 'servic', 'wifi', 'etc', 'etc', 'lot', 'go', 'turn', 'much', 'stuff', 'possibl', 'locat', 'servic', 'gps', 'wifi', 'unless', 'use', 'phone', 'goe', 'hour', 'charg', 'could', 'get', 'hour', 'minim', 'use', 'often', 'plug', 'everi', 'night', 'anyway', 'lite', 'user', 'basic', 'use', 'cours', 'want', 'stream', 'youtub', 'video', 'wifi', 'batteri', 'die', 'quick', 'watch', 'coupl', 'hour', 'youtub', 'wife', 'use', 'control', 'seem', 'cool', 'not', 'use', 'activ', 'notif', 'great', 'love', 'not', 'push', 'button', 'check', 'new', 'text'], ['batteri', 'die', 'month'], ['oder', 'moto', 'x', 'month', 'ago', 'got', 'product', 'charger', 'present', 'miss', 'ear', 'suggest', 'go', 'amazon'], ['i', 'not', 'cell', 'phone', 'expert', 'read', 'enough', 'review', 'know', 'cool', 'phone', 'buy', 'right', 'everyth', 'work', 'perfect', 'feel', 'great', 'hand', 'want', 'technic', 'review', 'pleas', 'look', 'elsewher', 'high', 'recommend', 'phone', 'thank'], ['grat'], ['got', 'use', 'said', 'good', 'condit', 'came', 'like', 'new', 'come', 'moto', 'g', 'great', 'phone', 'definit', 'notic', 'big', 'difer', 'screen', 'qualiti', 'fron', 'lcd', 'amol', 'biggest', 'upgrad', 'come', 'moto', 'g', 'camera', 'moto', 'x', 'take', 'great', 'pictur', 'not', 'amaz', 'get', 'job', 'done', 'pretti', 'decent', 'batteri', 'life', 'also', 'better', 'overal', 'phone', 'feel', 'premium', 'smoother', 'experi', 'os', 'would', 'say', 'phone', 'steal'], ['phone', 'suck', 'mani', 'defect', 'screenshot', 'not', 'work', 'camera', 'horribl', 'everi', 'imag', 'whitish', 'glow', 'not', 'wast', 'money', 'crappi', 'phone'], ['perfect'], ['excel', 'product', 'good', 'qualiti'], ['great', 'featur', 'problem', 'person', 'convers', 'hear', 'seem', 'work', 'fine', 'review', 'microphon', 'not', 'work', 'correct', 'contact', 'motorola', 'found', 'phone', 'manufactur', 'chile', 'would', 'not', 'air', 'honor', 'warranti', 'fortun', 'amazon', 'accept', 'return'], ['worst', 'phone', 'ever'], ['receiv', 'moto', 'pretti', 'disappoint', 'i', 'paid', 'new', 'one', 'look', 'open', 'box', 'item', 'dirti', 'seal', 'awar'], ['come', 'iphon', 'love', 'iphon', 'say', 'love', 'iphon', 'broke', 'back', 'like', 'guy', 'want', 'know', 'neighbor', 'wife', 'better', 'decid', 'want', 'tri', 'android', 'come', 'top', 'tier', 'phone', 'went', 'bought', 'top', 'tier', 'htc', 'one', 'greatish', 'experi', 'kind', 'enjoy', 'lost', 'somewher', 'probabl', 'cab', 'first', 'android', 'experi', 'htc', 'somewhat', 'good', 'sick', 'break', 'loos', 'phone', 'decid', 'would', 'buy', 'middl', 'road', 'not', 'pricey', 'ok', 'moto', 'x', 'came', 'mail', 'holi', 'crap', 'snappi', 'hell', 'everi', 'thing', 'use', 'run', 'high', 'end', 'phone', 'run', 'smooth', 'one', 'not', 'make', 'phone', 'stand', 'android', 'tweak', 'like', 'activ', 'display', 'touchless', 'control', 'set', 'phone', 'apart', 'set', 'new', 'standard', 'someth', 'phone', 'done', 'could', 'not', 'go', 'back', 'phone', 'would', 'press', 'button', 'display', 'time', 'sound', 'trivial', 'mayb', 'i', 'lazi', 'not', 'know', 'control', 'great', 'love', 'see', 'jealous', 'eye', 'iphon', 'owner', 'say', 'ok', 'googl', 'without', 'touch', 'screen', 'pop', 'android', 'phone', 'maker', 'take', 'note', 'invest', 'money', 'design', 'stupid', 'custom', 'bake', 'layer', 'creami', 'os', 'crap', 'top', 'alreadi', 'excel', 'android', 'look', 'htc', 'samsung', 'vanilla', 'android', 'oh', 'much', 'better', 'lighter', 'cleaner', 'sleeker', 'snappier', 'not', 'care', 'phone', 'spec', 'get', 'phone', 'proof', 'phone', 'overpr', 'overr'], ['wife', 'happi', 'happi', 'wife', 'happi', 'life'], ['best', 'phone', 'budget', 'low', 'smart', 'phone', 'price', 'best', 'design', 'market', 'cool', 'touch', 'awesom', 'pic', 'resolut', 'best', 'light', 'less', 'phone', 'better', 'camera', 'complaint'], ['great', 'phone', 'not', 'big', 'small', 'oper', 'smooth'], ['use', 'featur', 'avail', 'smartphon', 'today', 'never', 'thought', 'abl', 'big', 'screen', 'small', 'phone', 'sound', 'contradictori', 'see', 'mean', 'hold'], ['love', 'look', 'feel', 'hand', 'awesom', 'interfac', 'cool', 'featur', 'shake', 'quick', 'open', 'camera', 'googl'], ['nice', 'wonder', 'updat', 'android', 'small', 'crack', 'right', 'side', 'phone', 'custom', 'servic', 'quick', 'solv', 'problem'], ['great', 'phone'], ['perfect', 'size', 'not', 'like', 'big', 'phone', 'one', 'flexibl', 'hand', 'cheapp'], ['love', 'phone'], ['phone', 'nice', 'got', 'refurbish', 'version', 'clear', 'state', 'new', 'phone', 'also', 'charger', 'not', 'us'], ['great', 'phone', 'check', 'work', 'provid', 'though'], ['excel'], ['phone', 'exact', 'want', 'price', 'right', 'ship', 'prompt', 'pleas', 'purchas'], ['excel'], ['best', 'android', 'phone', 'nice', 'screen', 'bright', 'vivid', 'good', 'qualiti', 'nice', 'fast', 'charg', 'sound', 'qualiti', 'clean', 'android', 'near', 'default', 'experi', 'extra', 'chip', 'track', 'movement', 'one', 'default', 'launcher', 'not', 'good', 'instal', 'ton', 'choic', 'googl', 'play', 'prefer', 'kk', 'launcher'], ['good', 'cel'], ['excel', 'arriv', 'expext'], ['like', 'cellphon'], ['own', 'sever', 'motorola', 'product', 'import', 'repair', 'yrs', 'feel', 'harley', 'communic', 'product', 'avail', 'today', 'broke', 'screen', 'within', 'month', 'careless', 'handl', 'well', 'direct', 'fall', 'repair', 'less', 'sinc', 'purchas', 'kid', 'pleas', 'take', 'note', 'fragil', 'screen', 'comment', 'provid', 'nice', 'bumper', 'frame', 'case', 'take', 'advantag', 'numer', 'option', 'avail'], ['best', 'phone'], ['great', 'valu', 'sale', 'bought', 'price', 'not', 'beat', 'motorola', 'flagship', 'year', 'old', 'novemb', 'kind', 'wish', 'grab', 'pair'], ['great', 'cellphon', 'problem', 'ship', 'includ', 'said', 'recommend', 'cours'], ['excel'], ['phone', 'littl', 'intern', 'memori', 'way', 'add', 'glass', 'right', 'edg', 'devic', 'make', 'vulner', 'break', 'drop', 'found', 'hard', 'way'], ['best', 'smarphon', 'i', 'ever', 'own'], ['love', 'moto', 'g', 'got', 'mom', 'bigger', 'better', 'downsid', 'power', 'button', 'super', 'sensit', 'keep', 'turn', 'pocket'], ['perfect'], ['work', 'fine', 'not', 'find', 'gps'], ['perfect'], ['good'], ['great', 'phone', 'ultra', 'fast', 'pure', 'android', 'upgrad'], ['perfect'], ['disappoint', 'less', 'six', 'month', 'phone', 'complet', 'stop', 'function', 'get', 'super', 'hot', 'charg', 'lose', 'batteri', 'within', 'hour', 'longer', 'charg', 'first', 'negat', 'review', 'ever', 'written', 'beyond', 'disappoint'], ['screen', 'ad', 'phone', 'burn', 'came', 'knockoff', 'appl', 'earpod', 'charger', 'even', 'though', 'seller', 'said', 'would', 'come', 'factori', 'earbud', 'nice', 'phone', 'otherwis'], ['realli', 'nice', 'phone', 'overal', 'camera', 'qualiti', 'not', 'good', 'btw'], ['work', 'wait'], ['everyth', 'perfect'], ['upgrad', 'moto', 'phone', 'lot', 'similar', 'featur', 'sinc', 'also', 'motorola', 'new', 'thing', 'like', 'wave', 'hand', 'phone', 'see', 'quick', 'glanc', 'notif', 'without', 'voic', 'featur', 'ask', 'question', 'even', 'lock', 'talk', 'featur', 'phone', 'read', 'notif', 'loud', 'min', 'perfect', 'much', 'better', 'camera', 'moto', 'motion', 'sensor', 'action', 'twist', 'twice', 'open', 'camera', 'karat', 'chop', 'twice', 'flashlight', 'overal', 'neat', 'ad', 'featur', 'tini', 'bit', 'laggi', 'time', 'annoy', 'ex', 'go', 'googl', 'search', 'bar', 'keyboard', 'take', 'second', 'come', 'overal', 'realli', 'like'], ['great', 'deal', 'amazon', 'great', 'phone'], ['excel'], ['great', 'phone'], ['excel', 'phone', 'good', 'cost', 'benefit', 'hig', 'recomend'], ['great'], ['use', 'phone', 'week', 'user', 'friend', 'besid', 'internet', 'browser', 'not', 'sure', 'access', 'previous', 'tab', 'open', 'new', 'one', 'figur', 'time', 'switch', 'moto', 'x', 'samsung', 'galaxi', 'essenti', 'thing', 'minus', 'samsung', 'mobil', 'carrier', 'clutter', 'vibrant', 'color', 'fast', 'get', 'wood', 'back', 'definit', 'convers', 'starter', 'brag', 'point', 'stylish', 'phone'], ['great'], ['heat', 'much', 'everyth', 'els', 'perfect'], ['camera', 'realli', 'hard', 'time', 'focus', 'night', 'not', 'work'], ['month', 'purchas', 'phone', 'great', 'would', 'recommend', 'almost', 'everyon', 'downsid', 'camera', 'quit', 'mediocr', 'auto', 'focus', 'not', 'work', 'time', 'along', 'camera', 'poor', 'attempt', 'oper', 'low', 'light', 'arnt', 'concern', 'phone', 'camera', 'amaz', 'phone', 'mani', 'uniqu', 'use', 'featur'], ['great', 'phone', 'come', 'tool', 'would', 'ever', 'need', 'cours', 'ton', 'app', 'choos', 'larg', 'sleek', 'fast', 'fun'], ['one', 'best', 'smartphon', 'buy', 'admit', 'not', 'latest', 'moto', 'x', 'general', 'purpos', 'general', 'peopl', 'phone', 'perfect', 'screen', 'size', 'perfect', 'use', 'media', 'consumpt', 'phone', 'not', 'big', 'phone', 'also', 'feel', 'substanti', 'hand', 'thank', 'solid', 'construct', 'screen', 'also', 'offer', 'deep', 'black', 'satur', 'color', 'thing', 'mediocr', 'phone', 'camera', 'not', 'mean', 'got', 'bad', 'camera', 'camera', 'averag', 'otherwis', 'awesom', 'phone'], ['great', 'bought', 'latin', 'america', 'seem', 'lock', 'function', 'hotspot', 'use', 'cellphon', 'even', 'legal', 'unblock', 'cellphon'], ['work', 'great'], ['best', 'phone', 'ever', 'own', 'moto', 'x', 'great', 'flagship', 'smartphon', 'launch', 'date', 'back', 'price', 'time', 'ok', 'price', 'cut', 'valu', 'realli', 'amaz', 'think', 'not', 'spec', 'also', 'softwar', 'qualiti', 'smartphon', 'offer', 'much', 'realli', 'major', 'brand', 'smartphon', 'catch', 'pros', 'performancespecificationsdesignqualitymoto', 'functionsamol', 'inch', 'displaycon', 'batteri', 'suck', 'not', 'best', 'segment', 'could', 'offer', 'bigger', 'bigger', 'batteri', 'consid', 'thick', 'megapixel', 'seem', 'good', 'perform', 'low', 'light', 'not', 'satisfi'], ['great', 'item'], ['great', 'phone', 'size', 'look', 'screen', 'fantast', 'thin', 'light'], ['sent', 'back'], ['con', 'not', 'allow', 'memori', 'card', 'cell', 'phone', 'excel'], ['daili', 'use', 'power', 'nice', 'screen', 'got', 'prime', 'deal', 'day'], ['far', 'good', 'like', 'thing', 'caus', 'littl', 'problem', 'order', 'nano', 'sim', 'card', 'not', 'abl', 'simpli', 'take', 'old', 'sim', 'card', 'insert', 'new', 'phone', 'tri', 'updat', 'sever', 'month'], ['overal', 'nice', 'phone', 'except', 'extrem', 'yellow', 'screen'], ['quicker', 'generat', 'camera', 'nice', 'would', 'want', 'gb', 'instead', 'gb', 'memori', 'bought', 'unlock', 'version', 'work', 'perfect', 'countri', 'cell', 'phone', 'compani', 'requir', 'full', 'initi', 'charg', 'start', 'work', 'normal', 'simpli', 'perfect'], ['excelent'], ['recent', 'receiv', 'phone', 'almost', 'week', 'fantast', 'look', 'phone', 'got', 'nervous', 'order', 'bad', 'review', 'took', 'chanc', 'far', 'great', 'phone', 'scratch', 'phone', 'almost', 'look', 'lot', 'review', 'kept', 'say', 'phone', 'not', 'unlock', 'quick', 'got', 'nervous', 'insert', 'simpl', 'mobil', 'sim', 'chip', 'especi', 'phone', 'said', 'not', 'verizon', 'sim', 'doubl', 'check', 'use', 'hous', 'phone', 'call', 'simpl', 'mobil', 'number', 'surpris', 'enough', 'work', 'love', 'everyth', 'phone', 'downsid', 'phone', 'batteri', 'use', 'phone', 'long', 'overheat', 'batteri', 'life', 'quick', 'use', 'batteri', 'save', 'mode', 'help', 'time', 'get', 'realli', 'annoy', 'phone', 'start', 'warm', 'either', 'way', 'worth'], ['phone', 'descript', 'complet', 'wrong', 'phone', 'not', 'unlock', 'gsm', 'cdma', 'phone', 'requir', 'verizon', 'sim', 'work', 'phone', 'self', 'look', 'good', 'condit', 'not', 'comment', 'well', 'one', 'would', 'function', 'due', 'not', 'go', 'past', 'verizon', 'sim', 'requir', 'screen', 'start', 'previous', 'moto', 'x', 'amaz', 'hope', 'order', 'find', 'one', 'true', 'post'], ['even', 'sd', 'card', 'phone', 'great', 'perfect', 'easi', 'work'], ['not', 'buy', 'phone', 'unless', 'use', 'verizon', 'phone', 'not', 'unlock', 'say'], ['disappoint', 'not', 'unlock', 'version', 'advertis', 'verizon', 'version', 'mean', 'android', 'marshmallow', 'updat', 'phone', 'good', 'condit', 'though'], ['order', 'phone', 'screen', 'replac', 'drop', 'old', 'moto', 'x', 'gen', 'right', 'choic', 'solid', 'phone', 'look', 'cheaper', 'option', 'upgrad', 'newest', 'phone', 'observ', 'review', 'i', 'verizon', 'swap', 'sim', 'card', 'switch', 'phone', 'quick', 'painless', 'new', 'phone', 'work', 'deliv', 'android', 'lollipop', 'instal', 'ran', 'system', 'upgrad', 'wifi', 'twice', 'believ', 'get', 'appli', 'secur', 'patch', 'phone', 'upgrad', 'phone', 'not', 'unlock', 'howev', 'offici', 'unlock', 'phone', 'motorola', 'requir', 'extra', 'work'], ['phone', 'descript', 'complet', 'wrong', 'phone', 'not', 'unlock', 'gsm', 'cdma', 'phone', 'requir', 'verizon', 'sim', 'work', 'phone', 'self', 'look', 'good', 'condit', 'not', 'comment', 'well', 'one', 'would', 'function', 'due', 'not', 'go', 'past', 'verizon', 'sim', 'requir', 'screen', 'start', 'previous', 'moto', 'x', 'amaz', 'hope', 'order', 'find', 'one', 'true', 'post'], ['excel', 'telephon'], ['great', 'price'], ['phone', 'die', 'moto', 'would', 'not', 'warranti', 'luckili', 'sq', 'trade'], ['great', 'reliabl', 'phone', 'everyth', 'need', 'run', 'smooth', 'camera', 'decent', 'pictur', 'gps', 'strong', 'applic', 'work', 'fine', 'far', 'game', 'even', 'demand', 'run', 'smooth', 'screen', 'ip', 'bright', 'beauti', 'color', 'batteri', 'fine', 'could', 'capac'], ['excelent', 'cellphon', 'price', 'qualiti', 'bought', 'connect', 'south', 'america', 'work', 'well', 'would', 'not', 'suggest', 'updat', 'lollipop', 'may', 'run', 'slow', 'batteri', 'may', 'run', 'empti', 'faster', 'write', 'experi', 'moto', 'g', 'second', 'generat'], ['own', 'moto', 'x', 'gen', 'develop', 'edit', 'month', 'smooth', 'oper', 'android', 'phone', 'use', 'simpl', 'choic', 'get', 'great', 'data', 'phone', 'also', 'neat', 'tech', 'featur', 'not', 'find', 'elsewher', 'amol', 'activ', 'display', 'see', 'go', 'without', 'wake', 'phone', 'wake', 'phone', 'respond', 'say', 'ok', 'googl', 'made', 'possibl', 'addit', 'nlp', 'not', 'bother', 'unlock', 'boot', 'loader', 'root', 'littl', 'need', 'pain', 'slow', 'bloatwar', 'uninstal', 'phone', 'good', 'howev', 'instal', 'googl', 'play', 'flexibl', 'launcher', 'suit', 'posit', 'phone', 'let', 'say', 'use', 'adb', 'pc', 'unlock', 'littl', 'samsung', 'phone', 'clockworkmod', 'copi', 'zip', 'file', 'reboot', 'mayb', 'motorola', 'want', 'develop', 'unlock', 'reason', 'motorola', 'could', 'not', 'simpli', 'built', 'unlock', 'root', 'access', 'android', 'set', 'month', 'screen', 'power', 'music', 'play', 'paus', 'dialer', 'awkward', 'find', 'call', 'contact', 'want', 'edit', 'contact', 'devic', 'not', 'receiv', 'upgrad', 'lollipop', 'yetthes', 'gripe', 'not', 'amount', 'much', 'moto', 'x', 'develop', 'edit', 'phone', 'i', 'pleas', 'expect', 'use', 'primari', 'phone', 'two', 'year', 'mayb'], ['arriv', 'promis', 'new', 'seal', 'condit', 'phone', 'flawless', 'lack', 'size', 'make', 'phenomen', 'user', 'experi', 'like', 'call', 'iphon', 'android', 'describ', 'peopl', 'bloatwar', 'unnecessari', 'crap', 'everyth', 'need', 'make', 'phone', 'uniqu', 'quit', 'possibl', 'best', 'market', 'switch', 'galaxi', 'note', 'not', 'regret', 'one', 'bit'], ['pleas', 'phone', 'came', 'brand', 'new', 'packag', 'work', 'great', 'straight', 'talk', 'stat', 'sure', 'fast', 'perfect', 'size'], ['realli', 'like', 'size', 'shape', 'wear', 'phone', 'lanyard', 'around', 'neck', 'handi', 'unfortun', 'document', 'suppos', 'line', 'phone', 'old', 'motorola', 'discontinu', 'lot', 'troubl', 'use', 'phone', 'not', 'retriev', 'voicemail', 'messag', 'turn', 'ringer', 'back', 'turn'], ['phone', 'definit', 'not', 'everybodi', 'featur', 'craziest', 'thing', 'chang', 'rington', 'screen', 'incred', 'easi', 'read', 'even', 'direct', 'sunlight', 'call', 'clariti', 'phenomen', 'speaker', 'phone', 'loud', 'clear', 'make', 'call', 'phone', 'not', 'phone', 'fall', 'sever', 'short', 'come', 'sms', 'text', 'quit', 'bit', 'annoy', 'messag', 'edit', 'limit', 'number', 'symbol', 'make', 'mistak', 'need', 'delet', 'way', 'back', 'mistak', 'read', 'text', 'messag', 'also', 'pain', 'one', 'word', 'display', 'time', 'altern', 'got', 'phone', 'replac', 'broken', 'phone', 'intend', 'use', 'short', 'time', 'i', 'grown', 'accustom', 'not', 'mind', 'use', 'also', 'great', 'convers', 'piec', 'everybodi', 'think', 'toy'], ['hi', 'got', 'simpl', 'phone', 'shipyard', 'say', 'devic', 'great', 'camera', 'simpl', 'guy', 'knowledg', 'electron', 'enjoy', 'phone', 'not', 'say', 'enough', 'simpl', 'phone', 'sure', 'well', 'keep', 'good', 'phone', 'home', 'not', 'confisc', 'ship', 'forc', 'worker'], ['great', 'phone', 'basic', 'cell', 'phone', 'sound', 'qualiti', 'end', 'batteri', 'life', 'not', 'offer', 'extra', 'fine', 'problem', 'not', 'work', 'not', 'use', 'phone', 'mani', 'servic', 'need', 'requir', 'voic', 'mail', 'call', 'card', 'other'], ['recent', 'purshas', 'phone', 'exact', 'expect', 'everyth', 'read', 'true', 'work', 'wonder', 'reccomend', 'especi', 'actual', 'get', 'new', 'phone', 'not', 'refurbish', 'one'], ['start', 'phone', 'easi', 'set', 'i', 'rock', 'tune', 'right', 'i', 'write', 'review', 'drop', 'card', 'began', 'download', 'album', 'problem', 'simpl', 'follow', 'includ', 'instruct', 'phone', 'lag', 'time', 'not', 'major', 'issu', 'text', 'mms', 'phone', 'call', 'work', 'like', 'phone', 'read', 'cnn', 'news', 'daili', 'phone', 'work', 'great', 'overal', 'great', 'buy'], ['beauti', 'phone', 'not', 'batteri', 'still', 'not', 'horobl', 'bought', 'three', 'trust', 'disappoint'], ['bought', 'phone', 'black', 'friday', 'sale', 'day', 'deliveri', 'hype', 'follow', 'phone', 'odd', 'reason', 'though', 'phone', 'screen', 'far', 'worst', 'thing', 'screen', 'alway', 'present', 'hotkey', 'nav', 'bar', 'top', 'okay', 'everyday', 'app', 'like', 'facebook', 'take', 'grain', 'salt', 'destroy', 'phone', 'screen', 'phone', 'overheat', 'min', 'use', 'point', 'would', 'set', 'phone', 'somewher', 'cool', 'prevent', 'damag', 'charg', 'origin', 'box', 'arriv', 'charg', 'decent', 'price', 'not', 'mind', 'burn', 'hand', 'check', 'phone', 'burn', 'screen', 'overh', 'signal', 'drop', 'sever', 'time', 'day', 'like', 'overh', 'tri', 'charg', 'devic', 'almost', 'let', 'us', 'move', 'away', 'nexus', 'brand'], ['not', 'fast', 'not', 'key', 'sim'], ['order', 'phone', 'came', 'perfect', 'condit', 'howev', 'constant', 'get', 'add', 'slow', 'phone', 'drain', 'batteri', 'idea', 'get'], ['purchas', 'phone', 'replac', 'old', 'photon', 'q', 'month', 'contract', 'sprint', 'problem', 'charg', 'port', 'suppos', 'new', 'cheaper', 'asurion', 'insur', 'refurb', 'could', 'get', 'next', 'day', 'asurion', 'tell', 'busi', 'day', 'refurb', 'replac', 'first', 'got', 'new', 'devic', 'check', 'make', 'sure', 'actual', 'new', 'not', 'refurbish', 'new', 'work', 'perfect', 'well', 'old', 'photon', 'q', 'two', 'month', 'day', 'went', 'turn', 'screen', 'noth', 'appear', 'slid', 'keyboard', 'still', 'noth', 'reboot', 'hold', 'power', 'key', 'volum', 'noth', 'could', 'still', 'feel', 'haptic', 'feedback', 'screen', 'phone', 'function', 'sens', 'would', 'could', 'answer', 'incom', 'call', 'swipe', 'general', 'area', 'screen', 'alway', 'use', 'answer', 'took', 'sprint', 'store', 'tri', 'fix', 'brought', 'old', 'phone', 'hope', 'could', 'scaveng', 'part', 'fix', 'new', 'one', 'phone', 'shot', 'tech', 'tri', 'fix', 'phone', 'told', 'lot', 'photon', 'seen', 'similar', 'problem', 'end', 'refurb', 'photon', 'q', 'sprint', 'anoth', 'comedi', 'error', 'remaind', 'contract', 'got', 'galaxi', 'would', 'probabl', 'avoid', 'phone', 'even', 'similar', 'like', 'physic', 'keyboard', 'not', 'fact', 'design', 'year', 'old', 'also', 'phone', 'seem', 'hit', 'miss', 'come', 'build', 'qualiti', 'reliabl'], ['great', 'phone', 'great', 'price', 'brand', 'new', 'unopen', 'box', 'work', 'great', 'bought', 'daughter', 'love', 'slide', 'keyboard', 'featur', 'get', 'hard', 'find', 'manufactur', 'longer', 'produc', 'phone', 'frustrat', 'us', 'troubl', 'get', 'touch', 'screen', 'respond', 'finger', 'lot', 'time', 'wish', 'camera', 'qualiti', 'bit', 'better', 'ok', 'littl', 'better', 'digit', 'camera', 'alreadi', 'actual', 'kind', 'cheap', 'n', 'junki', 'not', 'lot', 'better', 'abl', 'take', 'quit', 'pretti', 'nice', 'pic', 'burn', 'man', 'howev', 'kept', 'baggi', 'keep', 'dust', 'real', 'problem', 'i', 'phone', 'due', 'android', 'os', 'version', 'make', 'near', 'imposs', 'instal', 'app', 'sd', 'card', 'instal', 'special', 'program', 'window', 'comput', 'get', 'develop', 'set', 'manual', 'alter', 'set', 'even', 'app', 'forc', 'instal', 'intern', 'memori', 'anyway', 'set', 'alter', 'not', 'instal', 'put', 'set', 'back', 'intern', 'nuisanc', 'find', 'troubl', 'memori', 'link', 'instruct', 'found', 'googl', 'search', 'help', 'thorough', 'read', 'care', 'not', 'work', 'miss', 'step', 'http', 'allstep'], [], ['fast', 'reliabl', 'durabl', 'word', 'motorola', 'although', 'sinc', 'older', 'pain', 'find', 'accesori', 'still', 'best', 'phone', 'arriv', 'quick'], ['work', 'great'], ['not', 'origin', 'one', 'bad', 'product', 'fragil', 'broken', 'alreadi', 'last', 'week', 'half', 'fraud', 'product', 'bad', 'qualiti', 'not', 'recommend', 'one', 'amazon', 'not', 'advertis'], ['recent', 'bought', 'phone', 'receiv', 'week', 'date', 'order', 'amazon', 'not', 'ship', 'day', 'though', 'say', 'usual', 'ship', 'hrs', 'not', 'bother', 'phone', 'look', 'sleek', 'sexi', 'everyon', 'around', 'think', 'coolest', 'phone', 'ever', 'get', 'compliment', 'not', 'problem', 'open', 'box', 'charg', 'phone', 'put', 'sim', 'minut', 'start', 'phone', 'menu', 'littl', 'confus', 'get', 'use', 'hate', 'menu', 'within', 'menu', 'option', 'sometim', 'not', 'notic', 'smmall', 'menu', 'icon', 'display', 'indic', 'one', 'level', 'menu', 'exist', 'item', 'car', 'charger', 'usb', 'cabl', 'concern', 'not', 'wast', 'money', 'bought', 'belkin', 'car', 'charger', 'belkin', 'mini', 'b', 'usb', 'cabl', 'walmart', 'search', 'audio', 'section', 'write'], ['realli', 'love', 'phone', 'work', 'remark', 'well', 'sound', 'perfect', 'except', 'bad', 'signal', 'fault', 'phone', 'endur', 'countless', 'fall', 'somet', 'realli', 'love', 'camera', 'work', 'almost', 'like', 'expens', 'digit', 'camera', 'great', 'packag', 'phone'], ['best', 'model', 'motorolla', 'find', 'need', 'phone', 'light', 'batteri', 'order', 'phone', 'model', 'razr'], ['grandmoth', 'love', 'first', 'phone', 'would', 'not', 'stop', 'complain', 'found', 'one'], ['stope', 'take', 'pictur', 'ask', 'refund', 'said', 'send', 'back', 'not', 'thing', 'pay', 'fot', 'postag', 'hand', 'send', 'back'], ['phone', 'arriv', 'good', 'condit', 'noscratch', 'damag', 'person', 'not', 'like', 'intern', 'expect', 'would', 'program', 'like', 'old', 'razor', 'supris', 'akward', 'not', 'figur', 'program', 'voic', 'dial', 'i', 'still', 'tri', 'arriv', 'faster', 'expect', 'would', 'recommend', 'order', 'supplier'], ['never', 'work'], ['broke', 'fast', 'not', 'work'], ['broken', 'less', 'year'], ['black', 'receiv', 'coupl', 'week', 'finish', 'came', 'differ', 'place', 'ugli', 'bought', 'cover', 'still', 'embarrass', 'use', 'phone', 'public', 'not', 'sell', 'inferior', 'product'], ['bad', 'bad'], ['one', 'like', 'look', 'bought', 'anoth'], ['excel', 'good', 'buy', 'satisfi', 'logist', 'hand', 'good', 'product', 'made', 'good', 'materi'], ['noth', 'wrong', 'phone', 'would', 'not', 'buy', 'anoth', 'one', 'anyon', 'phone', 'improv', 'much', 'obsolet'], ['phone', 'work', 'would', 'shut', 'sent', 'email', 'compani', 'would', 'not', 'honor', 'not', 'purchas'], ['first', 'phone', 'got', 'definit', 'not', 'not', 'ring', 'hing', 'weak', 'lot', 'scratch', 'seller', 'work', 'hard', 'get', 'phone', 'work', 'well', 'year', 'old', 'mother', 'law'], ['third', 'razr', 'own', 'easi', 'use', 'portabl', 'fit', 'anywher', 'bring', 'trail', 'run', 'sometim', 'sim', 'card', 'reinsert', 'better', 'contact', 'good', 'price'], ['expect', 'wish', 'ship', 'faster', 'oppos', 'almost', 'month', 'intern', 'ok'], ['look', 'amaz', 'great', 'button', 'respons', 'bad', 'thing', 'actual', 'pretti', 'big', 'deal', 'text', 'messag', 'set', 'store', 'messag', 'inbox', 'set', 'automat', 'delet', 'messag', 'certain', 'number', 'not', 'work', 'phone', 'receiv', 'appar', 'alter', 'program', 'phone', 'inbox', 'capac', 'messag', 'comput', 'i', 'not', 'dare', 'enough', 'mess', 'code', 'instruct', 'manual', 'also', 'say', 'space', 'batteri', 'compart', 'micro', 'sd', 'card', 'space', 'good', 'phone', 'perform', 'well', 'featur', 'littl', 'ridicul'], ['terribl', 'imit', 'accessori', 'poor', 'qualiti', 'batteri', 'not', 'fit', 'phone', 'batteri', 'cover', 'not', 'fit', 'phone', 'complet', 'short', 'total', 'dissatisfi', 'disappoint', 'purchas', 'caution', 'tech', 'cellular'], ['phone', 'not', 'like', 'old', 'one', 'know', 'bell', 'whistl', 'good'], ['not', 'see', 'screen'], ['product', 'mom', 'exact', 'need', 'deliv', 'satisfact', 'great', 'deal'], ['first', 'day', 'came', 'tri', 'charg', 'connect', 'charger', 'came', 'connect', 'said', 'imposs', 'charg'], ['want', 'updat', 'review', 'phone', 'purchas', 'februari', 'found', 'father', 'phone', 'complet', 'die', 'month', 'must', 'replac', 'strong', 'urg', 'not', 'buy', 'phone', 'without', 'warranti', 'bought', 'replac', 'year', 'old', 'father', 'old', 'razr', 'hold', 'togeth', 'blue', 'rubber', 'band', 'need', 'new', 'batteri', 'left', 'charger', 'hospit', 'need', 'new', 'charger', 'also', 'batteri', 'charger', 'togeth', 'would', 'cost', 'found', 'phone', 'need', 'phone', 'talk', 'famili', 'friend', 'want', 'switch', 'sim', 'card', 'readi', 'go', 'love', 'order', 'someth', 'love', 'know', 'expect', 'arriv', 'day', 'said', 'would'], ['phone', 'arriv', 'lock', 'oemforcheap', 'help', 'quick', 'code', 'tech', 'support', 'end', 'even', 'receiv', 'refund', 'troubl', 'great', 'custom', 'servic', 'thank', 'oemforcheap', 'thank', 'amazon'], ['razr', 'great', 'phone', 'order', 'one', 'howev', 'mine', 'came', 'deffect', 'batteri', 'batteri', 'compart', 'not', 'close', 'well', 'sship', 'back', 'cost', 'phone', 'worth', 'bought', 'anoth', 'phone'], ['bought', 'friend', 'far', 'could', 'see', 'batteri', 'new', 'howev', 'said', 'fulli', 'charg', 'would', 'last', 'coupl', 'hour'], ['receiv', 'telefeono', 'block', 'not', 'said', 'descript', 'bought', 'unlock', 'phone', 'decept', 'store', 'generat', 'addit', 'cost', 'pay', 'unlock', 'pleas', 'not', 'mislead', 'buyer', 'place', 'fals', 'refer', 'razr', 'unlock', 'phone', 'camera', 'video'], ['phone', 'seem', 'design', 'look', 'overal', 'phone', 'pretti', 'compact', 'much', 'easi', 'enough', 'carri', 'around', 'would', 'go', 'use', 'ran', 'bit', 'difficult', 'open', 'not', 'enough', 'edg', 'let', 'thumb', 'open', 'phone', 'oper', 'system', 'abl', 'get', 'bit', 'use', 'not', 'intuit', 'would', 'take', 'awhil', 'locat', 'correct', 'button', 'phone', 'program', 'auto', 'fill', 'featur', 'text', 'start', 'guess', 'word', 'tri', 'type', 'type', 'counter', 'product', 'caus', 'way', 'error', 'usual', 'not', 'alon', 'one', 'friend', 'use', 'phone', 'get', 'weirdest', 'text', 'make', 'go', 'huh', 'keypad', 'slim', 'line', 'phone', 'button', 'flush', 'near', 'imposs', 'use', 'dial', 'text', 'quick'], ['purchas', 'item', 'teenag', 'daughter', 'deliveri', 'prompt', 'phone', 'good', 'good', 'look', 'trust', 'would', 'not', 'take', 'sim', 'sudden', 'start', 'not', 'work', 'not', 'send', 'text', 'receiv', 'not', 'hold', 'overnight', 'get', 'one', 'minut', 'talk', 'dissappoint', 'actual', 'buy', 'anoth', 'phone', 'compani', 'would', 'not', 'replac', 'reimburs', 'money', 'around', 'tax', 'ship'], ['love', 'phone', 'easi', 'read', 'ring', 'loud', 'enough', 'hear', 'plus', 'beauti', 'plus', 'instruct', 'easi', 'read', 'understand', 'love', 'barbara', 'martin'], ['motorola', 'razr', 'get', 'model', 'life', 'need', 'basic', 'communitoin', 'go', 'hard', 'user', 'point', 'view', 'phone', 'give', 'good', 'servic', 'good', 'batteri', 'life', 'day', 'without', 'recharg', 'limit', 'use', 'nice', 'easi', 'menus', 'simpl', 'intuit', 'easili', 'laid', 'logic', 'memori', 'good', 'hold', 'lot', 'pictur', 'camera', 'even', 'digit', 'zoom', 'sort', 'camera', 'cetrain', 'not', 'slr', 'qualiti', 'easili', 'describ', 'adequ', 'basic', 'throw', 'away', 'like', 'charg', 'eas', 'well', 'either', 'car', 'boat', 'hous', 'usb', 'comput', 'speak', 'boat', 'not', 'pick', 'interfer', 'like', 'last', 'mobil', 'phone', 'like', 'size', 'well', 'fit', 'great', 'purs', 'lot', 'accessori', 'well', 'need', 'keep', 'pocket', 'slim', 'enough', 'not', 'hing', 'flip', 'decent', 'size', 'not', 'like', 'break', 'like', 'phone', 'i', 'not', 'techi', 'simplic', 'big', 'bonus', 'think', 'phone', 'gran', 'might', 'ideal', 'i', 'quit', 'pleas', 'purchas', 'might'], ['good', 'phone', 'not', 'great', 'phone', 'like', 'thought', 'like', 'flip', 'phone', 'seem', 'littl', 'old', 'date'], ['phone', 'suppos', 'new', 'one', 'found', 'scratch', 'batteri', 'compart', 'applic', 'phone', 'requir', 'password', 'guess', 'previous', 'set', 'last', 'owner', 'cos', 'not', 'work', 'phone', 'refurbish', 'accord', 'must', 'not', 'trust', 'compani', 'sold', 'tri', 'find', 'anoth', 'compani', 'cos', 'sister', 'realli', 'love', 'razor'], ['scuf', 'screen', 'outsid', 'screen', 'keypad', 'look', 'like', 'come', 'charger', 'includ', 'would', 'never', 'work', 'model', 'current', 'advertis', 'like', 'new'], ['awesom'], ['month', 'not', 'work', 'not', 'give', 'refund', 'hate', 'new', 'realli', 'not', 'know', 'conscienc', 'still', 'aliv'], ['nice', 'older', 'phone'], ['phone', 'wonder', 'starter', 'phone', 'receiv', 'phone', 'time', 'manner', 'abl', 'get', 'set', 'without', 'hassl', 'not', 'iphon', 'would', 'phone', 'great', 'phone', 'price'], ['i', 'sort', 'fellow', 'world', 'absolut', 'best', 'equip', 'still', 'like', 'edsel', 'also'], ['great', 'phone', 'best', 'flip', 'phone', 'ever', 'thin', 'enough', 'front', 'pocket', 'big', 'screen', 'perfect', 'not', 'need', 'smart', 'phone'], ['excel', 'servic', 'problem', 'respons', 'question', 'definit', 'busi', 'compani', 'star'], ['not', 'phone', 'pictur', 'pictur', 'bnx', 'box', 'origin', 'not', 'phone', 'second', 'time', 'razr', 'black', 'want', 'not', 'got', 'old', 'bait', 'switch'], ['muy', 'buen', 'producto', 'lo', 'recibi', 'en', 'buen', 'estado', 'corto', 'tiempo', 'solo', 'que', 'la', 'compañia', 'de', 'envio', 'informo', 'que', 'faltaba', 'la', 'factura', 'comerci'], ['order', 'phone', 'use', 'europ', 'sim', 'card', 'work', 'pretti', 'well', 'far', 'want', 'simpl', 'not', 'ugli', 'phone', 'one', 'worth', 'money'], ['thought', 'phone', 'everyth', 'look', 'thin', 'inexpens', 'camera', 'thing', 'serious', 'shortcom', 'true', 'phone', 'go', 'three', 'year', 'old', 'sinc', 'first', 'introduc', 'expect', 'better', 'good', 'form', 'factor', 'realli', 'nice', 'super', 'thin', 'nice', 'carri', 'pocket', 'camera', 'decent', 'especi', 'vga', 'resolut', 'screen', 'bright', 'phone', 'look', 'realli', 'good', 'come', 'bad', 'due', 'uncomfort', 'hold', 'hand', 'extend', 'period', 'uncomfort', 'ear', 'well', 'might', 'not', 'uncomfort', 'earpiec', 'volum', 'suffici', 'not', 'case', 'even', 'maximum', 'volum', 'phone', 'almost', 'imposs', 'hear', 'area', 'signific', 'background', 'nois', 'walk', 'outsid', 'near', 'reason', 'quiet', 'street', 'complet', 'overwhelm', 'earpiec', 'unaccept', 'key', 'incred', 'small', 'well', 'fair', 'larg', 'hand', 'small', 'form', 'factor', 'phone', 'may', 'not', 'valid', 'critic', 'find', 'constant', 'hit', 'want', 'hit', 'end', 'circl', 'key', 'mean', 'hit', 'use', 'fingernail', 'press', 'button', 'phone', 'receiv', 'clear', 'remanufactur', 'item', 'deep', 'goug', 'phone', 'hous', 'underneath', 'batteri', 'cover', 'slight', 'scratch', 'side', 'phone', 'also', 'not', 'includ', 'set', 'earphon', 'accessori', 'look', 'thrown', 'box', 'protect', 'packag', 'accessori', 'phone', 'phone', 'not', 'thought', 'would', 'i', 'return', 'lack', 'suffici', 'earpiec', 'volum', 'realli', 'final', 'nail', 'coffin'], ['nice', 'batteri', 'last', 'hrs', 'recharg', 'everyday'], ['husband', 'alreadi', 'phone', 'sever', 'year', 'final', 'broke', 'want', 'phone', 'except', 'rough', 'durabl'], ['great', 'phone', 'knew', 'would', 'use', 'model', 'probabl', 'eight', 'year', 'alreadi', 'old', 'one', 'get', 'tire', 'model', 'not', 'fanci', 'get', 'job', 'done', 'work', 'home', 'husband', 'tri', 'differ', 'new', 'flip', 'phone', 'would', 'work', 'store', 'town', 'would', 'not', 'ring', 'home', 'plus', 'arriv', 'earlier', 'expect'], ['tundra', 'heavi', 'duti', 'rug', 'describ', 'addit', 'extern', 'antenna', 'servic', 'bar', 'maxim', 'perfect', 'husband', 'work', 'outsid', 'easi', 'use', 'intuit', 'set', 'would', 'buy', 'product'], ['phone', 'sold', 'new', 'use', 'say', 'number', 'attach', 'work', 'time', 'middl', 'call', 'last', 'coupl', 'minut', 'phone', 'shut', 'also', 'want', 'let', 'save', 'number', 'memori', 'card'], ['great', 'phone', 'knew', 'would', 'use', 'model', 'probabl', 'eight', 'year', 'alreadi', 'old', 'one', 'get', 'tire', 'model', 'not', 'fanci', 'get', 'job', 'done', 'work', 'home', 'husband', 'tri', 'differ', 'new', 'flip', 'phone', 'would', 'work', 'store', 'town', 'would', 'not', 'ring', 'home', 'plus', 'arriv', 'earlier', 'expect'], ['phone', 'would', 'not', 'hold', 'charg', 'plug', 'night', 'regist', 'fulli', 'charg', 'dead', 'pm', 'sit', 'standbi', 'made', 'min', 'phone', 'call', 'day', 'tundra', 'year', 'ago', 'return', 'would', 'not', 'turn', 'good', 'review', 'thought', 'i', 'would', 'tri', 'mistak'], ['bought', 'husband', 'happi', 'phone', 'second', 'tundra', 'noth', 'els'], ['bought', 'phone', 'dad', 'use', 'oversea', 'alreadi', 'sim', 'card', 'not', 'interest', 'phone', 'fanci', 'bell', 'whistl', 'phone', 'perfect', 'took', 'phone', 'put', 'sim', 'card', 'back', 'busi'], ['work', 'expect', 'unlock', 'small', 'easi', 'lot', 'talk', 'time', 'singl', 'simpl', 'talk', 'voicemail', 'frame', 'not', 'speaker', 'phone', 'two', 'star', 'not', 'clear'], ['prepar', 'european', 'vacat', 'past', 'experi', 'knew', 'would', 'lot', 'easier', 'phone', 'could', 'use', 'europ', 'buy', 'local', 'prepaid', 'phone', 'card', 'avoid', 'roam', 'charg', 'found', 'unlock', 'phone', 'anoth', 'site', 'lot', 'money', 'sure', 'could', 'get', 'elsewher', 'much', 'cheaper', 'sure', 'found', 'amazon', 'phone', 'arriv', 'great', 'condit', 'simpl', 'come', 'charger', 'need', 'need', 'small', 'phone', 'could', 'make', 'emerg', 'call', 'receiv', 'text', 'messag', 'friend', 'serv', 'purpos', 'well', 'thank', 'phone', 'avail', 'afford', 'price', 'work', 'well', 'differ', 'european', 'countri', 'less', 'headach', 'problem', 'regular', 'cell', 'phone'], ['bought', 'two', 'phone', 'use', 'europ', 'work', 'perfect', 'arriv', 'bought', 'local', 'sim', 'card', 'put', 'refresh', 'need', 'better', 'rent', 'could', 'buy', 'inexpens', 'phone', 'wherev', 'unlock', 'phone', 'better', 'cost', 'effect', 'solut', 'long', 'run'], ['simpl', 'quad', 'band', 'good', 'use', 'oversea', 'use', 'cdma', 'us', 'buy', 'travel', 'oversea'], ['purchas', 'phone', 'oversea', 'use', 'work', 'great', 'portug', 'purchas', 'local', 'phone', 'card', 'arriv', 'airport', 'sound', 'clear', 'recept', 'alway', 'good', 'practic', 'everi', 'went', 'batteri', 'life', 'also', 'good', 'basicali', 'charg', 'phone', 'everi', 'third', 'day', 'light', 'averag', 'look', 'non', 'expens', 'phone', 'comun', 'without', 'bell', 'whistl'], ['cheap', 'phone', 'feel', 'cheap', 'well', 'work', 'surviv', 'coupl', 'drop', 'floor', 'alreadi', 'not', 'expect', 'much', 'limit', 'memori', 'fill', 'text', 'messag', 'market', 'get', 'cheapest', 'phone', 'possibl', 'allow', 'make', 'phone', 'call', 'one', 'fine'], ['bought', 'new', 'car', 'bluetooth', 'built', 'need', 'bluetooth', 'phone', 'one', 'absolut', 'great', 'garbag', 'phone', 'pop', 'sim', 'card', 'old', 'phone', 'bingo', 'super'], ['nice', 'phone', 'work', 'proper', 'answer', 'phone', 'not', 'hear', 'person', 'line', 'put', 'phone', 'speaker', 'order', 'hear', 'caus', 'peopl', 'hang', 'phone', 'piec', 'junk', 'start', 'happen', 'two', 'day', 'got', 'bad', 'choic'], ['pressur', 'spot', 'exterior', 'screen'], ['use'], ['gone', 'sever', 'expens', 'phone', 'model', 'not', 'seem', 'get', 'lost', 'stop', 'work', 'great', 'bargain'], ['would', 'star', 'sent', 'instruct', 'put', 'batteri', 'easi', 'phone'], ['second', 'phone', 'boughten', 'seller', 'stock', 'excel', 'product', 'basic', 'phone', 'great', 'teenag', 'daughter'], ['sound', 'qualiti', 'best', 'cours', 'not', 'make', 'anymor'], ['happi'], ['phone', 'good', 'condit', 'problem', 'activ'], ['great', 'condit', 'worke', 'like', 'old', 'one'], ['great', 'phone', 'servic'], ['swim', 'mini', 'upgrad', 'samsung', 'thank', 'much', 'fine', 'phone', 'not', 'anyth', 'droid', 'would', 'not', 'big', 'pocket', 'purchas', 'promis', 'like', 'motorola', 'oper', 'better', 'happi'], ['keep', 'freez', 'batteri', 'drain', 'fast'], ['one', 'powerhous', 'phone', 'would', 'definet', 'buy', 'anoth'], ['recent', 'upgrad', 'motorola', 'razr', 'go', 'three', 'blackberri', 'phone', 'five', 'year', 'new', 'phone', 'two', 'week', 'absolut', 'surpass', 'expect', 'everi', 'phone', 'intern', 'unlock', 'version', 'current', 'motorola', 'razr', 'carri', 'verizon', 'us', 'howev', 'razr', 'work', 'gsm', 'carrier', 'work', 'card', 'us', 'run', 'not', 'wifi', 'not', 'sure', 'yet', 'definit', 'not', 'lte', 'compat', 'per', 'motorola', 'specif', 'bit', 'skeptic', 'purchas', 'expens', 'unlock', 'product', 'onlin', 'not', 'realli', 'know', 'sure', 'would', 'glitch', 'function', 'proper', 'us', 'i', 'glad', 'took', 'various', 'featur', 'call', 'crystal', 'clear', 'recept', 'end', 'great', 'speaker', 'phone', 'even', 'road', 'ring', 'tone', 'nice', 'swype', 'featur', 'may', 'enabl', 'disabl', 'avail', 'text', 'mode', 'respons', 'keyboard', 'even', 'user', 'not', 'accustom', 'touch', 'screen', 'super', 'easi', 'key', 'pop', 'screen', 'elimin', 'fat', 'finger', 'back', 'face', 'decent', 'qualiti', 'front', 'face', 'self', 'portrait', 'impress', 'clear', 'shot', 'dare', 'say', 'close', 'brother', 'lg', 'optimus', 'g', 'highest', 'photo', 'qualiti', 'market', 'current', 'video', 'qualiti', 'pretti', 'nice', 'camera', 'featur', 'also', 'well', 'done', 'quick', 'access', 'button', 'lower', 'right', 'edg', 'not', 'dig', 'find', 'realli', 'nice', 'spontan', 'unexpect', 'photo', 'op', 'cours', 'alway', 'happen', 'one', 'not', 'readi', 'corn', 'gorilla', 'glass', 'touch', 'screen', 'look', 'feel', 'not', 'feel', 'flimsi', 'mean', 'probabl', 'could', 'get', 'away', 'without', 'cover', 'probabl', 'not', 'bad', 'idea', 'screen', 'protector', 'reduc', 'smudg', 'one', 'devic', 'nice', 'thin', 'probabl', 'compar', 'iphon', 'term', 'overal', 'not', 'come', 'overwhelm', 'number', 'app', 'nice', 'build', 'app', 'list', 'custom', 'mani', 'option', 'need', 'nice', 'vari', 'workday', 'weekend', 'also', 'overal', 'pleasant', 'alarm', 'sound', 'nice', 'come', 'blackberri', 'percept', 'skew', 'anyth', 'realli', 'sound', 'better', 'said', 'batteri', 'life', 'fair', 'decent', 'import', 'person', 'not', 'mani', 'review', 'focus', 'much', 'i', 'go', 'detail', 'interest', 'today', 'exampl', 'spoke', 'phone', 'hour', 'total', 'play', 'pandora', 'hour', 'sent', 'receiv', 'text', 'day', 'read', 'email', 'repli', 'email', 'check', 'fb', 'three', 'batteri', 'life', 'left', 'hour', 'usag', 'alway', 'instal', 'android', 'app', 'killer', 'termin', 'various', 'app', 'period', 'run', 'background', 'optim', 'batteri', 'life', 'also', 'product', 'come', 'us', 'wall', 'plug', 'usb', 'cord', 'plug', 'nice', 'sinc', 'also', 'go', 'wall', 'charg', 'also', 'phone', 'sent', 'uk', 'well', 'also', 'usb', 'compat', 'handi', 'trip', 'conclus', 'look', 'durabl', 'practic', 'phone', 'disappoint', 'gsm', 'provid', 'us', 'not', 'carri', 'motorola', 'razr', 'devic', 'perfect', 'workaround', 'solut', 'absolut', 'ador', 'phone', 'best', 'choic', 'thank', 'read', 'hope', 'help', 'august', 'pleas', 'phone', 'instal', 'dropbox', 'day', 'use', 'edit', 'document', 'quickoffic', 'amaz', 'respons', 'fast', 'not', 'found', 'flaw', 'yet', 'i', 'use', 'two', 'month'], ['love', 'fact', 'ship', 'soon', 'christma', 'holiday', 'factor', 'everyon', 'much', 'love', 'phone'], ['hi', 'bought', 'phone', 'month', 'back', 'everyth', 'good', 'except', 'fact', 'bought', 'micro', 'sim', 'phone', 'not', 'work', 'phone', 'bewar', 'seller', 'sinc', 'phone', 'not', 'reset', 'factori', 'use', 'argentina', 'set', 'languag', 'confirm', 'done', 'amazon', 'promis', 'websit'], ['phone', 'ship', 'soon', 'payment', 'made', 'got', 'phone', 'new', 'unus', 'love', 'phone', 'soo', 'much', 'thank', 'guy', 'busi'], ['sleek', 'thin', 'not', 'issu', 'unlock', 'phone', 'work', 'well', 'screen', 'dark', 'black', 'see', 'sort', 'scratch', 'line', 'back', 'side', 'screen', 'mayb', 'not', 'realli', 'bother', 'main', 'use', 'email', 'read', 'minut', 'phone', 'call', 'per', 'bare', 'surviv', 'one', 'day', 'wifi', 'gps', 'good', 'phone', 'price', 'look', 'forward', 'upgrad', 'ic'], ['phone', 'awesom'], ['work', 'great', 'deliv', 'earlier', 'expect'], ['cell', 'phone', 'realli', 'present', 'easi', 'set', 'yet', 'anoth', 'languag', 'happi', 'purchas', 'would', 'like', 'sell', 'accessori', 'like', 'protect', 'cose', 'headphon', 'ship', 'took', 'week', 'hong', 'kong', 'fedex', 'excel', 'congratul', 'seller', 'serious', 'profession', 'treatment', 'greet', 'mexico'], ['i', 'go', 'give', 'detail', 'review', 'phone', 'may', 'read', 'not', 'want', 'read', 'long', 'drawn', 'review', 'phone', 'two', 'week', 'far', 'great', 'let', 'say', 'first', 'would', 'given', 'star', 'rate', 'state', 'week', 'plenti', 'time', 'thing', 'go', 'wrong', 'move', 'pleas', 'find', 'phone', 'screen', 'protector', 'instal', 'alreadi', 'purchas', 'packag', 'screen', 'protector', 'not', 'need', 'state', 'product', 'descript', 'phone', 'come', 'spare', 'batteri', 'batteri', 'cover', 'one', 'leather', 'flip', 'cover', 'wall', 'charger', 'detach', 'usb', 'cabl', 'headphon', 'wall', 'unit', 'european', 'electr', 'outlet', 'not', 'use', 'usb', 'cabl', 'plug', 'usa', 'wall', 'unit', 'alreadi', 'earphon', 'cheap', 'actual', 'sound', 'pretti', 'good', 'cpu', 'dual', 'core', 'resolut', 'better', 'expect', 'rear', 'camera', 'pretti', 'good', 'list', 'would', 'say', 'like', 'front', 'camera', 'skype', 'thing', 'like', 'long', 'area', 'well', 'lit', 'hard', 'intern', 'storag', 'pop', 'microsd', 'card', 'old', 'phone', 'work', 'fine', 'work', 'well', 'use', 'edg', 'data', 'speed', 'wifi', 'not', 'avail', 'not', 'phone', 'fault', 'coverag', 'not', 'reach', 'area', 'yet', 'overal', 'hardtop', 'beat', 'much', 'phone', 'price', 'paid', 'ship', 'includ', 'took', 'phone', 'box', 'charg', 'pop', 'sim', 'sd', 'smooth', 'sail', 'almost', 'app', 'instal', 'far', 'good', 'hope', 'help', 'someon', 'review', 'quit', 'help'], ['far', 'work', 'pretti', 'good', 'except', 'big', 'size', 'expect', 'low', 'price', 'good', 'qualiti'], ['let', 'start', 'say', 'phone', 'well', 'worth', 'cash', 'skeptic', 'first', 'new', 'phone', 'brand', 'honest', 'never', 'heard', 'wrong', 'featur', 'great', 'yet', 'real', 'problem', 'camera', 'awesom', 'even', 'rear', 'face', 'reason', 'gave', 'star', 'instead', 'not', 'get', 'background', 'keyboard', 'stay', 'theme', 'want'], ['beyond', 'expect', 'price', 'compani', 'fast', 'excel', 'custom', 'servic', 'phone', 'fast', 'batteri', 'life', 'incred', 'compar', 'phone', 'i', 'great', 'plus', 'order', 'batteri', 'good', 'price', 'high', 'recommend', 'phone'], ['camera', 'not', 'good', 'not', 'take', 'clear', 'pictur', 'even', 'outsid'], ['bought', 'friend', 'not', 'tech', 'look', 'pretti', 'much', 'steal', 'show', 'budget', 'phone', 'may', 'even', 'motorola', 'offer', 'not', 'care', 'not', 'know', 'stock', 'vanilla', 'android', 'mean', 'lot', 'experi', 'asus', 'comput', 'manufactur', 'alway', 'amaz', 'sheer', 'qualiti', 'product', 'claim', 'succeed', 'deliv', 'mobil', 'devic'], ['foreign', 'model', 'not', 'lte', 'capabl', 'not', 'buy', 'look', 'use', 'servic', 'unit', 'state', 'got', 'servic', 'multipl', 'carrier', 'end', 'send', 'back'], ['bought', 'phone', 'month', 'ago', 'love', 'decent', 'process', 'power', 'nice', 'big', 'screen', 'great', 'batteri', 'life', 'smartphon', 'day', 'catch', 'us', 'not', 'go', 'get', 'lte', 'coverag', 'version', 'phone', 'pick', 'lte', 'band', 'common', 'use', 'asian', 'european', 'carrier', 'happen', 'carrier', 'use', 'band', 'current', 'share', 'hsdpa', 'band', 'fortun', 'pretti', 'easi', 'get', 'not', 'expect', 'great', 'internet', 'speed', 'us'], ['phone', 'arriv', 'fast', 'fast', 'great', 'compani', 'took', 'minut', 'adjust', 'window', 'base', 'phone', 'got', 'love', 'not', 'know', 'pixel', 'critic', 'camera', 'phone', 'great', 'phone', 'great', 'camera', 'look', 'good', 'plus', 'remind', 'thing', 'oper', 'voic', 'command', 'good', 'larg', 'phone', 'larg', 'hand', 'problem', 'ever', 'could', 'issu', 'peopl'], ['second', 'tri', 'even', 'though', 'return', 'first', 'one', 'thought', 'would', 'tri', 'order', 'phone', 'still', 'want', 'accessori', 'purchas', 'first', 'one', 'happi', 'report', 'actual', 'receiv', 'intern', 'version', 'not', 'chines', 'version', 'phone', 'actual', 'connect', 'internet', 'account', 'without', 'issu', 'use', 'phone', 'sever', 'hour', 'without', 'unusu', 'heat', 'happen', 'origin', 'purchas', 'i', 'updat', 'anyth', 'crazi', 'happen', 'far', 'happi', 'camper', 'warn', 'interest', 'buyer', 'make', 'sure', 'get', 'correct', 'version', 'origin', 'within', 'first', 'two', 'day', 'i', 'phone', 'i', 'encount', 'problem', 'first', 'phone', 'receiv', 'not', 'intern', 'version', 'instead', 'chines', 'version', 'vs', 'seem', 'remov', 'lte', 'capabl', 'unknown', 'reason', 'phone', 'becam', 'hot', 'tri', 'figur', 'set', 'network', 'would', 'also', 'shut', 'random', 'factori', 'reset', 'fix', 'issu', 'see', 'chines', 'phone', 'reboot', 'back', 'chines', 'figur', 'get', 'back', 'english', 'also', 'tri', 'get', 'past', 'factori', 'reset', 'instruct', 'still', 'could', 'not', 'get', 'access', 'network', 'even', 'went', 'troubleshoot', 'tech', 'hour', 'last', 'attempt', 'phone', 'stop', 'charg', 'tri', 'wiggl', 'cord', 'remov', 'reinsert', 'plug', 'phone', 'tablet', 'charger', 'charg', 'decid', 'done', 'know', 'phone', 'great', 'capabl', 'one', 'receiv', 'lemon', 'return'], ['excel', 'phone', 'love'], ['differ'], ['phone', 'great', 'receiv', 'new', 'record', 'time', 'howev', 'not', 'support', 'use', 'app', 'get', 'onlin', 'everi', 'time', 'allow', 'phone', 'die', 'take', 'batteri', 'lose', 'contact', 'unless', 'store', 'sim', 'card', 'hate', 'plus', 'side', 'extrem', 'cheap', 'refus', 'pay', 'hundr', 'cell', 'phone', 'one', 'great', 'price', 'not', 'mind', 'not', 'internet', 'access', 'wonder', 'phone', 'not', 'care', 'want', 'gps', 'fb', 'phone', 'must', 'move'], ['fast', 'ship', 'great', 'product'], ['data', 'plan', 'not', 'not', 'not', 'use', 'phone', 'day', 'rumor', 'delet', 'everyth', 'fals', 'newer', 'sidekick', 'updat', 'softwar', 'fix', 'delet', 'problem', 'still', 'text'], ['great', 'phone', 'great', 'year', 'old', 'text', 'call', 'not', 'need', 'data', 'brand', 'new', 'box', 'great', 'purchas'], ['got', 'friend', 'mine', 'whose', 'want', 'sidekick', 'awhil', 'got', 'one', 'soonersoft', 'electron', 'got', 'fast', 'great', 'shape', 'could', 'not', 'realli', 'tell', 'use', 'much', 'made', 'friend', 'realli', 'happi', 'satisfi'], ['bought', 'grandmoth', 'button', 'win', 'deal'], ['slow', 'slow', 'slow'], ['beabeauti', 'wos', 'gift', 'son'], ['own', 'hour', 'serious', 'android', 'fan', 'say', 'impress', 'littl', 'devic', 'first', 'knock', 'star', 'right', 'start', 'label', 'dual', 'core', 'not', 'true', 'singl', 'core', 'mediatek', 'powervr', 'sgx', 'gpu', 'antutu', 'not', 'run', 'howev', 'trust', 'bit', 'droid', 'hardwar', 'info', 'also', 'work', 'say', 'thing', 'plus', 'camera', 'list', 'max', 'res', 'rather', 'per', 'info', 'bonus', 'notic', 'get', 'differ', 'number', 'batteri', 'level', 'charg', 'reboot', 'drop', 'not', 'sure', 'seen', 'phone', 'tablet', 'devic', 'not', 'appear', 'root', 'want', 'root', 'check', 'root', 'genius', 'also', 'found', 'market', 'app', 'name', 'howtoroot', 'risk', 'not', 'know', 'root', 'probabl', 'not', 'need', 'screen', 'not', 'sure', 'kind', 'screen', 'view', 'angl', 'limit', 'still', 'nice', 'enough', 'price', 'devic', 'power', 'accuraci', 'respons', 'touch', 'finger', 'amaz', 'thought', 'sure', 'would', 'troubl', 'type', 'keyboard', 'came', 'put', 'digit', 'wifi', 'pw', 'without', 'one', 'messup', 'not', 'notic', 'real', 'lag', 'delay', 'swipe', 'mess', 'around', 'tweak', 'devic', 'overal', 'quit', 'happi', 'get', 'one', 'son', 'xmas', 'wish', 'could', 'buy', 'extra', 'batteri', 'somewher', 'not', 'found', 'store', 'across', 'web', 'carri', 'bother', 'great', 'deal', 'tempt', 'take', 'anoth', 'star', 'harsh', 'know', 'resolut', 'buy', 'anoth', 'watch', 'get', 'one', 'make', 'expens', 'batteri', 'replac', 'review', 'not', 'yet', 'done', 'edit', 'add', 'pull', 'sim', 'comment', 'recept', 'call', 'qualiti', 'text', 'also', 'still', 'need', 'test', 'gps', 'thing', 'not', 'hold', 'much', 'star', 'rate', 'want', 'wrist', 'mini', 'tablet', 'fun', 'wifi', 'chang', 'item', 'list', 'name', 'reflect', 'singl', 'core', 'get', 'star', 'assum', 'not', 'find', 'reason', 'knock', 'anoth', 'star', 'not', 'like', 'misl'], ['excelent', 'producto'], ['far', 'decent', 'phone', 'i', 'own', 'similar', 'nokia', 'phone', 'sever', 'year', 'alway', 'reliabl', 'not', 'want', 'over', 'critic', 'wish', 'call', 'qualiti', 'better', 'read', 'lot', 'rave', 'review', 'prior', 'purchas', 'almost', 'review', 'mention', 'great', 'call', 'qualiti', 'not', 'experi', 'previous', 'phone', 'nokia', 'xpress', 'music', 'old', 'school', 'call', 'qualiti', 'phone', 'alway', 'good', 'not', 'think', 'came', 'headphon', 'set', 'ear', 'tend', 'larger', 'size', 'still', 'found', 'ear', 'bud', 'inexpens', 'decent', 'batteri', 'life', 'sever', 'day', 'even', 'make', 'multipl', 'call', 'not', 'ever', 'caught', 'ignor', 'kid', 'stare', 'smart', 'phone', 'day', 'con', 'fair', 'mediocr', 'call', 'qualityno', 'bluetooth', 'capabilityear', 'bud', 'largeif', 'never', 'own', 'nokia', 'sure', 'read', 'instruct', 'manual', 'use', 'button', 'side', 'phone', 'adjust', 'volum', 'took', 'figur', 'volum', 'adjust', 'use', 'left', 'right', 'joystick', 'button'], ['bought', 'dad', 'know', 'call', 'pretti', 'basic', 'phone', 'work', 'not', 'know', 'peopl', 'say', 'lock'], ['not', 'work'], ['mom', 'use', 'phone', 'complet', 'satisfi'], ['unabl', 'use', 'foreign', 'money', 'unabl', 'return', 'product', 'not', 'take', 'packag'], ['shoddi', 'broke', 'less', 'two', 'week', 'use'], ['nice', 'simpl', 'work', 'well', 'i', 'not', 'afraid', 'kid', 'lose', 'cheap', 'anyway'], ['good', 'batteri', 'use', 'day'], ['basic', 'phone', 'batteri', 'hold', 'pretti', 'well', 'around', 'small', 'size', 'basic', 'durabl'], ['great', 'valu', 'arriv', 'time'], ['one', 'got', 'not', 'work', 'proper', 'defect', 'batteri', 'charg', 'one', 'block', 'overnight', 'phone', 'not', 'get', 'get', 'servic', 'rington', 'not', 'work', 'probabl', 'defect', 'phone', 'never', 'expect', 'nokia', 'phone', 'give', 'much', 'problem'], ['mom', 'use', 'phone', 'complet', 'satisfi'], ['not', 'work'], ['far', 'phone', 'everyth', 'expect', 'easi', 'use', 'decent', 'processor', 'stabl', 'softwar', 'good', 'camera', 'lot', 'app', 'limit', 'simpli', 'not', 'expect', 'see', 'new', 'nokia', 'phone', 'camera', 'despit', 'decent', 'qualiti', 'none', 'basic', 'option', 'simpler', 'phone', 'provid', 'lack', 'filter', 'color', 'mode', 'even', 'brigth', 'batteri', 'life', 'kind', 'short', 'not', 'make', 'mani', 'call', 'brows', 'web', 'lot', 'consum', 'batteri', 'day', 'special', 'use', 'internet', 'browser', 'not', 'display', 'page', 'ord', 'way', 'one', 'would', 'expect', 'littl', 'control', 'zoom', 'either', 'see', 'page', 'far', 'see', 'way', 'close', 'much', 'text', 'sometim', 'get', 'compress', 'thin', 'not', 'display', 'menu', 'option', 'spanish', 'despit', 'intern', 'italian', 'french', 'portugues', 'languag', 'packag', 'problem', 'signal', 'recept', 'kind', 'weak', 'one', 'most', 'caus', 'current', 'carrier', 'movilnet', 'venezuela', 'apar', 'carrier', 'not', 'friend', 'unlock', 'phone', 'app', 'requir', 'internet', 'accs', 'like', 'whatsapp', 'not', 'support', 'bare', 'suport', 'chang', 'data', 'packet', 'acc', 'point', 'manual', 'use', 'internet', 'still', 'lot', 'limit', 'probali', 'move', 'stabl', 'expens', 'carrier', 'like', 'digitel', 'make', 'sure', 'configur', 'unlock', 'phone', 'go', 'buy', 'use', 'fullest', 'countri', 'read', 'lot', 'review', 'consult', 'forum', 'not', 'put', 'new', 'sim', 'card', 'expect', 'everyth', 'work', 'fine', 'sometim', 'not', 'simpl'], ['phone', 'not', 'work', 'wellthi', 'phone', 'first', 'would', 'not', 'charg', 'charger', 'includ', 'box', 'touchscreen', 'respond', 'worst', 'broken'], ['exelent'], ['excel'], ['lost'], ['hard', 'go', 'back', 'regular', 'digit', 'camera', 'use', 'camera', 'phone', 'qualiti', 'pictur', 'tricki', 'situat', 'simpli', 'amaz'], ['korean', 'not', 'support'], ['exelent', 'telefono'], ['noth', 'say', 'worst', 'devic', 'ever'], ['excelent'], ['bought', 'phone', 'mom', 'said', 'unlock', 'intern', 'sim', 'not', 'work', 'say', 'lock', 'phone', 'disappoint'], ['nice'], ['excel'], ['excel'], ['satisfactori', 'purcha'], ['excel'], ['fast', 'item', 'complet'], ['phone', 'deliv', 'time', 'perfect', 'peopl', 'not', 'want', 'take', 'step', 'smartphon'], ['father', 'like', 'much', 'hank'], ['overal', 'good', 'phone', 'price', 'way', 'get', 'rid', 'unwant', 'menu', 'icon', 'phone', 'call', 'qualiti', 'not', 'expect', 'nokia', 'phone', 'durabl'], ['great', 'gsm', 'phone', 'lite', 'well', 'built', 'plenti', 'extra'], ['good'], ['good'], ['satisfactori', 'purcha'], ['never', 'work', 'not', 'work', 'sinc', 'got', 'box', 'unfortun', 'knew', 'come', 'venezuela', 'not', 'return', 'transport', 'could', 'return', 'cost', 'would', 'buy', 'belov', 'nokia'], ['like', 'littl', 'phone'], ['nice'], ['thank'], ['watch', 'unbox', 'http', 'featur', 'click', 'link', 'http', 'not', 'happi', 'phone', 'definit', 'not', 'meet', 'need', 'phone', 'unrespons', 'screen', 'small', 'keypad', 'slow', 'send', 'messag', 'phone', 'perfect', 'somebodi', 'use', 'phone', 'call', 'noth', 'els', 'definit', 'not', 'smart', 'phone'], ['not', 'support', 'arab'], ['product', 'chines', 'poor', 'qualiti', 'not', 'buy'], ['excelent'], ['time'], ['not', 'work', 'sim', 'not', 'return'], ['use', 'iphon', 'year', 'surpris', 'ran', 'memori', 'text', 'messag', 'phone', 'also', 'wire', 'headset', 'work', 'one', 'come', 'nokia', 'batteri', 'life', 'clear', 'voic', 'call', 'make', 'nice', 'phone', 'rememb', 'delet', 'messag', 'everi', 'day'], ['phone', 'network', 'lock', 'hate', 'say', 'trust', 'peopl'], ['unblock', 'not', 'asian', 'countri', 'useless'], ['noth', 'say', 'worst', 'devic', 'ever'], ['perfect'], ['not', 'option', 'languag'], ['excel'], ['muy', 'bien'], ['not', 'unlock', 'sure'], ['product', 'great', 'condit'], ['well', 'worth', 'money', 'nice', 'littl', 'cell', 'phone', 'fanci', 'featur', 'telephon', 'pocket'], ['got', 'phone', 'mother', 'suitabl', 'big', 'key', 'number', 'easi', 'use', 'lot', 'featur', 'not', 'realli', 'technolog', 'savvi', 'answer', 'make', 'call', 'need', 'i', 'alway', 'like', 'product', 'nokia'], ['want', 'talk', 'phone', 'nokia', 'power', 'friend', 'individu', 'key', 'not', 'loud', 'enough', 'work', 'outsid', 'boat'], ['bought', 'gift', 'husband', 'sim', 'card', 'pay', 'go', 'phone', 'anoth', 'mobil', 'want', 'use', 'mobil', 'guess', 'sim', 'card', 'not', 'work', 'phone', 'read', 'card', 'say', 'network', 'not', 'unlock', 'mean', 'exchang', 'sim', 'card', 'back', 'forth', 'disappoint'], ['realli', 'love', 'product', 'excel'], ['great', 'phone', 'batteri', 'easi', 'use', 'wifi', 'internet', 'connect', 'email', 'avail', 'plan', 'data', 'slot', 'fit', 'micro', 'memori', 'card', 'solid', 'resist', 'would', 'buy'], ['love', 'phone', 'perfect', 'need', 'receiv', 'two', 'day', 'day', 'work', 'proper', 'hour', 'screen', 'went', 'white', 'could', 'noth', 'phone', 'sever', 'batteri', 'pull', 'reboot', 'final', 'got', 'turn', 'thought', 'fluke', 'remaind', 'day', 'phone', 'work', 'promis', 'excel', 'excel', 'featur', 'forward', 'morn', 'phone', 'random', 'reboot', 'white', 'screen', 'except', 'time', 'could', 'not', 'get', 'turn', 'back', 'proper', 'i', 'disappoint', 'drop', 'up', 'alreadi', 'return', 'search', 'onlin', 'found', 'white', 'screen', 'issu', 'problem', 'model', 'perfect', 'featur', 'phone', 'wish', 'could', 'kept', 'sad', 'go', 'back'], ['well', 'wait', 'long', 'time', 'get', 'one', 'cellphon', 'mom', 'final', 'found', 'perfect', 'gift', 'need', 'fast', 'photo', 'good', 'recomend', 'nokia'], ['work', 'take', 'everywher', 'use', 'not', 'want', 'distract', 'smart', 'phone'], ['great', 'basic', 'littl', 'phone'], ['realli', 'amaz', 'simpl', 'phone', 'great', 'got', 'grandma', 'find', 'realli', 'simpl', 'use', 'screen', 'nice', 'button', 'easi', 'press', 'build', 'qualiti', 'amaz', 'feel', 'solid', 'like', 'brick', 'except', 'easi', 'light', 'nice', 'hold', 'feel', 'great', 'hand', 'semi', 'smart', 'phone', 'certain', 'social', 'network', 'app', 'use', 'peopl', 'new', 'smartphon', 'busi', 'light', 'user', 'also', 'not', 'wifi', 'need', 'data', 'connect', 'enjoy', 'conveni', 'internet', 'enabl', 'applic', 'call', 'qualiti', 'great', 'least', 'grandma', 'found', 'weird', 'may', 'os', 'realli', 'simpl', 'great', 'user', 'physic', 'build', 'qualiti', 'also', 'good', 'would', 'recommend', 'everyon', 'look', 'simpl', 'great', 'phone'], ['work', 'well', 'purpos', 'need', 'phone', 'place', 'receiv', 'call', 'messag', 'not', 'answer', 'want', 'nokia', 'seri', 'dual', 'sim', 'card', 'slot', 'seri', 'not', 'avail', 'us', 'market'], ['excit', 'get', 'phone', 'read', 'lot', 'negat', 'review', 'batteri', 'life', 'mani', 'sourc', 'read', 'note', 'batteri', 'life', 'problem', 'fix', 'certain', 'firmwar', 'version', 'not', 'true', 'previous', 'nokia', 'go', 'phone', 'model', 'got', 'week', 'batteri', 'life', 'phone', 'phone', 'advertis', 'get', 'day', 'standbi', 'batteri', 'life', 'get', 'less', 'day', 'extrem', 'low', 'usag', 'person', 'phone', 'like', 'featur', 'phone', 'like', 'near', 'everyth', 'reason', 'got', 'phone', 'could', 'not', 'bother', 'charg', 'coupl', 'time', 'month', 'regard', 'phone', 'fail', 'miser', 'disappoint'], ['need', 'good', 'phone', 'batteri', 'last', 'around', 'week', 'hour', 'talk', 'around', 'text', 'messag', 'alarm', 'clock', 'everi', 'day', 'feel', 'good', 'hand', 'pretti', 'heavi', 'not', 'cheap', 'even', 'though', 'cheap', 'plastic', 'not', 'listen', 'music', 'not', 'play', 'game', 'not', 'surf', 'net', 'phone', 'need', 'phone', 'make', 'phone', 'call', 'good', 'sound', 'good', 'volum', 'receiv', 'send', 'text', 'messag', 'need', 'phone', 'rest', 'tablet', 'not', 'like', 'miss', 'call', 'messag', 'remind', 'not', 'featur', 'phone'], ['best', 'phone'], ['motorola', 'krzr', 'short', 'big', 'fan', 'flip', 'compact', 'phone', 'kind', 'want', 'buy', 'anoth', 'butcannot', 'use', 'song', 'ring', 'tone', 'search', 'flip', 'phone', 'decid', 'pick', 'bought', 'amazon', 'free', 'microsd', 'best', 'price', 'net', 'i', 'not', 'web', 'text', 'type', 'person', 'mobil', 'minut', 'point', 'love', 'phone', 'small', 'compact', 'button', 'big', 'good', 'touch', 'press', 'biggest', 'worri', 'check', 'cheap', 'flip', 'phone', 'store', 'everyth', 'want', 'camera', 'music', 'player', 'easi', 'use', 'etc', 'one', 'thing', 'hate', 'phone', 'ing', 'batteri', 'cover', 'remov', 'instal', 'cover', 'slide', 'problem', 'tight', 'cover', 'silicon', 'like', 'surfac', 'took', 'minut', 'remov', 'cover', 'reinstal', 'use', 'damper', 'cloth', 'grip', 'cover', 'press', 'hard', 'nokia', 'use', 'button', 'latch', 'like', 'luckili', 'damn', 'phone', 'build', 'extrem', 'tough', 'thank', 'good', 'piss', 'afraid', 'might', 'break', 'phone', 'squeez', 'hard', 'guy', 'would', 'give', 'star', 'plus', 'damn', 'cover', 'look', 'qualiti', 'flip', 'phone', 'best', 'small', 'thin', 'compact', 'one', 'thing', 'make', 'sure', 'read', 'manual', 'instal', 'microsd', 'card', 'need', 'slide', 'holder', 'inward', 'flip', 'not', 'tri', 'flip', 'without', 'slide', 'inward', 'break', 'hope', 'review', 'help', 'keep', 'flip', 'phone', 'aliv', 'well', 'futur'], ['larger', 'display', 'old', 'nokia', 'easier', 'see', 'i', 'text', 'good', 'batteri', 'life', 'good', 'signal', 'strenght', 'decent', 'camera', 'use', 'nokia', 'seem', 'improv', 'thing', 'not', 'like', 'gps', 'amazon', 'oem', 'accessori', 'great', 'price', 'well', 'good', 'basic', 'phone', 'i', 'glad', 'bought', 'would', 'reccomend', 'pop', 'old', 'sim', 'card', 'good', 'go'], ['year', 'ago', 'bought', 'phone', 'father', 'not', 'fail', 'anyth', 'conveni', 'oper', 'nokia', 'make', 'great', 'phone', 'definit'], ['blue', 'color', 'shown', 'illustr', 'dark', 'blue', 'phone', 'suppli', 'light', 'sky', 'blue', 'besid', 'phone', 'work', 'great', 'unlock', 'work', 'sim', 'provid'], ['work', 'well', 'sever', 'year'], ['phone', 'unlock', 'carrier', 'not', 'tri', 'use', 'intern', 'carrier', 'phone', 'show', 'unvalid', 'sim', 'card'], ['good', 'phone', 'nice', 'option', 'nice', 'touch', 'screen', 'fm', 'radio', 'gps', 'music', 'player', 'cabl', 'connect', 'pc', 'add', 'app', 'game', 'easili', 'camera', 'ok', 'not', 'expect', 'much', 'cell', 'phone', 'hope', 'futur', 'manufactur', 'address', 'camera', 'qualiti', 'sinc', 'general', 'carri', 'devic', 'everywher'], ['not', 'come', 'gyga', 'card', 'stead', 'gyga', 'care', 'price', 'one', 'buy', 'much', 'better', 'discov', 'one', 'day', 'bought', 'return', 'fee', 'seller', 'would', 'make', 'expens', 'decid', 'keep'], ['bought', 'phone', 'think', 'one', 'best', 'phone', 'three', 'month', 'start', 'heat', 'batteri', 'lost', 'energi', 'pay', 'lot', 'money', 'order', 'fix', 'i', 'countri', 'difficult', 'send', 'seller'], ['superb', 'phone', 'not', 'support', 'network', 'edg', 'today', 'surpris', 'good', 'would', 'give', 'star', 'easi', 'interfac', 'intuit', 'navig', 'work', 'mani', 'applic', 'nokia', 'ovi', 'store', 'bit', 'complic', 'work', 'need', 'figur', 'though', 'updat', 'firmwar', 'mani', 'improv', 'origin', 'releas', 'nokia', 'camera', 'good', 'not', 'great', 'love', 'music', 'librari', 'interfac', 'come', 'free', 'gb', 'micro', 'sd', 'card'], ['ok'], ['love', 'littl', 'nokia', 'phone', 'great', 'better', 'signal', 'old', 'phone', 'love', 'abl', 'get', 'internet', 'ever', 'without', 'comput', 'ad', 'data', 'plan', 'phone', 'plan', 'great', 'littl', 'phone', 'everyth', 'built', 'i', 'alway', 'like', 'nokia', 'phone', 'best', 'one', 'use', 'yet', 'thank', 'nokia'], ['saw', 'ad', 'video', 'qualiti', 'better', 'dvd', 'thought', 'plain', 'market', 'bluff', 'upon', 'get', 'phone', 'watch', 'video', 'take', 'breath', 'away', 'alway', 'like', 'nokia', 'phone', 'brand', 'best', 'eye', 'come', 'perfom', 'durabl', 'phone', 'size', 'slim', 'sleek', 'much', 'better', 'iphon', 'touchscreen', 'respons', 'vibrat', 'touch', 'pretti', 'neat', 'also', 'qwerti', 'keyboard', 'problem', 'big', 'finger', 'like', 'use', 'alphanumer', 'keypad', 'option', 'like', 'awesom', 'sound', 'qualiti', 'great', 'speaker', 'lil', 'low', 'must', 'go', 'deaf', 'system', 'car', 'phone', 'awesom', 'love', 'guarante', 'love', 'xpressmus', 'unlock', 'phone', 'mp', 'camera', 'gps', 'gb', 'microsd', 'card', 'version', 'warranti', 'black'], ['firmwar', 'updat', 'seem', 'come', 'everi', 'month', 'system', 'automat', 'reboot', 'also', 'soft', 'reboot', 'hard', 'reboot', 'need', 'not', 'use', 'either', 'purpos', 'most', 'music', 'appoint', 'alarm', 'phone', 'stabl', 'except', 'batteri', 'overh', 'talk', 'phone', 'connect', 'not', 'happen', 'scroll', 'xm', 'user', 'wait', 'next', 'upgrad', 'current', 'drag', 'scroll', 'not', 'accur', 'inconsist', 'depend', 'app', 'util', 'use', 'bad', 'news', 'kinet', 'scroll', 'home', 'screen', 'contact', 'browser', 'not', 'think', 'drag', 'current', 'use', 'bad', 'learn', 'curv', 'not', 'use', 'browser', 'slow', 'sometim', 'hang', 'anyon', 'use', 'internet', 'know', 'sometim', 'browser', 'includ', 'firefox', 'hang', 'realli', 'not', 'specif', 'stop', 'respond', 'thing', 'would', 'laptop', 'pc', 'chang', 'someth', 'els', 'wait', 'browser', 'either', 'respond', 'kill', 'simpli', 'click', 'menu', 'button', 'get', 'never', 'reboot', 'browser', 'howev', 'slow', 'full', 'coverag', 'bar', 'browser', 'still', 'work', 'faster', 'respons', 'time', 'suppos', 'increas', 'new', 'icon', 'screen', 'requir', 'singl', 'tap', 'open', 'menus', 'tap', 'requir', 'real', 'confus', 'get', 'use', 'upgrad', 'may', 'fix', 'document', 'basic', 'general', 'oper', 'instruct', 'tip', 'hint', 'tutori', 'camera', 'take', 'crystal', 'clear', 'pix', 'insid', 'take', 'littl', 'tweak', 'plenti', 'option', 'new', 'firmwar', 'also', 'suppos', 'contain', 'camera', 'screen', 'rotat', 'sometim', 'get', 'discombobul', 'correct', 'second', 'screen', 'not', 'rotat', 'address', 'next', 'releas', 'well', 'accord', 'nokia', 'usa', 'discuss', 'speaker', 'distort', 'sound', 'set', 'max', 'although', 'would', 'expect', 'better', 'phone', 'advertis', 'exclus', 'music', 'typic', 'almost', 'anyth', 'plus', 'usual', 'earphon', 'sound', 'not', 'max', 'make', 'most', 'built', 'flash', 'player', 'not', 'work', 'version', 'video', 'want', 'watch', 'onlin', 'simpli', 'not', 'play', 'upgrad', 'other', 'small', 'open', 'area', 'top', 'right', 'side', 'top', 'screen', 'section', 'phone', 'meet', 'main', 'phone', 'section', 'see', 'real', 'good', 'hold', 'top', 'phone', 'white', 'background', 'look', 'along', 'side', 'front', 'black', 'section', 'almost', 'look', 'like', 'someon', 'took', 'phone', 'apart', 'not', 'put', 'back', 'togeth', 'correct', 'dust', 'even', 'hair', 'get', 'screen', 'keep', 'phone', 'pocket', 'time', 'not', 'see', 'issu', 'month', 'not', 'becom', 'issu', 'ship', 'nokia', 'care', 'center', 'kept', 'phone', 'issu', 'earlier', 'european', 'phone', 'involv', 'defect', 'ear', 'speaker', 'not', 'issu', 'troubl', 'connect', 'home', 'upgrad', 'router', 'firmwar', 'xm', 'found', 'without', 'gps', 'direct', 'navteq', 'nokia', 'map', 'flawless', 'phone', 'come', 'rememb', 'correct', 'week', 'free', 'batteri', 'life', 'phone', 'even', 'better', 'see', 'alway', 'listen', 'stay', 'not', 'go', 'iphon', 'everi', 'phone', 'everi', 'os', 'issu', 'realli', 'first', 'attempt', 'symbian', 'touch', 'interfac', 'seem', 'respons', 'enhanc', 'request', 'not', 'want', 'get', 'lock', 'contract', 'case', 'move', 'not', 'get', 'signal', 'not', 'make', 'take', 'call', 'everi', 'day', 'not', 'want', 'pay', 'minimum', 'month', 'iphon', 'use', 'pay', 'tactil', 'well', 'visual', 'feedback', 'key', 'press', 'enlarg', 'slight', 'vibrat', 'turn', 'make', 'type', 'larg', 'qwerti', 'easi', 'xm', 'rememb', 'use', 'larg', 'keyboard', 'automat', 'bring', 'app', 'use', 'right', 'size', 'back', 'make', 'easi', 'hold', 'xm', 'primari', 'secondari', 'camera', 'back', 'folder', 'pc', 'well', 'synchron', 'outlook', 'express', 'also', 'music', 'lover', 'surround', 'sound', 'best', 'i', 'heard', 'thing', 'would', 'total', 'turn', 'peopl', 'search', 'year', 'better', 'altern', 'sprint', 'palm', 'phone', 'fulfil', 'need', 'env', 'touch', 'came', 'close', 'could', 'lock', 'month', 'fee', 'contract', 'will', 'put', 'minor', 'inconveni', 'iron', 'bug', 'would', 'not', 'happi', 'altern', 'best', 'phone', 'browser', 'freez', 'not', 'happen', 'sinc', 'reorient', 'version', 'updat', 'still', 'not', 'avail', 'pc', 'suit', 'time', 'bluetooth', 'work', 'flawless', 'sometim', 'exact', 'circumst', 'constant', 'cut', 'report', 'peopl', 'use', 'differ', 'bt', 'devic'], ['even', 'though', 'first', 'nokia', 'experi', 'not', 'bad', 'almost', 'everyth', 'would', 'like', 'smartphon', 'chang', 'slight', 'interfac', 'littl', 'differ', 'would', 'expect', 'pro', 'great', 'resolut', 'camera', 'sound', 'integr', 'good', 'memori', 'capacityth', 'con', 'poor', 'capac', 'arrang', 'menus', 'wish', 'easi', 'use', 'touch', 'screen', 'graffiti', 'not', 'intuit', 'interfac', 'lack', 'integr', 'contact', 'work', 'separ', 'buy', 'wait', 'till', 'next', 'upgrad', 'model'], ['littl', 'hesit', 'get', 'nokia', 'touch', 'screen', 'first', 'nokia', 'not', 'big', 'us', 'market', 'much', 'oversea', 'cheap', 'nokia', 'long', 'time', 'ago', 'alway', 'found', 'best', 'recept', 'best', 'batteri', 'life', 'phone', 'let', 'give', 'littl', 'info', 'work', 'cell', 'phone', 'kiosk', 'sam', 'club', 'deal', 'phone', 'sprint', 'att', 'verizon', 'think', 'knowledg', 'cell', 'phone', 'mani', 'pros', 'con', 'phone', 'batteri', 'life', 'mani', 'touch', 'screen', 'instinct', 'moment', 'hero', 'pixi', 'phone', 'batteri', 'life', 'last', 'soo', 'much', 'longer', 'play', 'phone', 'day', 'run', 'wifi', 'make', 'call', 'download', 'game', 'play', 'game', 'batteri', 'not', 'gone', 'speaker', 'sound', 'clear', 'loud', 'probabl', 'loudest', 'eas', 'size', 'not', 'heavi', 'fit', 'perfect', 'screen', 'vibrant', 'great', 'watch', 'music', 'great', 'sound', 'short', 'cut', 'main', 'screen', 'make', 'realli', 'easi', 'get', 'contact', 'use', 'lot', 'ovi', 'market', 'mani', 'free', 'game', 'realli', 'well', 'done', 'differ', 'android', 'game', 'realli', 'low', 'budget', 'camera', 'thing', 'would', 'agre', 'pictur', 'not', 'not', 'bad', 'line', 'want', 'great', 'phone', 'price'], ['well', 'say', 'phone', 'amaz', 'light', 'beauti', 'realli', 'smartphon', 'download', 'instal', 'lot', 'app', 'ovi', 'store', 'like', 'dowmload', 'app', 'iphon', 'itun', 'store', 'keep', 'favorit', 'contact', 'main', 'screen', 'iphon', 'sold', 'buy', 'awesom', 'nokia', 'also', 'upgrad', 'nokia', 'someth', 'not', 'iphon', 'bought', 'thought', 'not', 'go', 'work', 'town', 'say', 'version', 'live', 'work', 'perfect', 'claro', 'communic', 'compani', 'provid', 'town', 'total', 'recommend', 'phone', 'star'], ['phone', 'complic', 'use', 'phone', 'almost', 'month', 'still', 'could', 'not', 'figur', 'use', 'featur', 'without', 'use', 'manual', 'book', 'batteri', 'last', 'coupl', 'day', 'fulli', 'charg', 'headphon', 'wire', 'way', 'short', 'lengh', 'ear', 'upper', 'chest', 'therefor', 'unless', 'coat', 'pocket', 'upper', 'chest', 'hold', 'phone', 'front', 'chest', 'everytim', 'tri', 'enjoy', 'music', 'not', 'recommend', 'phone', 'friend'], ['phone', 'work', 'well', 'box', 'user', 'insert', 'old', 'phone', 'sim', 'go', 'howev', 'text', 'go', 'set', 'menu', 'input', 'messag', 'center', 'phone', 'number', 'otherwis', 'stay', 'outbox', 'music', 'great', 'clear', 'sound', 'camera', 'flash', 'work', 'night', 'scene', 'resolut', 'not', 'great', 'automat', 'scan', 'like', 'laptop', 'not', 'download', 'nokia', 'app', 'check', 'function', 'smartphon', 'expand', 'memori', 'easi', 'phone', 'slot', 'side', 'max', 'gb', 'great', 'amazon', 'price', 'quick', 'shipment', 'way', 'posit', 'add', 'on', 'overpr', 'iphon', 'video', 'webcam', 'avail', 'via', 'camera', 'not', 'lock', 'month', 'data', 'plan', 'like', 'iphon', 'batteri', 'par', 'previous', 'cell', 'phone', 'touch', 'screen', 'good', 'get', 'also', 'add', 'media', 'data', 'plan', 'road', 'need', 'websurf', 'think', 'nokia', 'winner', 'not', 'well', 'known', 'not', 'go', 'stand', 'one', 'appl', 'peep'], ['hi', 'first', 'let', 'us', 'setup', 'paramet', 'tmobil', 'subscrib', 'tampa', 'bay', 'area', 'recept', 'highest', 'avail', 'own', 'order', 'ericson', 'pcs', 'day', 'panason', 'day', 'nokia', 'tmobil', 'dash', 'tmobil', 'shadow', 'nokia', 'week', 'display', 'went', 'got', 'scare', 'want', 'replac', 'return', 'pleas', 'also', 'note', 'second', 'time', 'own', 'nokia', 'first', 'time', 'european', 'model', 'us', 'warranti', 'sinc', 'got', 'nokia', 'flagship', 'store', 'chicago', 'first', 'firmwar', 'suck', 'suck', 'bad', 'sold', 'use', 'could', 'not', 'wait', 'firmwar', 'upgrad', 'advanc', 'today', 'great', 'relief', 'tell', 'peopl', 'nokia', 'nam', 'outstand', 'smartphon', 'current', 'firmwar', 'made', 'nok', 'great', 'know', 'own', 'take', 'ui', 'not', 'pretti', 'iphon', 'noth', 'come', 'touch', 'activ', 'pretti', 'anim', 'touch', 'interfac', 'slow', 'turn', 'keep', 'run', 'smooth', 'best', 'seller', 'nokia', 'therefor', 'continu', 'give', 'us', 'better', 'softwar', 'updat', 'make', 'run', 'even', 'smoother', 'crazi', 'ear', 'piec', 'problem', 'phone', 'feel', 'easi', 'fit', 'one', 'hand', 'not', 'said', 'iphon', 'iphon', 'awsom', 'yes', 'kind', 'big', 'use', 'cellphon', 'ok', 'let', 'real', 'phone', 'work', 'great', 'clear', 'loud', 'speaker', 'phone', 'great', 'fun', 'snap', 'shoot', 'digit', 'camera', 'great', 'flash', 'abil', 'stream', 'web', 'content', 'great', 'call', 'qualiti', 'pretti', 'screen', 'touch', 'method', 'iphon', 'kewler', 'smooth', 'howev', 'resist', 'touch', 'screen', 'clear', 'improv', 'not', 'hold', 'back', 'clear', 'firmwar', 'upgrad', 'tweak', 'sensit', 'made', 'much', 'respons', 'i', 'place', 'review', 'i', 'sorri', 'nokia', 'could', 'better', 'marketin', 'partnership', 'get', 'local', 'best', 'buy', 'peopl', 'touch', 'feel', 'great', 'one', 'biggest', 'sell', 'point'], ['easi', 'use', 'clear', 'pictur', 'easi', 'eye'], ['good', 'phone', 'good', 'amazon'], ['good'], ['great', 'phone', 'even', 'not', 'plan', 'fact', 'unlock', 'alow', 'freedom'], ['work', 'great', 'mom', 'love', 'said', 'could', 'not', 'work', 'speaker', 'part', 'love'], ['bad', 'news', 'expens', 'stuck', 'defect', 'phone', 'seller', 'not', 'honor', 'warranti', 'blame', 'problem', 'must', 'drop', 'phone', 'caus', 'defect', 'camera', 'never', 'work', 'right', 'start', 'everyday', 'got', 'wors', 'pixel', 'soon', 'get', 'stuck', 'camera', 'remov', 'batteri', 'unstick', 'stay', 'away'], ['display', 'went', 'phone', 'not', 'old', 'junk', 'not', 'buy', 'phone', 'not', 'like', 'stop', 'work'], ['best', 'non', 'smart', 'phone'], ['phone', 'great', 'concern', 'follow', 'make', 'receiv', 'phone', 'call', 'star', 'voic', 'dial', 'star', 'contact', 'ring', 'tone', 'star', 'limit', 'per', 'ring', 'tone', 'larg', 'text', 'font', 'star', 'could', 'littl', 'larger', 'notif', 'star', 'camera', 'star', 'video', 'not', 'use', 'yet', 'music', 'player', 'star', 'limit', 'memori', 'not', 'want', 'get', 'carri', 'away', 'problem', 'fact', 'use', 'unlock', 'phone', 'tmobil', 'network', 'caus', 'problem', 'tri', 'send', 'receiv', 'audio', 'pictur', 'messag', 'not', 'go', 'use', 'phone', 'not', 'abl', 'send', 'receiv', 'pictur', 'audio', 'messag', 'otherwis', 'everyth', 'els', 'work', 'fine'], ['not', 'sim', 'card', 'would', 'not', 'send', 'tx', 'wast', 'money'], ['phone', 'not', 'work', 'return'], ['hello', 'fine', 'product', 'not', 'languag', 'hebrew', 'disappoint'], ['disappoint', 'purchas', 'clear', 'state', 'phone', 'unlock', 'put', 'sim', 'card', 'ask', 'code', 'point', 'need', 'get', 'refund', 'anoth', 'phone', 'one', 'buy', 'compani', 'clear', 'dishonest', 'angri', 'moment'], ['bought', 'phone', 'mom', 'last', 'year', 'noth', 'pain', 'troubl', 'receiv', 'call', 'first', 'got', 'issu', 'sent', 'back', 'repair', 'well', 'fix', 'get', 'back', 'batteri', 'cover', 'fall', 'half', 'time', 'not', 'even', 'work', 'today', 'quit', 'complet', 'nephew', 'tri', 'blow', 'sim', 'card', 'not', 'even', 'turn', 'bought', 'mom', 'nokia', 'notori', 'unbreak', 'appar', 'not', 'get', 'memo', 'manufactur', 'piec', 'crap'], ['not', 'unlock'], ['great', 'phone', 'excel', 'batteri', 'perform'], ['favorit', 'phone', 'love', 'flip', 'design', 'easi', 'use', 'f', 'look', 'simpl', 'phone'], ['excel'], ['price', 'indic', 'order', 'item', 'circa', 'us', 'dollar', 'end', 'pay', 'eur', 'close', 'us', 'dollar'], ['look', 'cell', 'phone', 'ad', 'featur', 'work', 'pretti', 'well', 'built', 'camera', 'pretti', 'good', 'flash', 'small', 'light', 'import', 'critic', 'would', 'slide', 'phone', 'keypad', 'two', 'halv', 'phone', 'littl', 'bit', 'slop', 'not', 'tight', 'could', 'not', 'know', 'phone', 'like'], ['good', 'tell', 'eveyon', 'phone', 'great', 'phoney', 'would', 'get', 'anther', 'one', 'someday'], ['like', 'dog', 'bone', 'regard', 'phone', 'would', 'not', 'let', 'defeat', 'end', 'perform', 'simplest', 'function', 'like', 'call', 'go', 'labyrinth', 'may', 'think', 'like', 'price', 'might', 'better', 'someth', 'less', 'brain', 'twist', 'say', 'open', 'keypad', 'call', 'allow', 'call', 'use', 'slider', 'not', 'point', 'number', 'chang', 'got', 'tire', 'tri', 'find', 'sunni', 'could', 'not', 'see', 'one', 'singl', 'button', 'darn', 'thing', 'dark', 'keyboard', 'would', 'sometim', 'light', 'second', 'go', 'sometim', 'come', 'back', 'tell', 'yes', 'download', 'manual', 'yes', 'put', 'set', 'brightest', 'loudest', 'symbol', 'soo', 'small', 'fine', 'year', 'flip', 'phone', 'never', 'suppos', 'even', 'could', 'get', 'lucki', 'enough', 'see', 'one', 'push', 'phone', 'not', 'mayb', 'not'], ['great', 'far', 'thank'], ['phone', 'great', 'shape', 'new', 'box', 'come', 'car', 'charger', 'also', 'gave', 'star', 'batteri', 'bigger', 'not', 'allow', 'back', 'cover', 'fit', 'luckili', 'old', 'batteri', 'good', 'phone', 'abl', 'reus'], ['huge', 'fraud', 'awar', 'md', 'electron', 'i', 'got', 'chines', 'copi', 'nokia', 'stainless', 'steel', 'not', 'gold', 'one', 'offer'], ['use', 'cell', 'phone', 'littl', 'probabl', 'get', 'less', 'call', 'per', 'month', 'make', 'even', 'less', 'call', 'bought', 'phone', 'primarili', 'music', 'capabl', 'also', 'use', 'fm', 'radio', 'occasion', 'like', 'mega', 'pixel', 'camera', 'great', 'phone', 'see', 'get', 'rememb', 'symbian', 'oper', 'system', 'not', 'android', 'take', 'good', 'luck'], ['phone', 'amaz', 'perfect', 'use', 'sim', 'card', 'abroad', 'receiv', 'text', 'messag', 'husband', 'wow', 'phone', 'perfect', 'phone', 'not', 'look', 'like', 'new', 'new', 'swear', 'perfect', 'condit', 'got', 'phone', 'easi', 'use', 'mean', 'come', 'need', 'phone', 'use', 'gsm', 'sim', 'card', 'extrem', 'fun', 'use', 'fun', 'size', 'made', 'phone', 'light', 'easi', 'handl', 'batteri', 'good', 'tri', 'phone', 'abroad', 'decid', 'actual', 'phone', 'came', 'super', 'fast', 'bonus', 'anyon', 'want', 'simpl', 'phone', 'easi', 'work', 'say', 'go', 'nokia', 'phone'], ['nokia', 'purchas', 'realli', 'deliv', 'everyth', 'promis', 'batteri', 'easili', 'last', 'hour', 'even', 'talk', 'hour', 'time', 'period', 'fit', 'finish', 'high', 'qualiti', 'convers', 'crystal', 'clear', 'menu', 'easi', 'read', 'navig', 'excel', 'recept', 'need', 'phone', 'actual', 'use', 'phone', 'would', 'great', 'choic', 'pick', 'sim', 'card', 'wireless', 'provid', 'readi', 'go'], ['not', 'tecnolog', 'wast', 'diced', 'buy', 'want', 'better', 'signal'], ['bought', 'cell', 'phone', 'mom', 'slow', 'interfac', 'thing', 'good', 'not', 'memori', 'slot', 'sometim', 'call', 'somebodi', 'realiz', 'i', 'call', 'anoth', 'person', 'phone', 'sometim', 'crazi', 'not', 'like'], ['comprador', 'de', 'latino', 'america', 'amazon', 'es', 'la', 'mejor', 'tienda', 'electrónica', 'para', 'comprar', 'todo', 'el', 'producto', 'llega', 'en', 'excelent', 'condicion', 'cuidado', 'con', 'las', 'aduana', 'de', 'sus', 'pais', 'porqu', 'ahora', 'estan', 'limitando', 'la', 'entrada', 'de', 'celular', 'en', 'el', 'caso', 'de', 'ecuador', 'solament', 'pued', 'traer', 'en', 'el', 'año', 'en', 'un', 'solo', 'envio', 'ojosaludo'], ['not', 'beat', 'not', 'fanci', 'anyon', 'need', 'phone', 'work', 'durabl', 'old', 'nokia', 'yaer', 'old', 'still', 'work', 'want', 'new', 'one'], ['hello', 'order', 'phone', 'want', 'know', 'possibl', 'send', 'use', 'person', 'item', 'appreci', 'thank'], ['work', 'great', 'shown', 'site', 'receiv', 'complaint'], ['father', 'like', 'year', 'half', 'not', 'problem', 'jet'], ['simpl', 'use', 'batteri', 'last', 'long', 'time', 'qualiti', 'sound', 'good', 'overal', 'great', 'phone'], ['need', 'basic', 'bar', 'phone', 'rough', 'tough', 'use', 'better', 'devic', 'nokia', 'plus', 'quad', 'band', 'us', 'version', 'phone', 'mean', 'work', 'network', 'us', 'work', 'everywher', 'els', 'world', 'price', 'paid', 'could', 'not', 'ask'], ['bought', 'phone', 'aunt', 'phone', 'allow', 'make', 'call', 'text', 'take', 'pictur', 'main', 'need', 'great', 'phone', 'econom', 'price'], ['work', 'well', 'travel', 'anoth', 'countri'], ['good', 'cell', 'phone'], ['got', 'good', 'time', 'recommend', 'phone', 'easi', 'use', 'exampl', 'mom', 'best'], ['came', 'time', 'manner', 'set', 'perk', 'especi', 'radio', 'even', 'though', 'get', 'power', 'headset', 'get', 'stronger', 'feed', 'radio', 'great', 'product', 'definit', 'recommend'], ['fast', 'nice', 'new'], ['work', 'countri', 'remot', 'area', 'without', 'problem', 'convers', 'clear', 'call', 'area', 'good', 'recept', 'call', 'phone', 'came', 'crystal', 'clear', 'recommend', 'cell', 'phone'], ['purchas', 'nokia', 'go', 'haiti', 'unfortun', 'nokia', 'not', 'work', 'either', 'digicel', 'natcom', 'end', 'buy', 'anoth', 'phone'], ['excelent', 'mejor', 'impos', 'los', 'recomiendo', 'mis', 'amigo', 'para', 'que', 'compren', 'artículo', 'mucha', 'gracia', 'mucho', 'éxito', 'mejor', 'impos', 'saludo'], ['got', 'work', 'great', 'ship', 'fine'], ['return', 'phone', 'not', 'unlock', 'could', 'not', 'use', 'jamaica'], ['love', 'phone', 'size', 'keyboard', 'weight', 'camera', 'not', 'good', 'knew', 'go', 'not', 'get', 'ring', 'tone', 'recept', 'horribl', 'even', 'voic', 'mail', 'i', 'look', 'anoth', 'phone', 'bad', 'cuz', 'realli', 'like', 'one', 'would', 'not', 'recommend'], ['muy', 'satisfecho', 'muy', 'conform', 'agradecido', 'con', 'la', 'compra', 'espero', 'poder', 'comprar', 'de', 'nuevo', 'producto', 'de', 'est', 'vendedor', 'lo', 'recomiendo'], ['excel', 'phone', 'great', 'valu', 'use', 'network', 'not', 'standard', 'phone', 'run', 'speed', 'great', 'littl', 'phone', 'call', 'text', 'email', 'surf', 'web', 'would', 'purchas'], ['es', 'un', 'telefono', 'realment', 'bueno', 'muy', 'practico', 'permit', 'estar', 'conectada', 'mis', 'reed', 'social', 'mi', 'correo', 'habitu', 'sin', 'necesidad', 'de', 'contratar', 'servicio', 'de', 'internet', 'por', 'conectars', 'mediant', 'wi', 'fi', 'cualquier', 'red', 'habilitada', 'adema', 'de', 'toda', 'las', 'funcion', 'propia', 'facil', 'de', 'manejar', 'que', 'poseen', 'los', 'telefono', 'nokia', 'es', 'un', 'telefono', 'libiano', 'se', 'adapta', 'muy', 'bien', 'la', 'mano', 'comodo', 'para', 'llevar', 'el', 'color', 'es', 'realment', 'bonito', 'sobretodo', 'origin'], ['got', 'phone', 'nokia', 'not', 'start', 'error', 'start', 'failur', 'contact', 'retail', 'user', 'downgrad', 'phone', 'found', 'behav', 'extrem', 'well', 'screen', 'better', 'took', 'week', 'get', 'use', 'qwerti', 'keypad', 'smooth', 'week', 'use', 'phone', 'call', 'text', 'give', 'updat', 'keep', 'use', 'featur', 'updat', 'phone', 'long', 'time', 'look', 'like', 'wonder', 'phone', 'except', 'text', 'lot', 'convers', 'style', 'make', 'life', 'easi', 'simpl', 'handl', 'not', 'multipl', 'alarm', 'set', 'calendar', 'life', 'amaz', 'good', 'inspit', 'high', 'usag', 'goe', 'three', 'day', 'without', 'charg', 'use', 'less', 'batteri', 'stay', 'long', 'shortfal', 'till', 'except', 'miss'], ['need', 'simpl', 'phone', 'talk', 'text', 'id', 'phone', 'also', 'take', 'decent', 'pictur', 'first', 'nokia', 'final', 'die', 'went', 'search', 'anoth', 'one', 'love', 'much', 'not', 'find', 'better', 'batteri', 'life', 'simpl', 'use', 'not', 'need', 'fanci', 'stuff', 'perfect', 'user', 'friend'], ['bought', 'phone', 'purpos', 'use', 'wifi', 'capabl', 'addit', 'messag', 'call', 'use', 'howev', 'unabl', 'connect', 'univers', 'wireless', 'network', 'tri', 'said', 'not', 'connect', 'network', 'unsupport', 'secur', 'type', 'sinc', 'i', 'spend', 'time', 'school', 'phone', 'not', 'connect', 'school', 'wifi', 'feel', 'not', 'worth', 'money', 'i', 'return', 'phone', 'back'], ['love', 'phone', 'use', 'att', 'problem', 'set', 'mms', 'need', 'got', 'site', 'set', 'add', 'manu', 'set', 'great', 'phone', 'modem', 'nokia', 'softwar', 'pc', 'internet', 'free', 'save', 'money', 'travl', 'plus', 'wifi', 'great'], ['excel', 'product', 'nokia', 'compar', 'price', 'avail', 'want', 'phone', 'tough', 'durabl', 'good', 'choic'], ['rate', 'defect', 'cell', 'phone', 'zero', 'star', 'would', 'give', 'think', 'option', 'rate', 'like', 'prior', 'unhappi', 'buyer', 'devic', 'month', 'ago', 'return', 'crappi', 'cell', 'phone', 'up', 'store', 'tomorrow', 'morn', 'jan', 'refund', 'i', 'explain', 'know', 'prior', 'unhappi', 'buyer', 'defect', 'cell', 'jan', 'i', 'extrem', 'disappoint', 'minut', 'open', 'packag', 'first', 'notic', 'prior', 'unhappi', 'buyer', 'return', 'piec', 'crap', 'defect', 'cell', 'phone', 'octob', 'month', 'return', 'due', 'defect', 'product', 'notic', 'date', 'octob', 'still', 'attach', 'packag', 'sent', 'seller', 'warehous', 'deal', 'inc', 'subsidiari', 'amazon', 'seller', 'warehous', 'deal', 'inc', 'must', 'think', 'nokia', 'defect', 'one', 'unhappi', 'buyer', 'eye', 'must', 'not', 'defect', 'next', 'buyer', 'eye', 'hello', 'defect', 'defect', 'mean', 'intern', 'not', 'mere', 'beauti', 'eye', 'own', 'sever', 'older', 'nokia', 'cell', 'phone', 'model', 'began', 'test', 'sever', 'function', 'immedi', 'notic', 'right', 'left', 'key', 'alpha', 'numer', 'keyboard', 'not', 'respons', 'tri', 'select', 'option', 'time', 'right', 'key', 'work', 'switch', 'devic', 'gave', 'benefit', 'doubt', 'press', 'key', 'differ', 'strength', 'hard', 'medium', 'soft', 'noth', 'work', 'immedi', 'went', 'onlin', 'chat', 'nokia', 'onlin', 'support', 'explain', 'problem', 'devic', 'nokia', 'onlin', 'support', 'confirm', 'know', 'nokia', 'devic', 'experi', 'not', 'normal', 'right', 'left', 'key', 'not', 'respons', 'select', 'word', 'would', 'not', 'need', 'press', 'key', 'pick', 'select', 'prior', 'nokia', 'cell', 'phone', 'need', 'press', 'either', 'right', 'left', 'key', 'select', 'option', 'string', 'bad', 'luck', 'order', 'nokia', 'unlock', 'cell', 'phone', 'long', 'stori', 'prior', 'receiv', 'defect', 'cell', 'phone', 'made', 'least', 'telephon', 'complaint', 'amazon', 'call', 'amit', 'made', 'unauthor', 'cancel', 'good', 'valid', 'order', 'without', 'permiss', 'realli', 'test', 'patienc', 'purchas', 'electron', 'devic', 'amazon', 'total', 'disappoint', 'devic', 'return', 'crappi', 'defens', 'cell', 'phone', 'up', 'store', 'tomorrow', 'morn', 'refund'], ['nokia', 'never', 'work', 'purchas', 'phone', 'amazon', 'august', 'wife', 'pass', 'away', 'touch', 'world', 'everi', 'aspect', 'time', 'abl', 'function', 'semi', 'normal', 'return', 'polici', 'run', 'time', 'start', 'begin', 'enter', 'inform', 'phone', 'would', 'never', 'connect', 'internet', 'ovi', 'not', 'work', 'ovi', 'store', 'not', 'connect', 'ovi', 'browser', 'not', 'function', 'tri', 'go', 'googl', 'manag', 'set', 'home', 'wifi', 'see', 'would', 'work', 'still', 'not', 'know', 'phone', 'junk', 'window', 'softwar', 'bad', 'absolut', 'confid', 'microsoft', 'os', 'system', 'longer', 'bought', 'acer', 'notebook', 'window', 'nightmar', 'could', 'buy', 'anoth', 'comput', 'want', 'instal', 'window', 'bought', 'chromebook', 'beauti', 'fast', 'os', 'experi', 'mo', 'windo', 'anyon', 'know', 'anoth', 'os', 'load', 'onto', 'nokia', 'like', 'android', 'phone', 'complet', 'wast', 'time', 'money', 'still', 'tri', 'get', 'work', 'today', 'never', 'wrote', 'review', 'discust', 'past', 'time', 'vent', 'dissappoint', 'amazon'], ['phone', 'perfect', 'peopl', 'alway', 'not', 'want', 'charg', 'phone', 'everi', 'night', 'charg', 'mine', 'day', 'problem', 'camera', 'still', 'good', 'price'], ['good', 'averag', 'phone', 'nokia', 'ship', 'microsd', 'card', 'batteri', 'good', 'came', 'day', 'averag', 'use'], ['direct', 'hard', 'read', 'direct', 'lost', 'phone', 'like', 'mexico', 'one', 'realli', 'like', 'also'], ['nokia', 'purchas', 'amazon', 'quit', 'satisfactori', 'meet', 'play', 'music', 'almost', 'whole', 'day', 'batteri', 'remain', 'full', 'bar', 'gprs', 'connect', 'fast', 'reliabl', 'connect', 'also', 'ensur', 'faster', 'connect', 'wireless', 'network', 'pictur', 'qualiti', 'realli', 'good', 'pictur', 'not', 'occupi', 'much', 'space', 'disc', 'make', 'attach', 'upload', 'pictur', 'realli', 'fast'], ['bought', 'phone', 'own', 'nokia', 'model', 'newer', 'less', 'option', 'nevertheless', 'smartphon', 'keep', 'calendar', 'make', 'note', 'import', 'synchron', 'microsoft', 'outlook', 'cheaper', 'less', 'exampl', 'phone', 'not', 'capabl', 'run', 'applic', 'guess', 'memori', 'phone', 'anoth', 'great', 'featur', 'fact', 'put', 'memori', 'card', 'phone', 'give', 'lot', 'storag', 'room', 'music', 'file', 'etc', 'sleek', 'look', 'fit', 'good', 'hand', 'make', 'sturdi', 'impress', 'nokia', 'great', 'phone', 'beginn', 'peopl', 'never', 'own', 'smartphon', 'peopl', 'not', 'handi', 'technolog', 'thing', 'also', 'teen', 'say', 'teen', 'give', 'lot', 'room', 'thing', 'like', 'social', 'network', 'pimp', 'favorit', 'contact', 'put', 'screen', 'pictur', 'keep', 'mail', 'facebook', 'close', 'also', 'screen', 'best', 'price', 'look', 'nokia', 'smartphon', 'model', 'like', 'see', 'real', 'price', 'differ', 'overal', 'phone', 'well', 'worth', 'price', 'pay'], ['articl', 'top', 'qualiti', 'util', 'articl', 'top', 'qualiti', 'util', 'easi', 'use', 'qualiti', 'materi', 'life', 'recommend'], ['great', 'phone', 'complaint', 'unlock', 'take', 'littl', 'time', 'get', 'start', 'batteri', 'life', 'describ', 'day', 'great', 'good', 'sound', 'qualiti', 'also', 'perfect', 'speaker', 'function', 'lot', 'choic', 'differ', 'set', 'work', 'sim', 'card', 'catch', 'internet', 'tmobil', 'immedi', 'charg', 'easi', 'type', 'messag', 'overal', 'pleasant', 'comfort', 'hold', 'hand', 'good', 'design', 'make', 'pleasur', 'use'], ['phone', 'get', 'servic', 'hour', 'end', 'middl', 'citi', 'old', 'littl', 'samsung', 'not', 'problem', 'sit', 'spot', 'phone', 'nice', 'look', 'comfort', 'hold', 'complet', 'unreli', 'come', 'make', 'call', 'send', 'text', 'anyth', 'els', 'phone', 'appar', 'sim', 'card', 'old', 'worn', 'phone', 'get', 'fresh', 'sim', 'card', 'resolv', 'issu', 'love', 'phone'], ['research', 'phone', 'month', 'i', 'devot', 'fan', 'nokia', 'make', 'call', 'receiv', 'call', 'text', 'littl', 'not', 'want', 'forc', 'get', 'data', 'plan', 'still', 'want', 'internet', 'option', 'phone', 'batteri', 'life', 'use', 'day', 'internet', 'use', 'internet', 'not', 'use', 'time', 'phone', 'look', 'great', 'perform', 'great', 'overal', 'excel', 'simpl', 'need', 'recept', 'great', 'volum', 'great', 'major', 'problem', 'experienc', 'conquer', 'lot', 'help', 'get', 'internet', 'mms', 'set', 'configur', 'could', 'not', 'send', 'receiv', 'pictur', 'via', 'text', 'could', 'not', 'get', 'internet', 'tech', 'employe', 'could', 'not', 'help', 'told', 'phone', 'though', 'unlock', 'would', 'not', 'receiv', 'internet', 'mms', 'messag', 'not', 'phone', 'not', 'print', 'anywher', 'absolut', 'not', 'true', 'got', 'help', 'review', 'post', 'may', 'review', 'list', 'littl', 'extra', 'research', 'tweak', 'formula', 'bit', 'eventu', 'work', 'send', 'receiv', 'pictur', 'mms', 'get', 'internet', 'look', 'review', 'help', 'patienc', 'eventu', 'work', 'review', 'step', 'list', 'sever', 'entri', 'not', 'help', 'idea', 'put', 'follow', 'help', 'nokia', 'mms', 'web', 'set', 'solvedmultimedia', 'messagingmenu', 'set', 'configur', 'person', 'set', 'option', 'add', 'new', 'multimedia', 'msgaccount', 'name', 'mmsserver', 'address', 'use', 'pref', 'access', 'pt', 'noaccess', 'point', 'proxi', 'proxi', 'address', 'proxi', 'port', 'packet', 'data', 'acc', 'pt', 'network', 'type', 'authent', 'type', 'user', 'name', 'wap', 'capit', 'letter', 'password', 'capit', 'letter', 'go', 'back', 'person', 'set', 'person', 'account', 'option', 'activateinternetmenu', 'set', 'configur', 'person', 'set', 'option', 'add', 'new', 'webaccount', 'name', 'media', 'nethomepag', 'user', 'name', 'leav', 'blankpassword', 'leav', 'blankus', 'pref', 'access', 'pt', 'noaccess', 'point', 'proxi', 'proxi', 'address', 'proxi', 'port', 'packet', 'data', 'acc', 'pt', 'network', 'type', 'authent', 'type', 'user', 'name', 'wap', 'capit', 'letter', 'password', 'capit', 'letter', 'go', 'back', 'person', 'set', 'person', 'account', 'option', 'activatei', 'love', 'nokia', 'phone', 'plan', 'die'], ['travel', 'europ', 'r', 'r', 'station', 'afghanistan', 'us', 'armi', 'want', 'decent', 'yet', 'inexpens', 'phone', 'would', 'enabl', 'purchas', 'cheap', 'sim', 'card', 'everi', 'countri', 'visit', 'phone', 'fit', 'bill', 'perfect', 'use', 'sever', 'asian', 'european', 'countri', 'troubl', 'also', 'download', 'nokia', 'pc', 'suit', 'allow', 'phone', 'fulli', 'sync', 'microsoft', 'outlook', 'facebook', 'twitter', 'ms', 'chat', 'friend', 'full', 'qwerti', 'keyboard', 'even', 'offer', 'capabl', 'take', 'advantag', 'hotspot', 'oh', 'also', 'neglect', 'mention', 'lot', 'app', 'avail', 'phone', 'well', 'instanc', 'london', 'download', 'interact', 'map', 'london', 'tube', 'system', 'get', 'home', 'phone', 'go', 'travel', 'drawer', 'right', 'next', 'adapt', 'plug', 'passport', 'great', 'one', 'complaint', 'browser', 'littl', 'hard', 'use', 'suppos', 'point', 'i', 'use', 'touch', 'screen'], ['compré', 'est', 'teléfono', 'para', 'mi', 'esposa', 'por', 'el', 'prestigio', 'de', 'ser', 'un', 'nokia', 'adema', 'que', 'ofrecía', 'wifi', 'acceso', 'las', 'rede', 'social', 'facebook', 'twitter', 'hotmail', 'una', 'supuesta', 'comunidad', 'nokia', 'que', 'trabajaría', 'como', 'la', 'de', 'los', 'blackberri', 'sin', 'embargo', 'es', 'un', 'engaño', 'total', 'pue', 'al', 'intentar', 'acced', 'éstas', 'el', 'equipo', 'se', 'queda', 'congelado', 'con', 'la', 'expresión', 'conectando', 'modo', 'que', 'apena', 'trabajan', 'bien', 'las', 'funcion', 'básica', 'para', 'lo', 'que', 'en', 'realidad', 'obtengo', 'mejor', 'hubiera', 'comprado', 'un', 'equipo', 'barato', 'ahorrando', 'asi', 'un', 'dinero', 'despido', 'de', 'los', 'nokia', 'se', 'acabó', 'su', 'reinado', 'tecnologicament', 'se', 'quedaron', 'dejaron', 'abandonado', 'los', 'iluso', 'que', 'creimo', 'en', 'ello', 'ahora', 'inventan', 'el', 'symbian', 'pero', 'para', 'los', 'que', 'compramo', 'las', 'version', 'anterior'], ['good', 'product', 'thank'], ['phone', 'work', 'good', 'month', 'later', 'call', 'button', 'not', 'work', 'contract', 'not', 'delet', 'call', 'log'], ['work', 'great', 'like', 'new', 'phone', 'phone', 'easi', 'figur', 'charg', 'last', 'quit'], ['phone', 'great', 'use', 'oversea', 'use', 'sim', 'card', 'whatev', 'countri', 'travel', 'alway', 'work'], ['articl', 'top', 'qualiti', 'util', 'articl', 'top', 'qualiti', 'util', 'easi', 'use', 'qualiti', 'materi', 'life', 'recommend'], ['phone', 'not', 'unlock', 'year', 'later', 'bought', 'phone', 'still', 'not', 'use', 'messag', 'restrict', 'phone'], ['great', 'cell', 'well', 'long', 'time'], ['excel', 'phone', 'like', 'gift', 'mom', 'work', 'movistar', 'good', 'easi', 'use', 'good'], ['first', 'great', 'price', 'unlock', 'phone', 'use', 'tmobil', 'prepaid', 'gsm', 'sim', 'card', 'servic', 'provid', 'worldwid', 'i', 'not', 'go', 'repeat', 'technic', 'specif', 'light', 'portabl', 'excel', 'batteri', 'life', 'talk', 'realli', 'long', 'time', 'make', 'sure', 'turn', 'wifi', 'not', 'use', 'phone', 'perfect', 'everyday', 'use', 'backup', 'second', 'phone', 'love', 'fm', 'also', 'make', 'decent', 'would', 'recommend', 'carrier', 'brand', 'phone', 'alway', 'cheaper', 'long', 'run', 'get', 'unsubsid', 'phone'], ['gave', 'two', 'star', 'phone', 'sold', 'unlock', 'gsm', 'phone', 'howev', 'phone', 'packag', 'pay', 'phone', 'reciev', 'lock', 'communic', 'seller', 'oem', 'shop', 'not', 'help', 'eventu', 'six', 'day', 'prompt', 'repli', 'not', 'code', 'could', 'return', 'want'], ['friend', 'love', 'phone'], ['good'], ['love', 'new', 'upgrad'], ['beauti', 'phone', 'easi', 'use', 'everyth', 'normal', 'peopl', 'need', 'expens', 'get', 'acostumbr', 'time', 'think', 'buy', 'sure', 'happi'], ['phone', 'purchas', 'provid', 'call', 'servic', 'option', 'ad', 'use', 'not', 'want', 'smart', 'phone', 'phone', 'great', 'long', 'batteri', 'life', 'charg', 'not', 'drop', 'call', 'two', 'import', 'characterist', 'look', 'ad', 'text', 'data', 'plan', 'possibl', 'alway', 'good', 'luck', 'nokia', 'phone'], ['phone', 'work', 'great', 'batteri', 'last', 'forev', 'featur', 'need', 'littl', 'bit', 'work', 'get', 'pictur', 'messag', 'work', 'att', 'googl', 'go', 'thru', 'step', 'work', 'great'], ['love', 'phone', 'high', 'tech', 'phone', 'love', 'one', 'last', 'long', 'time', 'much', 'abus', 'batteri', 'life', 'id', 'excel', 'phone', 'overal', 'good', 'phone'], ['featur', 'opinion', 'batteri', 'life', 'left', 'phone', 'bluetooth', 'connect', 'day', 'one', 'charg', 'light', 'phone', 'internet', 'one', 'green', 'bar', 'batteri', 'thing', 'still', 'not', 'given', 'low', 'batteri', 'warn', 'batteri', 'life', 'use', 'sinc', 'wifi', 'home', 'work', 'not', 'need', 'data', 'plan', 'per', 'mb', 'data', 'servic', 'plan', 'phone', 'use', 'tini', 'amount', 'data', 'give', 'email', 'alert', 'day', 'alway', 'use', 'mb', 'look', 'month', 'email', 'oper', 'system', 'primit', 'calendar', 'sync', 'outlook', 'usb', 'cabl', 'requir', 'wifi', 'sync', 'email', 'use', 'multipl', 'account', 'gmail', 'problem', 'good', 'got', 'gb', 'memori', 'card', 'could', 'use', 'player', 'thing', 'middl', 'look', 'like', 'track', 'pad', 'pictur', 'switch', 'gps', 'realli', 'use', 'app', 'download', 'let', 'check', 'facebook', 'alert', 'easili', 'use', 'space', 'alway', 'display', 'current', 'want', 'phone', 'incred', 'awesom', 'batteri', 'life', 'let', 'us', 'check', 'email', 'carri', 'schedul', 'not', 'lock', 'expens', 'plan', 'two', 'year', 'phone', 'get'], ['not', 'care', 'pay', 'data', 'plan', 'need', 'phone', 'talk', 'text', 'i', 'phone', 'littl', 'year', 'found', 'extrem', 'tough', 'reliabl', 'drop', 'accident', 'mani', 'time', 'without', 'problem', 'sound', 'qualiti', 'great', 'includ', 'speakerphon', 'bluetooth', 'work', 'flawless', 'subaru', 'text', 'work', 'well', 'love', 'qwerti', 'keyboard', 'batteri', 'life', 'fabul', 'charg', 'week', 'would', 'includ', 'follow', 'number', 'button', 'small', 'dial', 'number', 'hard', 'without', 'look', 'close', 'phone', 'i', 'not', 'bother', 'tend', 'call', 'peopl', 'save', 'contact', 'web', 'brows', 'joke', 'float', 'arrow', 'around', 'key', 'tri', 'decid', 'not', 'care', 'ipod', 'perfect', 'utilz', 'want', 'great', 'tough', 'phone', 'talk', 'text', 'outstand', 'batteri', 'life', 'phone', 'bought', 'unlock', 'amazon', 'pop', 'sim', 'card', 'work', 'day', 'one', 'without', 'problem', 'thank', 'amazon'], ['buen', 'telefono', 'bastant', 'aplicacion', 'util', 'pued', 'tener', 'todo', 'en', 'un', 'telefono', 'correo', 'mensajeria', 'rede', 'social', 'etc', 'mucha', 'opcion', 'de', 'acceso', 'rapido', 'la', 'aplicacion', 'de', 'facebook', 'twitter', 'instalada', 'son', 'muy', 'lenta', 'tuve', 'que', 'descargar', 'otra', 'version'], ['excel', 'phone', 'good', 'term', 'construct', 'term', 'disappoint', 'camera', 'somewhat', 'slow', 'servic', 'seller', 'well', 'complaint', 'high', 'recommend'], ['muy', 'bien'], ['say', 'nokia', 'suppos', 'market', 'reason', 'price', 'phone', 'stand', 'handl', 'ruff', 'phone', 'os', 'mayb', 'outdat', 'work'], ['expens', 'excel'], ['excel', 'devic', 'beyond', 'expect', 'would', 'recommend', 'anyon', 'seek', 'style', 'class', 'featur', 'enhanc', 'daili', 'technolog', 'experi'], ['exel'], ['es', 'un', 'celular', 'de', 'gran', 'calidad', 'muy', 'buen', 'precio', 'tien', 'todo', 'lo', 'basico', 'necesario', 'para', 'el', 'dia', 'adia', 'lo', 'unico', 'es', 'q', 'levanta', 'pose', 'control', 'de', 'volumen', 'los', 'lado', 'q', 'son', 'muy', 'necsario', 'para', 'mi'], ['excel', 'phone', 'like', 'gift', 'mom', 'work', 'movistar', 'good', 'easi', 'use', 'good'], ['bad', 'phone', 'keyboard', 'damag', 'short', 'time', 'use', 'also', 'problem', 'display', 'backlight', 'not', 'like', 'phone', 'es', 'un', 'mal', 'telefono', 'el', 'teclado', 'se', 'daño', 'en', 'poco', 'tiempo', 'adema', 'tien', 'un', 'problema', 'con', 'la', 'luz', 'de', 'la', 'pantalla'], ['excel', 'product', 'good', 'price', 'relat', 'other', 'recommend', 'peopl', 'look', 'qualiti', 'product', 'low', 'cost'], ['own', 'numer', 'pda', 'smart', 'phone', 'pleasur', 'actual', 'phone', 'practic', 'powerful', 'ultra', 'light', 'slim', 'grant', 'not', 'huge', 'screen', 'realli', 'discreet', 'phone', 'best', 'thing', 'life', 'come', 'small', 'packag', 'nokia', 'definit', 'one', 'factor', 'ultra', 'fast', 'applic', 'perform', 'ovi', 'store', 'plenti', 'app', 'choos', 'oveal', 'stylish', 'user', 'friend', 'phone', 'bell', 'whistl', 'bulki', 'phone', 'price', 'amaz', 'great', 'valu'], ['excel', 'product', 'use', 'recommend', 'look', 'good', 'product', 'best', 'good', 'price'], ['bought', 'use', 'brazil', 'still', 'work', 'main', 'disadvantag', 'point', 'batteri', 'charg', 'everi', 'camera', 'not', 'good'], ['phone', 'hang', 'constant', 'shut', 'unexpect', 'internet', 'slow', 'not', 'visit', 'web', 'page', 'standard', 'amount', 'multimedia', 'content', 'general', 'speak', 'slow', 'perform', 'os', 'confus', 'nokia', 'store', 'not', 'applic', 'touchscreen', 'symbian', 'finish', 'virtual', 'keyboard', 'occupi', 'half', 'screen', 'third', 'parti', 'lot', 'work', 'hardwar', 'softwar', 'touchscreen', 'phone'], ['purchas', 'nokia', 'unlock', 'gsm', 'smartphon', 'intern', 'usag', 'march', 'make', 'comment', 'phone', 'want', 'everyon', 'know', 'base', 'experi', 'nokia', 'technic', 'support', 'confid', 'nokia', 'treat', 'like', 'vip', 'stand', 'behind', 'time', 'call', 'nokia', 'support', 'number', 'assist', 'total', 'delight', 'knowledg', 'repres', 'alway', 'spent', 'whatev', 'time', 'requir', 'ensur', 'complet', 'satisfact', 'question', 'answer', 'best', 'philippin', 'sinc', 'june', 'septemb', 'slider', 'start', 'develop', 'littl', 'sloppi', 'slowli', 'becom', 'progress', 'sloppier', 'went', 'local', 'nokia', 'phone', 'store', 'manila', 'nokia', 'repres', 'assur', 'not', 'typic', 'advis', 'sinc', 'purchas', 'phone', 'usa', 'contact', 'nokia', 'support', 'center', 'usa', 'determin', 'best', 'get', 'issu', 'call', 'nokia', 'agent', 'not', 'sure', 'best', 'accommod', 'request', 'get', 'phone', 'servic', 'local', 'philippin', 'case', 'escal', 'manag', 'resolut', 'phone', 'fulli', 'function', 'request', 'not', 'urgent', 'happi', 'suggest', 'process', 'offer', 'say', 'quick', 'assign', 'person', 'case', 'manag', 'name', 'maci', 'treat', 'like', 'vip', 'maci', 'took', 'time', 'fulli', 'understand', 'concern', 'get', 'phone', 'servic', 'local', 'phone', 'usa', 'variant', 'maci', 'use', 'word', 'assur', 'nokia', 'resolut', 'case', 'smile', 'face', 'ask', 'request', 'urgent', 'could', 'give', 'time', 'work', 'nokia', 'team', 'come', 'absolut', 'best', 'resolut', 'like', 'told', 'origin', 'agent', 'told', 'maci', 'request', 'not', 'urgent', 'phone', 'fulli', 'function', 'sure', 'point', 'slider', 'becom', 'loos', 'day', 'maci', 'contact', 'offer', 'ship', 'brand', 'new', 'phone', 'philippin', 'nokia', 'expens', 'ensur', 'complet', 'satisfact', 'new', 'nokia', 'say', 'delight', 'nokia', 'truli', 'understat', 'maci', 'nokia', 'definit', 'use', 'maci', 'word', 'put', 'smile', 'face', 'result', 'treat', 'nokia', 'especi', 'age', 'compani', 'look', 'cut', 'cost', 'wherev', 'never', 'anoth', 'brand', 'get', 'phone', 'understand', 'nokia', 'direct', 'soon', 'offer', 'window', 'phone', 'replac', 'symbian', 'oper', 'system', 'yes', 'point', 'readi', 'upgrad', 'new', 'phone', 'base', 'experi', 'nokia', 'nokia', 'window', 'phone', 'lot', 'research', 'purchas', 'nokia', 'smartphon', 'felt', 'purpos', 'unlock', 'gsm', 'phone', 'work', 'network', 'usa', 'virtual', 'everywher', 'world', 'best', 'valu', 'plus', 'unlock', 'phone', 'afford', 'not', 'need', 'commit', 'expens', 'phone', 'contract', 'fulli', 'function', 'qualiti', 'realiti', 'phone', 'rock', 'solid', 'everyth', 'well', 'simpli', 'work', 'lot', 'applic', 'avail', 'nokia', 'store', 'interfac', 'intuit', 'straightforward', 'use', 'may', 'not', 'glitzi', 'interfac', 'newer', 'interfac', 'phone', 'realli', 'intuit', 'use', 'work', 'load', 'featur', 'implement', 'hardwar', 'also', 'rock', 'solid', 'get', 'lot', 'complement', 'phone', 'wherev', 'go', 'usa', 'philippin', 'qualiti', 'materi', 'workmanship', 'summari', 'whether', 'nokia', 'right', 'nokia', 'phone', 'not', 'sure', 'find', 'nokia', 'model', 'meet', 'not', 'urgent', 'rush', 'get', 'window', 'phone', 'base', 'experi', 'nokia', 'would', 'well', 'wait', 'new', 'nokia', 'window', 'model', 'make', 'invest', 'new', 'window', 'phone'], ['sinc', 'bought', 'cellphon', 'one', 'problem', 'show', 'screen', 'white', 'second', 'turn', 'make', 'call', 'time', 'hand', 'free', 'not', 'work', 'comment', 'one', 'two', 'cellphon', 'problem', 'one', 'work', 'fine', 'not', 'know', 'live', 'costa', 'rica', 'not', 'know', 'contact', 'second', 'shop', 'internet', 'not', 'good', 'experi', 'time'], ['camera', 'qualiti', 'voic', 'qualiti', 'excel', 'sound', 'speaker', 'low', 'heavi', 'sometim', 'slow', 'phone', 'clariti', 'awesom', 'love', 'bluetooth', 'wifi', 'work', 'fine', 'keyboard', 'kind', 'ok'], ['excelent', 'es', 'la', 'unica', 'palabra', 'que', 'le', 'queda', 'est', 'equipo', 'el', 'una', 'maravilla', 'llego', 'rapido', 'sin', 'problema', 'el', 'equipo', 'cogio', 'la', 'todo', 'funcion', 'excelent', 'hay', 'nada', 'q', 'hacer', 'espero', 'siga', 'adelant', 'nokia', 'est', 'vendedor'], ['good', 'phone', 'especi', 'social', 'network', 'facebook', 'use', 'special', 'touch', 'phone', 'enter', 'data', 'qwerti', 'keyboard', 'not', 'regist', 'proper', 'work', 'perfect', 'costa', 'rica', 'drain', 'batteri', 'quick', 'use', 'extens', 'internet', 'camera', 'oper', 'normal'], ['two', 'month', 'use', 'phone', 'could', 'not', 'satisfi', 'excel', 'phone', 'pricepro', 'accept', 'qualiti', 'slider', 'qwerti', 'browser', 'flash', 'lite', 'good', 'overal', 'qualiti', 'connect', 'bit', 'slow', 'navig', 'batteri', 'short', 'durationi', 'see', 'two', 'negat', 'point', 'say', 'price', 'equip', 'noth', 'better', 'market', 'manag', 'email', 'account', 'notifi', 'arriv', 'new', 'messag', 'want', 'surf', 'internet', 'quick', 'enter', 'site', 'like', 'youtub', 'thank', 'flash', 'lite', 'keep', 'connect', 'social', 'network', 'twitter', 'facebook', 'recommend', 'misplac', 'word', 'not', 'understand', 'not', 'speak', 'good'], ['exel', 'product', 'easi', 'touch', 'talk', 'navig', 'choos', 'nokia', 'problem'], ['love', 'phone', 'good', 'old', 'school', 'nokia'], ['excelent'], ['nokia', 'nice', 'phone', 'uniqu', 'handi', 'receiv', 'phone', 'quick', 'amazon', 'great', 'job', 'tell', 'day', 'say', 'day', 'might', 'get', 'phone', 'not', 'heavi', 'like', 'app', 'wish', 'like', 'ipod', 'iphon', 'love', 'map', 'download', 'countri', 'actual', 'show', 'without', 'onlin', 'talk', 'drive', 'put', 'want', 'go', 'go', 'away', 'tri', 'outsid', 'usa', 'still', 'show', 'actual', 'need', 'download', 'entir', 'usa', 'need', 'larger', 'capac', 'micro', 'sd', 'usa', 'larg', 'could', 'download', 'state', 'need', 'search', 'said', 'not', 'need', 'onlin', 'particular', 'screen', 'freez', 'turn', 'phone', 'phone', 'turn', 'without', 'otherwis', 'okay', 'price', 'littl', 'everyth', 'extra', 'phone', 'not', 'wifi', 'great', 'pick', 'wifi', 'virtual', 'one', 'problem', 'could', 'not', 'find', 'cover', 'screen', 'protect', 'film', 'except', 'uk', 'china', 'wait', 'packag', 'amazon', 'two', 'type', 'anoth', 'compani', 'like', 'one', 'one', 'color', 'avail', 'need', 'color', 'i', 'hope', 'amazon', 'get', 'case', 'futur', 'buy', 'case', 'custom', 'would', 'phone', 'nice', 'everyth', 'say', 'would'], ['phone', 'want', 'touch', 'phone', 'love', 'approv', 'anyon', 'want', 'get', 'go', 'ok', 'although', 'not', 'connect', 'ovi', 'camera', 'sharp', 'record', 'music', 'sound', 'good', 'thank', 'nokia', 'realli', 'connect', 'peopl'], ['sinc', 'bought', 'cellphon', 'one', 'problem', 'show', 'screen', 'white', 'second', 'turn', 'make', 'call', 'time', 'hand', 'free', 'not', 'work', 'comment', 'one', 'two', 'cellphon', 'problem', 'one', 'work', 'fine', 'not', 'know', 'live', 'costa', 'rica', 'not', 'know', 'contact', 'second', 'shop', 'internet', 'not', 'good', 'experi', 'time'], ['came', 'i', 'fair', 'familiar', 'nokia', 'phone', 'general', 'symbian', 'os', 'want', 'touchscreen', 'phone', 'keyboard', 'within', 'budget', 'would', 'gone', 'mini', 'bit', 'pricey', 'consid', 'et', 'al', 'come', 'read', 'almost', 'avail', 'review', 'read', 'onlin', 'know', 'get', 'thing', 'surpris', 'resist', 'touchscreen', 'bought', 'phone', 'expect', 'return', 'immedi', 'touchscreen', 'compar', 'capacit', 'ipod', 'touch', 'amaz', 'respons', 'accur', 'expect', 'need', 'stylus', 'nail', 'navig', 'phone', 'realli', 'not', 'howev', 'bit', 'bulki', 'compar', 'pretti', 'much', 'nokiamap', 'redunkul', 'love', 'last', 'time', 'check', 'got', 'nokia', 'map', 'back', 'requir', 'year', 'rate', 'use', 'pretti', 'much', 'useless', 'bec', 'tri', 'enter', 'address', 'requir', 'zipcod', 'entri', 'search', 'new', 'interfac', 'work', 'much', 'like', 'googlemap', 'esp', 'ovi', 'account', 'much', 'easier', 'use', 'featur', 'ever', 'want', 'stand', 'alon', 'gps', 'get', 'phone', 'along', 'specif', 'bought', 'phone', 'tri', 'nokiamap', 'rode', 'motorcycl', 'not', 'beat', 'accur', 'gps', 'plug', 'bluetooth', 'headset', 'use', 'ride', 'find', 'suitabl', 'handlebar', 'holder', 'phone', 'mount', 'still', 'oper', 'phone', 'glove', 'bec', 'resist', 'screen', 'speakerphon', 'weaksid', 'bec', 'output', 'one', 'speaker', 'expect', 'batteri', 'not', 'last', 'hour', 'bec', 'data', 'connect', 'alway', 'activ', 'bec', 'widget', 'gps', 'also', 'not', 'charg', 'usb', 'use', 'older', 'nokia', 'charger', 'updat', 'downsid', 'phone', 'find', 'far', 'last', 'week', 'usag'], ['exelent', 'compra', 'la', 'mandaron', 'hasta', 'ecuador', 'muy', 'buena', 'la', 'tienda', 'muy', 'seria', 'el', 'perfum', 'muy', 'bueno', 'persona', 'seria'], ['i', 'simpli', 'love', 'phone', 'drawback', 'reason', 'not', 'give', 'star', 'rate', 'yes', 'os', 'bit', 'laggi', 'open', 'screen', 'get', 'white', 'screen', 'second', 'two', 'app', 'close', 'without', 'appar', 'reason', 'error', 'messag', 'special', 'true', 'opera', 'mobil', 'app', 'inter', 'connect', 'breez', 'depend', 'internet', 'plan', 'use', 'sport', 'tracker', 'gps', 'capabl', 'great', 'precis', 'awar', 'first', 'time', 'run', 'gps', 'phone', 'anytim', 'hard', 'reset', 'need', 'outsid', 'clear', 'view', 'sky', 'not', 'get', 'lock', 'establish', 'first', 'lock', 'sattelit', 'subsequ', 'lock', 'phone', 'construct', 'sturdi', 'resist', 'touch', 'screen', 'quick', 'respond', 'intuit', 'use', 'even', 'wear', 'motorcycl', 'glove', 'problem', 'resist', 'touch', 'ad', 'benefit', 'price', 'phone', 'alreadi', 'drop', 'sinc', 'purchas', 'get', 'good', 'qualiti', 'phone', 'one', 'great', 'price'], ['greattouchscreen', 'responsivekeyboard', 'great', 'adapt', 'camera', 'great', 'photo', 'creat', 'scene', 'modeapl', 'mani', 'googlepreinstal', 'aplic', 'quickoffic', 'facebook', 'mani', 'moreintegr', 'gps', 'greatcon', 'batteri', 'durationit', 'heavi', 'not', 'much', 'awar', 'phone', 'not', 'charg', 'cabl', 'usb', 'charg', 'happi', 'phone', 'decid', 'buy', 'recomend', 'updat', 'firmwar', 'version'], ['ok'], ['phone', 'nice', 'practic', 'manual', 'good', 'explan', 'spanish', 'easi', 'understand', 'import', 'wi', 'fi', 'gps', 'work', 'well', 'ovi', 'store', 'excel', 'download', 'applic', 'regist', 'give', 'free', 'camera', 'good', 'cours', 'would', 'say', 'not', 'better', 'old', 'soni', 'ericsson', 'even', 'seen', 'well', 'imag', 'practic', 'receiv', 'email', 'direct', 'phone', 'among', 'recommend', 'el', 'teléfono', 'es', 'muy', 'lindo', 'practico', 'útil', 'el', 'manual', 'tien', 'buena', 'explicacion', 'en', 'españold', 'fácil', 'de', 'entend', 'lo', 'más', 'important', 'que', 'tien', 'wi', 'fi', 'el', 'gps', 'funciona', 'bien', 'la', 'tienda', 'ovi', 'excelent', 'para', 'descargar', 'aplicacion', 'al', 'registrart', 'te', 'regala', 'alguna', 'aplicacion', 'grati', 'la', 'cámara', 'de', 'es', 'buena', 'claro', 'yo', 'diría', 'que', 'mejor', 'que', 'la', 'de', 'mi', 'antiguo', 'soni', 'ericsson', 'pero', 'aun', 'así', 'se', 'aprecia', 'muy', 'bien', 'las', 'i', 'amágen', 'muy', 'practico', 'recibir', 'tus', 'correo', 'directament', 'al', 'teléfono', 'entr', 'otra', 'cosa', 'lo', 'recomiendo'], ['excel', 'product', 'good', 'condit', 'best', 'imposs', 'satisfi', 'purchas', 'thank', 'sale', 'purchas', 'glad', 'ok', 'ok', 'ok'], ['el', 'celular', 'en', 'general', 'es', 'bueno', 'buena', 'interfaz', 'gusta', 'el', 'modelo', 'aunqu', 'el', 'peso', 'es', 'un', 'poco', 'alto', 'su', 'teclado', 'qwerti', 'una', 'buena', 'distribución', 'de', 'peso', 'lo', 'ayuda', 'desventaja', 'por', 'la', 'que', 'le', 'doy', 'el', 'es', 'lento', 'se', 'ha', 'quedado', 'pegado', 'en', 'oportunidad', 'en', 'mese', 'apart', 'la', 'aplicación', 'de', 'correo', 'electrónico', 'si', 'quier', 'que', 'se', 'actualicen', 'los', 'correo', 'tien', 'que', 'reiniciar', 'el', 'teléfono', 'porqu', 'en', 'lo', 'que', 'se', 'por', 'metert', 'en', 'el', 'correo', 'en', 'una', 'computadora', 'se', 'vuelv', 'actualizar', 'hasta', 'que', 'haga', 'eso'], ['phone', 'hang', 'constant', 'shut', 'unexpect', 'internet', 'slow', 'not', 'visit', 'web', 'page', 'standard', 'amount', 'multimedia', 'content', 'general', 'speak', 'slow', 'perform', 'os', 'confus', 'nokia', 'store', 'not', 'applic', 'touchscreen', 'symbian', 'finish', 'virtual', 'keyboard', 'occupi', 'half', 'screen', 'third', 'parti', 'lot', 'work', 'hardwar', 'softwar', 'touchscreen', 'phone'], ['yea', 'took', 'chanc', 'phone', 'review', 'amazon', 'advertis', 'said', 'heck', 'alway', 'return', 'everyth', 'look', 'qualiti', 'camera', 'slide', 'qwerti', 'pad', 'touch', 'screen', 'price', 'right', 'nice', 'touch', 'screen', 'although', 'sometim', 'took', 'long', 'realiz', 'whether', 'phone', 'sideway', 'chang', 'accord', 'not', 'impress', 'camera', 'qualiti', 'lower', 'grade', 'secondari', 'camera', 'want', 'person', 'pictur', 'tri', 'take', 'pictur', 'use', 'main', 'camera', 'hard', 'time', 'find', 'button', 'not', 'one', 'side', 'easili', 'snap', 'pictur', 'i', 'not', 'liter', 'smart', 'phone', 'world', 'bear', 'qwerti', 'pad', 'great', 'like', 'overal', 'phone', 'okay', 'could', 'stuck', 'day', 'purchas', 'deal', 'breaker', 'came', 'lose', 'call', 'rington', 'preload', 'phone', 'stop', 'work', 'not', 'chang', 'anyth', 'set', 'volum', 'stop', 'work', 'noth', 'els', 'seem', 'defect', 'not', 'know', 'took', 'leap', 'faith', 'not', 'pan', 'oh', 'well', 'next', 'phone'], ['camera', 'qualiti', 'voic', 'qualiti', 'excel', 'sound', 'speaker', 'low', 'heavi', 'sometim', 'slow', 'phone', 'clariti', 'awesom', 'love', 'bluetooth', 'wifi', 'work', 'fine', 'keyboard', 'kind', 'ok'], ['look', 'phone', 'smart', 'featur', 'not', 'smart', 'price', 'found', 'one', 'simpli', 'put', 'sim', 'live', 'work', 'like', 'charm', 'full', 'multiband', 'gps', 'precis', 'condit', 'favor', 'need', 'open', 'space', 'clear', 'view', 'camera', 'simpli', 'great', 'sound', 'awesom', 'easi', 'connect', 'network', 'ui', 'not', 'intuit', 'know', 'dozen', 'add', 'on', 'fit', 'everi', 'tast', 'start', 'scratch', 'babi', 'potenti'], ['two', 'month', 'use', 'phone', 'could', 'not', 'satisfi', 'excel', 'phone', 'pricepro', 'accept', 'qualiti', 'slider', 'qwerti', 'browser', 'flash', 'lite', 'good', 'overal', 'qualiti', 'connect', 'bit', 'slow', 'navig', 'batteri', 'short', 'durationi', 'see', 'two', 'negat', 'point', 'say', 'price', 'equip', 'noth', 'better', 'market', 'manag', 'email', 'account', 'notifi', 'arriv', 'new', 'messag', 'want', 'surf', 'internet', 'quick', 'enter', 'site', 'like', 'youtub', 'thank', 'flash', 'lite', 'keep', 'connect', 'social', 'network', 'twitter', 'facebook', 'recommend', 'misplac', 'word', 'not', 'understand', 'not', 'speak', 'good'], ['great', 'phone', 'exceed', 'descript', 'saw', 'onlin', 'purchas', 'awesom', 'deal', 'thank', 'much', 'deal'], ['phone', 'best', 'bought', 'use', 'trinidad', 'work', 'perfect', 'ship', 'great', 'featur', 'easi', 'use', 'problem', 'realli', 'need', 'screen', 'protector', 'easili', 'get', 'scratch', 'keep', 'case', 'white', 'may', 'get', 'bit', 'dirti', 'good', 'phone', 'someon', 'whose', 'look', 'price', 'rang', 'great', 'smartphon'], ['work', 'reali', 'good', 'fast', 'qwerti', 'touch', 'screem', 'realli', 'good', 'web', 'surf', 'sms', 'good', 'batteri', 'cover', 'heat', 'hand', 'materi', 'full', 'capac', 'facebook', 'updat', 'updat', 'receiv', 'send', 'sms', 'day', 'web', 'surf', 'call', 'minut', 'batteri', 'life', 'die', 'hour', 'charger', 'home', 'anoth', 'one', 'work', 'without', 'web', 'surf', 'last', 'featur', 'light', 'level', 'person', 'front', 'menu', 'reallu', 'useful', 'work', 'real', 'good', 'need', 'opera', 'sinc', 'browser', 'come', 'phone', 'pen', 'includ', 'touch', 'screem', 'disapoint'], ['bought', 'nokia', 'not', 'work', 'proper', 'sometim', 'screen', 'freez', 'vait', 'open', 'secreen', 'get', 'angri', 'disappoint', 'anoth', 'problem', 'touch', 'secreen', 'not', 'work', 'want', 'buy', 'one', 'think', 'twice', 'decid', 'buy', 'not', 'opinion', 'buy', 'anoth', 'one'], ['nokia', 'made', 'life', 'easier', 'navig', 'link', 'friend', 'make', 'possibl'], ['excel', 'product', 'whatt', 'expect', 'funcion', 'nice', 'practic', 'recomend', 'everybodi', 'qualiti', 'economi', 'togeth'], ['great', 'servic', 'great', 'product', 'thank'], ['phone', 'look', 'nice', 'good', 'feel', 'design', 'howev', 'sever', 'drawback', 'camera', 'not', 'best', 'one', 'central', 'trackpad', 'take', 'get', 'use', 'still', 'not', 'feel', 'like', 'old', 'not', 'good', 'successor', 'qualiti', 'good', 'symbian', 'os', 'quit', 'old', 'os', 'quit', 'stabl', 'also', 'larg', 'space', 'bar', 'button', 'quit', 'use', 'new', 'ovi', 'map', 'also', 'great', 'navig', 'tool', 'drain', 'batteri', 'quit', 'quick', 'use', 'long', 'period', 'time'], ['bought', 'phone', 'niec', 'love', 'still', 'enjoy', 'never', 'complaint', 'phone', 'self', 'nice', 'build', 'price', 'right'], ['like', 'nokia', 'nokia', 'cellphon', 'peopl', 'understand', 'got', 'phone', 'son', 'hi', 'big', 'nokia', 'fan', 'hi', 'happi', 'phone'], ['good', 'morn', 'excel', 'purchas', 'arriv', 'estim', 'time', 'product', 'peopl', 'want', 'buy', 'great', 'way', 'buy', 'card', 'provid', 'optionto', 'shop', 'provid', 'good', 'servic', 'hope', 'continu', 'buy', 'best', 'wait', 'felicitaccion'], ['camera', 'today', 'aim', 'either', 'kid', 'like', 'chocol', 'fashion', 'conscious', 'adult', 'big', 'hit', 'razr', 'busi', 'peopl', 'bulki', 'blackberri', 'treo', 'want', 'phone', 'sleek', 'also', 'load', 'import', 'busi', 'tool', 'well', 'sleek', 'phone', 'come', 'high', 'speed', 'internet', 'wifi', 'connect', 'gone', 'day', 'pay', 'connect', 'internet', 'airport', 'hotel', 'simpli', 'use', 'mini', 'usb', 'cabl', 'download', 'symbian', 'base', 'modem', 'applic', 'use', 'phone', 'camera', 'decent', 'sinc', 'micro', 'sd', 'card', 'cheap', 'nowaday', 'bought', 'kingston', 'one', 'amazon', 'use', 'phone', 'also', 'portabl', 'player', 'stereo', 'ear', 'phone', 'includ', 'best', 'part', 'though', 'run', 'symbian', 'download', 'opera', 'mini', 'googl', 'map', 'neat', 'current', 'locat', 'function', 'capabl', 'brows', 'html', 'page', 'use', 'phone', 'water', 'gps', 'devic'], ['love', 'phone', 'amazon', 'price', 'suck', 'drop', 'price', 'week', 'paid', 'phone'], ['mention', 'arab', 'hebrew', 'languag', 'use', 'could'], ['miss', 'use', 'phone', 'text', 'social', 'app', 'happen'], ['got', 'uncl', 'love', 'nokia'], ['phone', 'great', 'phone', 'somebodi', 'want', 'small', 'stylish', 'candi', 'bar', 'smarthphon', 'fast', 'communic', 'option', 'anyon', 'would', 'need', 'smartphon'], ['amaz', 'touch', 'screen', 'respond', 'effect', 'awesom', 'app', 'featur', 'especi', 'ovi', 'map', 'batteri', 'last', 'long', 'handi', 'devic', 'individu', 'savor', 'smartphon'], ['tri', 'android', 'phone', 'appl', 'phone', 'window', 'phone', 'keep', 'com', 'back', 'nokia', 'reliabl', 'use', 'one', 'integr', 'perfect', 'ms', 'exchang', 'great', 'camera', 'good', 'flash', 'touch', 'screen', 'work', 'well', 'iphon', 'use', 'great', 'keyboard', 'get', 'job', 'done'], ['i', 'nokia', 'decad', 'i', 'own', 'mani', 'nokia', 'phone', 'one', 'easili', 'recal', 'own', 'i', 'use', 'sinc', 'came', 'far', 'best', 'phone', 'nokia', 'ever', 'made', 'i', 'not', 'sure', 'took', 'nokia', 'year', 'put', 'touchscreen', 'one', 'would', 'think', 'year', 'would', 'greatest', 'awesom', 'phone', 'ever', 'not', 'not', 'even', 'better', 'simpli', 'not', 'feel', 'nice', 'hand', 'not', 'look', 'good', 'not', 'intuit', 'well', 'good', 'around', 'long', 'support', 'nokia', 'recent', 'genuin', 'beleiv', 'still', 'best', 'phone', 'maker', 'come', 'back', 'etc', 'not', 'odd', 'never', 'come', 'back', 'ceo', 'concern', 'success', 'microsoft', 'wp', 'fail', 'first', 'announc', 'nokia', 'one', 'phone', 'generat', 'buzz', 'nokia', 'said', 'first', 'last', 'meego', 'phone', 'realli', 'work', 'wonder', 'get', 'peopl', 'excit', 'upcom', 'phone', 'sum', 'return', 'phone', 'mani', 'problem', 'review', 'mention', 'return', 'nokia', 'better', 'phone', 'enjoy', 'use', 'use', 'find', 'anoth', 'qwerti', 'phone', 'compar', 'new', 'bb', 'touch', 'amaz', 'problem', 'found', 'advic', 'nokia', 'make', 'exact', 'phone', 'fastest', 'processor', 'nokia', 'slow', 'processor', 'compar', 'competit', 'yet', 'price', 'par', 'market', 'put', 'touchscreen', 'not', 'anythign', 'els', 'everyth', 'phone', 'stop', 'delusion', 'not', 'market', 'leader', 'anymor', 'peak', 'nokia', 'either', 'make', 'great', 'qualiti', 'phone', 'justifi', 'price', 'sell', 'junk', 'comparison', 'apostroph', 'key', 'one', 'review', 'mention', 'move', 'hold', 'shift', 'key', 'l', 'though', 'would', 'good', 'idea', 'alon', 'would', 'make', 'return', 'phone', 'slow', 'type', 'quit', 'signific', 'throw', 'rhytm'], ['not', 'use', 'lot', 'advanc', 'featur', 'phone', 'instant', 'messag', 'email', 'synch', 'etc', 'use', 'basic', 'stuff', 'calendar', 'text', 'messag', 'phone', 'call', 'store', 'document', 'read', 'stori', 'short', 'casual', 'user', 'want', 'someth', 'like', 'except', 'better', 'screen', 'resolut', 'faster', 'internet', 'capabl', 'faster', 'processor', 'get', 'phone', 'not', 'phone', 'not', 'experi', 'lag', 'time', 'run', 'start', 'applic', 'menus', 'batteri', 'life', 'ran', 'mode', 'still', 'last', 'entir', 'day', 'even', 'heavi', 'usag', 'turn', 'i', 'sure', 'go', 'even', 'longer', 'batteri', 'life', 'not', 'issu', 'phone', 'go', 'flashlight', 'awesom', 'featur', 'own', 'know', 'flashlight', 'back', 'phone', 'use', 'flashlight', 'not', 'bright', 'flash', 'take', 'pictur', 'phone', 'actual', 'flashlight', 'mode', 'led', 'light', 'featur', 'also', 'featur', 'probabl', 'want'], ['phone', 'great', 'featur', 'includ', 'good', 'batteri', 'life', 'offlin', 'map', 'pretti', 'decent', 'camera', 'app', 'like', 'skype', 'whatsapp', 'fact', 'visual', 'notif', 'email', 'ridicul'], ['recent', 'purchas', 'nokia', 'disappoint', 'reason', 'keep', 'shut', 'manual', 'restart', 'connect', 'even', 'happen', 'phone', 'next', 'wireless', 'router', 'yes', 'power', 'save', 'discov', 'older', 'os', 'anna', 'not', 'issu', 'font', 'terribl', 'small', 'blackberri', 'similar', 'display', 'size', 'easi', 'read', 'text', 'font', 'magnifi', 'lack', 'connect', 'wireless', 'carrier', 'constant', 'drop', 'off', 'signal', 'return', 'amazon', 'refund', 'nokia', 'top', 'brand', 'one', 'time', 'surpris', 'compani', 'downward', 'spiral', 'guess', 'want', 'follow', 'blackberri', 'path', 'contact', 'nokia', 'support', 'unfortun', 'not', 'help', 'read', 'custom', 'review', 'purchas', 'listen', 'negat', 'review', 'say', 'far', 'best', 'cell', 'phone', 'term', 'qualiti', 'construct', 'attract', 'sturdi', 'nokia', 'leader', 'among', 'cell', 'phone', 'compani', 'obvious', 'not', 'motiv'], ['not', 'add', 'much', 'smartphon', 'aspect', 'phone', 'review', 'alreadi', 'bought', 'nokia', 'backup', 'iphon', 'lot', 'travel', 'truli', 'surpris', 'nokia', 'outstand', 'call', 'signal', 'qualiti', 'use', 'ride', 'bay', 'area', 'rapid', 'transit', 'offic', 'build', 'store', 'room', 'elev', 'even', 'got', 'signal', 'drove', 'thru', 'san', 'simeon', 'mountain', 'last', 'week', 'throughout', 'test', 'experi', 'iphon', 'whenev', 'use', 'signal', 'went', 'drift', 'came', 'back', 'maxiumum', 'signal', 'achiev', 'girlfriend', 'motorola', 'droid', 'razr', 'maxx', 'mountain', 'drive', 'fare', 'even', 'wors', 'signal', 'far', 'construct', 'phone', 'complaint', 'solid', 'rug', 'handsom', 'old', 'nokia', 'old', 'phone', 'nokia', 'unlock', 'phone', 'mp', 'camera', 'media', 'player', 'gps', 'navig', 'free', 'voic', 'navig', 'microsd', 'slot', 'version', 'warranti', 'gray', 'got', 'metal', 'most', 'gorilla', 'glass', 'batteri', 'life', 'get', 'day', 'use', 'call', 'least', 'two', 'hour', 'daili', 'text', 'messag', 'around', 'occasion', 'wifi', 'minut', 'daili', 'nokia', 'still', 'use', 'symbian', 'anna', 'sinc', 'hesit', 'updat', 'symbian', 'bell', 'report', 'issu', 'may', 'forc', 'updat', 'rumor', 'turn', 'true', 'nokia', 'soon', 'allow', 'updat', 'includ', 'mobil', 'microsoft', 'offic', 'app', 'onenot', 'lync', 'mobil', 'powerpoint', 'broadcast', 'document', 'connect', 'know', 'phone', 'continu', 'improv', 'thru', 'updat', 'make', 'feel', 'good', 'nokia', 'purchas'], ['complaint', 'far', 'fianc', 'blemish', 'screen', 'issu', 'neither', 'arriv', 'estim', 'time', 'came', 'symbian', 'bella', 'os', 'system', 'nice'], ['like', 'phone', 'good'], ['purchas', 'phone', 'read', 'review', 'decid', 'worth', 'get', 'not', 'type', 'data', 'plan', 'particular', 'like', 'fact', 'phone', 'ask', 'everi', 'time', 'network', 'want', 'connect', 'allow', 'save', 'not', 'connect', 'mistak', 'phone', 'network', 'save', 'batteri', 'life', 'chang', 'set', 'not', 'scan', 'wireless', 'network', 'time', 'set', 'phone', 'network', 'gsm', 'last', 'four', 'day', 'also', 'lot', 'free', 'app', 'research'], ['bought', 'phone', 'amazon', 'work', 'fine', 'year', 'one', 'week', 'year', 'warranti', 'expir', 'phone', 'act', 'everi', 'minut', 'hard', 'reset', 'format', 'phone', 'not', 'fix', 'problem', 'not', 'send', 'back', 'nokia', 'warranti', 'end', 'expens', 'paper', 'holder', 'nokia', 'brand', 'lesson', 'learn'], ['price', 'phone', 'wonder', 'solid', 'easi', 'setup', 'use', 'tmobil', 'prepaid', 'sim', 'card', 'insert', 'work', 'perfect', 'brought', 'contact', 'easi', 'connect', 'home', 'work', 'read', 'lot', 'phone', 'bought', 'purchas', 'review', 'amazon', 'read', 'site', 'hard', 'figur', 'wifi', 'could', 'not', 'turn', 'neither', 'true', 'click', 'big', 'squar', 'button', 'scroll', 'turn', 'wlan', 'scan', 'read', 'start', 'figur', 'problem', 'not', 'need', 'set', 'connect', 'email', 'googl', 'person', 'one', 'go', 'text', 'easi', 'keypad', 'sound', 'excel', 'high', 'recommend', 'phone'], ['pros', 'good', 'microsd', 'card', 'slotkeyboard', 'respons', 'great', 'tactil', 'feedbackhigh', 'customizablegreat', 'signal', 'strength', 'phone', 'get', 'bar', 'get', 'least', 'batteri', 'life', 'even', 'heavi', 'usetough', 'case', 'not', 'cheap', 'feel', 'allthousand', 'avail', 'app', 'meet', 'almost', 'everi', 'needeasi', 'set', 'wifi', 'still', 'advanc', 'set', 'complic', 'set', 'upsveri', 'internet', 'friend', 'load', 'page', 'quick', 'headset', 'jack', 'make', 'easi', 'use', 'headphon', 'phone', 'know', 'type', 'headphon', 'use', 'set', 'set', 'automaticallykeyboard', 'design', 'better', 'laid', 'use', 'month', 'unlimit', 'data', 'plan', 'get', 'phone', 'unlockedcryst', 'clear', 'call', 'qualitycon', 'volum', 'rocker', 'definit', 'miss', 'not', 'neededprocessor', 'power', 'leav', 'want', 'bit', 'moreearpiec', 'volum', 'bit', 'lower', 'expect', 'adequ', 'everyday', 'wifi', 'locat', 'greater', 'rang', 'wifi', 'actual', 'connect', 'leav', 'unabl', 'connect', 'wifi', 'see', 'gps', 'use', 'cell', 'phone', 'tower', 'approxim', 'within', 'feet', 'googl', 'map', 'map', 'applic', 'still', 'know', 'general', 'not', 'beat', 'qualiti', 'get', 'price', 'pay', 'struggl', 'phone', 'even', 'featur', 'ident', 'except', 'perk', 'realli', 'think', 'go', 'use', 'phone', 'find', 'phone', 'usual', 'meet', 'need'], ['hard', 'find', 'phone', 'everyth', 'want', 'i', 'look', 'phone', 'good', 'qwerti', 'keyboard', 'accuraci', 'i', 'heavi', 'text', 'messeng', 'phone', 'deliv', 'much', 'capabl', 'phone', 'gps', 'video', 'call', 'price', 'almost', 'steal', 'skeptic', 'order', 'phone', 'first', 'not', 'like', 'i', 'lazi', 'send', 'bacc', 'take', 'picki', 'buyer', 'not', 'go', 'wrong'], ['still', 'work', 'well', 'year'], ['good', 'morn', 'first', 'foremost', 'greet', 'moment', 'receiv', 'task', 'today', 'januari', 'hope', 'receiv', 'accord', 'publish', 'day', 'decemb', 'articl', 'nokia', 'unlock', 'phone', 'mp', 'camera', 'g', 'media', 'player', 'microsd', 'slot', 'version', 'warranti', 'deep', 'blue', 'nokia', 'meet', 'expect', 'excel', 'product', 'good', 'packag', 'excel', 'offic', 'add', 'intermediari', 'venezuela', 'seravila', 'not', 'meet', 'poor', 'clearanc', 'roger', 'eduardo', 'quintero', 'marriaga'], ['i', 'use', 'phone', 'year', 'half', 'price', 'not', 'ask', 'nice', 'look', 'nice', 'keyboard', 'feel', 'good', 'recept', 'bundl', 'use', 'program', 'everlast', 'batteri', 'slim', 'phone', 'not', 'much', 'look', 'like', 'except', 'made', 'plastic', 'pretti', 'reliabl', 'con', 'sometim', 'turn', 'bit', 'slow', 'lack', 'gps', 'price', 'simpl', 'unbet'], ['work', 'great', 'beauti', 'phone', 'wish', 'not', 'send', 'back', 'consum', 'cellular', 'although', 'work', 'system', 'call', 'basic', 'text', 'hour', 'phone', 'could', 'not', 'get', 'work', 'onlin', 'multimedia', 'text', 'great', 'phone'], ['compani', 'bought', 'nokia', 'mess', 'may', 'good', 'product', 'disabl', 'physic', 'keyboard', 'longer', 'work', 'whole', 'reason', 'want', 'phone', 'first', 'place', 'physic', 'keyboard'], ['estoy', 'fascinado', 'con', 'toda', 'las', 'funcion', 'de', 'est', 'aparato', 'es', 'muy', 'rapido', 'tien', 'un', 'aspecto', 'increibl', 'aunqu', 'tengo', 'que', 'admitir', 'que', 'es', 'muy', 'pesado', 'para', 'lo', 'que', 'esperaba'], ['alot', 'unfortun', 'nokia', 'not', 'support', 'oper', 'system', 'anymor', 'gone', 'dark', 'side'], ['great', 'phone', 'bought', 'last', 'week', 'bought', 'phone', 'design', 'physic', 'keyboard', 'purchas', 'android', 'phone', 'not', 'find', 'phone', 'physic', 'keyboard', 'motorola', 'droid', 'ok', 'not', 'get', 'mani', 'posit', 'beauti', 'good', 'physic', 'keyboard', 'i', 'never', 'got', 'familiar', 'virtual', 'keyboard', 'physic', 'one', 'not', 'need', 'look', 'keyboard', 'amol', 'interest', 'thing', 'connect', 'mous', 'keyboard', 'razer', 'mous', 'keyboard', 'game', 'connect', 'via', 'usb', 'go', 'work', 'get', 'updat', 'symbian', 'anna', 'hope', 'sym', 'bell', 'publish', 'decemb', 'howev', 'us', 'user', 'may', 'last', 'one', 'receiv', 'updat', 'not', 'receiv', 'updat', 'anna', 'yet', 'user', 'countri', 'alreadi', 'got', 'i', 'sure', 'updat', 'anna', 'anoth', 'interest', 'thing', 'symbian', 'os', 'hack', 'sometim', 'phone', 'got', 'freez', 'realli', 'annoy', 'use', 'mani', 'app', 'time', 'not', 'play', 'game', 'open', 'anoth', 'app', 'time', 'phone', 'absolut', 'notic', 'us', 'user', 'not', 'get', 'updat', 'symbian', 'anna', 'yet', 'realli', 'want', 'get', 'symbian', 'anna', 'search', 'youtub', 'detail', 'instruct', 'i', 'wait', 'offici', 'ovi', 'store', 'not', 'cool', 'not', 'mani', 'app', 'play', 'find', 'app', 'hd', 'game', 'symbian', 'forum'], ['good', 'phone', 'excel', 'built', 'batteri', 'life', 'realli', 'good', 'pleas', 'accessori', 'phone', 'appear', 'protect', 'price', 'fair', 'not', 'comput', 'phone', 'like', 'edg', 'phone', 'v', 'run', 'facebook', 'nas', 'file', 'explor', 'video', 'excel', 'qualiti', 'music', 'internet', 'radio', 'offic', 'file', 'multipl', 'account', 'touch', 'screen', 'respond', 'well', 'connect', 'usb', 'memori', 'transfer', 'run', 'play', 'file', 'open', 'compress', 'file', 'like', 'would', 'open', 'normal', 'file', 'lag', 'nice', 'key', 'bore', 'focus', 'busi', 'not', 'game', 'compact', 'feel', 'look', 'awesom', 'not', 'seem', 'support', 'skype', 'tend', 'crash', 'time', 'nas', 'heavi', 'websit', 'not', 'play', 'youtub', 'speaker', 'not', 'loud', 'outsid', 'fair', 'not', 'give', 'notif', 'sound', 'im', 'app', 'facebook', 'sap', 'feel', 'bit', 'heavi', 'not', 'much', 'app', 'support', 'anymor'], ['lo', 'compr', 'por', 'que', 'convencio', 'ahora', 'bajo', 'dia', 'despu', 'de', 'paso', 'el', 'telefono', 'se', 'resetea', 'cada', 'rato', 'nokia', 'tien', 'garantia', 'mundial'], ['probabl', 'best', 'phone', 'i', 'recent', 'year', 'similar', 'design', 'older', 'sidekick', 'phone', 'specif', 'sidekick', 'ii', 'phone', 'complet', 'differ', 'level', 'come', 'build', 'qualiti', 'mechan', 'built', 'like', 'tank', 'not', 'scratch', 'easi', 'would', 'still', 'use', 'phone', 'function', 'like', 'ovi', 'map', 'document', 'file', 'manag', 'still', 'far', 'superior', 'anyth', 'buy', 'android', 'appl', 'blackberri', 'thing', 'close', 'busi', 'file', 'manag', 'downsid', 'rather', 'slow', 'respons', 'tri', 'multi', 'task', 'work', 'rather', 'well', 'ram', 'freed', 'not', 'ton', 'stuff', 'overload', 'cach', 'basic', 'flaw', 'rather', 'small', 'size', 'could', 'upgrad', 'someth', 'larger', 'phone', 'would', 'potenti', 'much', 'faster', 'price', 'recommend', 'anyon', 'look', 'good', 'reliabl', 'busi', 'phone', 'look', 'social', 'media', 'fanci', 'app', 'über', 'resolut', 'look', 'elsewher', 'phone', 'still', 'top', 'contend', 'basic', 'profession', 'work', 'perform'], ['nokia', 'probabl', 'beauti', 'design', 'phone', 'ever', 'everyth', 'physic', 'appear', 'simpli', 'ooz', 'qualiti', 'class', 'smooth', 'line', 'curv', 'gorilla', 'glass', 'display', 'full', 'qwerti', 'keyboard', 'hide', 'beauti', 'bright', 'amol', 'display', 'reveal', 'push', 'display', 'use', 'view', 'angl', 'display', 'move', 'posit', 'eleg', 'smooth', 'not', 'stiff', 'clunki', 'way', 'phone', 'might', 'clear', 'black', 'display', 'technolog', 'nokia', 'built', 'screen', 'offer', 'realli', 'deep', 'black', 'vivid', 'bright', 'color', 'one', 'easili', 'use', 'bright', 'sunlight', 'whole', 'devic', 'realli', 'thing', 'beauti', 'fulli', 'appreci', 'much', 'effort', 'nokia', 'design', 'engin', 'put', 'come', 'camera', 'capabl', 'shoot', 'hd', 'video', 'although', 'edof', 'extend', 'depth', 'field', 'camera', 'not', 'unfortun', 'allow', 'good', 'close', 'photo', 'macro', 'high', 'qualiti', 'photo', 'especi', 'outdoor', 'definit', 'good', 'photo', 'video', 'editor', 'connect', 'includ', 'hdmi', 'adaptor', 'hdmi', 'cabl', 'hd', 'tv', 'watch', 'video', 'anyth', 'els', 'tv', 'memori', 'connect', 'includ', 'usb', 'adaptor', 'usb', 'stick', 'transfer', 'file', 'usb', 'drive', 'realli', 'use', 'option', 'allow', 'store', 'huge', 'file', 'movi', 'long', 'train', 'ride', 'outsid', 'phone', 'keep', 'quick', 'snappi', 'come', 'storag', 'may', 'not', 'sound', 'enorm', 'song', 'load', 'itun', 'via', 'mac', 'season', 'enthusiasm', 'histori', 'channel', 'presid', 'around', 'dozen', 'photo', 'not', 'transfer', 'mac', 'yet', 'still', 'free', 'i', 'not', 'concern', 'not', 'slot', 'microsd', 'card', 'would', 'not', 'use', 'space', 'realli', 'order', 'whole', 'season', 'tv', 'show', 'episod', 'need', 'reduc', 'size', 'rememb', 'screen', 'lot', 'smaller', 'plasma', 'tv', 'file', 'size', 'origin', 'silli', 'get', 'free', 'softwar', 'transcod', 'movi', 'show', 'fit', 'devic', 'use', 'simpl', 'realli', 'common', 'key', 'perfect', 'shape', 'space', 'utter', 'pleasur', 'type', 'keyboard', 'yes', 'option', 'use', 'keyboard', 'swype', 'thing', 'download', 'free', 'go', 'thing', 'type', 'sms', 'email', 'document', 'etc', 'would', 'like', 'done', 'keyboard', 'easiest', 'would', 'silli', 'not', 'utilis', 'without', 'doubt', 'best', 'keyboard', 'i', 'ever', 'use', 'map', 'nokia', 'soon', 'ditch', 'ovi', 'brand', 'focus', 'nokia', 'nokia', 'seem', 'make', 'sens', 'map', 'softwar', 'excel', 'alway', 'newer', 'version', 'accur', 'easier', 'use', 'fantast', 'free', 'addit', 'capabl', 'voic', 'great', 'use', 'fact', 'download', 'use', 'map', 'navig', 'offlin', 'go', 'abroad', 'use', 'map', 'without', 'use', 'data', 'free', 'not', 'find', 'mani', 'devic', 'find', 'way', 'either', 'foot', 'car', 'absolut', 'pleasur', 'use', 'nokia', 'map', 'brilliant', 'piec', 'box', 'get', 'quickoffic', 'superb', 'offic', 'program', 'allow', 'creat', 'edit', 'document', 'word', 'format', 'fact', 'review', 'type', 'quickoffic', 'doc', 'copi', 'past', 'amazon', 'review', 'section', 'web', 'allow', 'versatil', 'document', 'creation', 'similar', 'way', 'desktop', 'would', 'app', 'ovi', 'store', 'offer', 'app', 'paid', 'free', 'i', 'awar', 'not', 'quit', 'app', 'store', 'realli', 'everyth', 'need', 'game', 'use', 'util', 'grow', 'time', 'cours', 'nobodi', 'want', 'download', 'million', 'app', 'matter', 'nobodi', 'much', 'memori', 'phone', 'pick', 'chose', 'one', 'realli', 'go', 'use', 'highlight', 'angri', 'bird', 'rio', 'kayak', 'fmobi', 'facebook', 'app', 'shazam', 'skype', 'youtub', 'download', 'opera', 'mobil', 'nokia', 'movi', 'trailer', 'angri', 'bird', 'not', 'free', 'also', 'visit', 'nokia', 'beta', 'lab', 'tri', 'beta', 'softwar', 'nokia', 'drop', 'live', 'view', 'awesom', 'sleep', 'screen', 'googl', 'look', 'good', 'stuff', 'go', 'background', 'nokia', 'os', 'much', 'said', 'symbian', 'usual', 'direct', 'comparison', 'android', 'io', 'perfect', 'phone', 'softwar', 'therefor', 'still', 'get', 'star', 'problem', 'symbian', 'one', 'person', 'tast', 'prefer', 'everyth', 'need', 'zip', 'menu', 'system', 'pleasant', 'eye', 'seem', 'make', 'sens', 'abil', 'could', 'snappier', 'work', 'job', 'need', 'call', 'qualiti', 'outstand', 'email', 'messag', 'breez', 'menu', 'system', 'bit', 'outdat', 'still', 'access', 'phone', 'allow', 'mani', 'custom', 'option', 'wallpap', 'rington', 'use', 'realli', 'annoy', 'aspect', 'calendar', 'not', 'address', 'upcom', 'updat', 'call', 'symbian', 'anna', 'updat', 'near', 'futur', 'symbian', 'bell', 'seem', 'offer', 'even', 'way', 'ui', 'overhaul', 'much', 'great', 'benefit', 'owner', 'futur', 'look', 'good', 'extrem', 'pleas', 'purchas', 'nokia', 'everyth', 'need', 'phone', 'design', 'eleg', 'practic', 'phone', 'get', 'star', 'shortcom', 'address', 'upcom', 'updat', 'mobil', 'phone', 'move', 'away', 'symbian', 'focus', 'smartphon', 'effort', 'window', 'phone', 'not', 'problem', 'realist', 'i', 'readi', 'new', 'phone', 'month', 'anyway', 'time', 'nokia', 'window', 'phone', 'much', 'part', 'mobil', 'landscap', 'bring', 'lookalik', 'pack', 'window', 'i', 'would', 'think', 'next', 'year', 'later', 'right', 'i', 'extrem', 'happi', 'nokia', 'know', 'fulli', 'support', 'least', 'next', 'year', 'would', 'high', 'recommend', 'anyon', 'not', 'follow', 'pack', 'choic', 'sheep', 'fit', 'friend', 'get', 'someth', 'differ', 'unlock', 'reliabl', 'full', 'capabl', 'wrap', 'pure', 'perfect', 'design'], ['wors', 'phone', 'ever', 'head'], ['bought', 'phone', 'week', 'ago', 'tri', 'find', 'deal', 'black', 'friday', 'none', 'see', 'nokia', 'actual', 'expect', 'mayb', 'could', 'gotten', 'lucki', 'anyway', 'bought', 'phone', 'lot', 'cheaper', 'price', 'right', 'mom', 'told', 'sell', 'make', 'good', 'profit', 'would', 'good', 'prosgreat', 'system', 'quick', 'home', 'screen', 'customiz', 'million', 'way', 'improv', 'system', 'say', 'score', 'actual', 'mani', 'app', 'avail', 'phone', 'peopl', 'use', 'iphon', 'android', 'probabl', 'feel', 'extrem', 'low', 'amount', 'app', 'want', 'mani', 'useless', 'app', 'anyway', 'angri', 'bird', 'need', 'speed', 'shift', 'gt', 'race', 'motor', 'academi', 'game', 'good', 'asphalt', 'good', 'not', 'think', 'processor', 'fast', 'enough', 'game', 'lag', 'bit', 'phone', 'app', 'skype', 'whatsapp', 'nimbuzz', 'good', 'one', 'avail', 'symbian', 'uncertain', 'app', 'go', 'ovi', 'store', 'select', 'nokia', 'thing', 'app', 'would', 'like', 'add', 'download', 'sign', 'onlin', 'not', 'pay', 'good', 'app', 'get', 'free', 'would', 'not', 'jailbreak', 'phone', 'danger', 'lose', 'content', 'score', 'screen', 'major', 'plus', 'point', 'amol', 'touch', 'screen', 'respons', 'almost', 'glare', 'compar', 'phone', 'great', 'vibrat', 'feedback', 'well', 'score', 'major', 'plus', 'point', 'beauti', 'made', 'work', 'well', 'probabl', 'much', 'better', 'system', 'buy', 'garmin', 'compani', 'anoth', 'thing', 'nokia', 'own', 'satellit', 'system', 'map', 'free', 'forev', 'also', 'download', 'map', 'countri', 'world', 'would', 'like', 'add', 'sometim', 'take', 'second', 'start', 'not', 'get', 'worri', 'work', 'though', 'work', 'great', 'got', 'atlanta', 'saint', 'loui', 'well', 'score', 'keyboard', 'anoth', 'major', 'plus', 'point', 'great', 'good', 'feedback', 'good', 'open', 'action', 'take', 'bit', 'get', 'use', 'key', 'somehow', 'place', 'akward', 'mayb', 'four', 'row', 'instead', 'three', 'score', 'aluminum', 'bodi', 'anoth', 'plus', 'seem', 'sturdi', 'screen', 'made', 'gorilla', 'glass', 'feel', 'indestruct', 'well', 'bodi', 'sure', 'serious', 'not', 'found', 'one', 'phone', 'freez', 'sometim', 'second', 'leav', 'alon', 'come', 'back', 'normal', 'happen', 'frequent', 'use', 'app', 'also', 'happen', 'download', 'mani', 'app', 'not', 'big', 'issu', 'not', 'drive', 'buy', 'phone', 'quit', 'worth', 'thing', 'not', 'realli', 'test', 'well', 'camera', 'notic', 'camera', 'flash', 'way', 'bright', 'plenti', 'light', 'flash', 'way', 'much', 'sort', 'ruin', 'pictur', 'make', 'brown', 'skin', 'look', 'pale', 'bit', 'weird', 'turn', 'flash', 'pictur', 'come', 'quit', 'overal', 'ten', 'ten', 'phone', 'work', 'well', 'good', 'app', 'select', 'actual', 'good', 'system', 'worth', 'money', 'negat', 'review', 'page', 'peopl', 'receiv', 'european', 'version', 'not', 'problem', 'honest', 'friend', 'say', 'iphon', 'not', 'good', 'phone', 'not', 'well', 'made', 'customiz', 'camera', 'not', 'near', 'good', 'screen', 'not', 'good', 'either', 'like', 'stand', 'crowd', 'buy', 'phone'], ['great'], ['product', 'look', 'good', 'solid', 'alway', 'like', 'nokia', 'product', 'map', 'applic', 'amaz', 'bad', 'oper', 'system', 'not', 'renew', 'nokia', 'even', 'though', 'slower', 'window', 'oper', 'system'], ['solid', 'built', 'keyboard', 'work', 'nice', 'ideal', 'thing', 'text', 'camera', 'decent', 'make', 'necessari', 'adjust', 'rather', 'point', 'shoot', 'also', 'work', 'condit', 'right', 'access', 'corpor', 'network', 'plus', 'not', 'done', 'use', 'android', 'phone', 'hdmi', 'port', 'big', 'advantag', 'connect', 'multimedia', 'projector', 'hdmi', 'port', 'present', 'made', 'apart', 'also', 'use', 'connect', 'monitor', 'keyboard', 'connect', 'usb', 'port', 'turn', 'entir', 'system', 'comput', 'system', 'use', 'memori', 'stick', 'go', 'commend', 'one', 'attract', 'attent', 'sound', 'system', 'clear', 'suck', 'speaker', 'back', 'phone', 'one', 'reason', 'give', 'star', 'problem', 'get', 'phone', 'sometim', 'get', 'call', 'touch', 'screen', 'accept', 'call', 'noth', 'happen', 'call', 'lost', 'also', 'anoth', 'reason', 'star', 'sure', 'howev', 'futur', 'updat', 'solv', 'problem', 'phone', 'replac', 'old', 'trust', 'despit', 'problem', 'happi', 'overal', 'certain', 'not', 'toy', 'phone', 'real', 'phone', 'real', 'man', 'woman', 'case', 'may', 'not', 'plan', 'depend', 'lot', 'internet', 'access', 'work', 'home', 'hot', 'spot', 'use', 'skype', 'make', 'lot', 'foreign', 'call', 'money', 'save', 'sinc', 'skype', 'skype', 'free', 'alreadi', 'cover', 'cost', 'phone', 'browser', 'forget', 'one', 'came', 'phone', 'download', 'opera', 'mobil', 'much', 'faster', 'updat', 'phone', 'not', 'lose', 'call'], ['nokia', 'two', 'week', 'love', 'everi', 'moment', 'begin', 'could', 'not', 'access', 'ovi', 'store', 'set', 'email', 'email', 'nokia', 'featur', 'start', 'work', 'next', 'day', 'five', 'star', 'text', 'open', 'side', 'edg', 'secur', 'featur', 'overal', 'best', 'phone', 'i', 'date'], ['horribl', 'return', 'time', 'sever', 'year', 'ago', 'screen', 'froze', 'got', 'differ', 'nokia', 'unlock', 'phone'], ['good', 'phone', 'look', 'good', 'good', 'specif', 'bought', 'problem', 'recharg', 'batteri', 'seem', 'problem', 'usb', 'connect'], ['great', 'phone', 'bought', 'last', 'week', 'bought', 'phone', 'design', 'physic', 'keyboard', 'purchas', 'android', 'phone', 'not', 'find', 'phone', 'physic', 'keyboard', 'motorola', 'droid', 'ok', 'not', 'get', 'mani', 'posit', 'beauti', 'good', 'physic', 'keyboard', 'i', 'never', 'got', 'familiar', 'virtual', 'keyboard', 'physic', 'one', 'not', 'need', 'look', 'keyboard', 'amol', 'interest', 'thing', 'connect', 'mous', 'keyboard', 'razer', 'mous', 'keyboard', 'game', 'connect', 'via', 'usb', 'go', 'work', 'get', 'updat', 'symbian', 'anna', 'hope', 'sym', 'bell', 'publish', 'decemb', 'howev', 'us', 'user', 'may', 'last', 'one', 'receiv', 'updat', 'not', 'receiv', 'updat', 'anna', 'yet', 'user', 'countri', 'alreadi', 'got', 'i', 'sure', 'updat', 'anna', 'anoth', 'interest', 'thing', 'symbian', 'os', 'hack', 'sometim', 'phone', 'got', 'freez', 'realli', 'annoy', 'use', 'mani', 'app', 'time', 'not', 'play', 'game', 'open', 'anoth', 'app', 'time', 'phone', 'absolut', 'notic', 'us', 'user', 'not', 'get', 'updat', 'symbian', 'anna', 'yet', 'realli', 'want', 'get', 'symbian', 'anna', 'search', 'youtub', 'detail', 'instruct', 'i', 'wait', 'offici', 'ovi', 'store', 'not', 'cool', 'not', 'mani', 'app', 'play', 'find', 'app', 'hd', 'game', 'symbian', 'forum'], ['updat', 'octob', 'bell', 'updat', 'not', 'receiv', 'symbian', 'bell', 'refresh', 'updat', 'yet', 'updat', 'chang', 'lot', 'thing', 'phone', 'i', 'start', 'still', 'phone', 'immedi', 'stop', 'consid', 'purchas', 'phone', 'nokia', 'non', 'exist', 'support', 'address', 'bug', 'make', 'sms', 'messag', 'complet', 'unreli', 'see', 'bad', 'section', 'good', 'screen', 'use', 'direct', 'physic', 'keyboard', 'excel', 'tactil', 'feed', 'back', 'better', 'blackberri', 'map', 'useful', 'not', 'want', 'use', 'onlin', 'map', 'roam', 'data', 'roam', 'charg', 'expens', 'better', 'googl', 'map', 'provid', 'recalcul', 'direct', 'go', 'penta', 'band', 'work', 'gsm', 'carrier', 'not', 'work', 'cdma', 'ring', 'profil', 'detail', 'preset', 'profil', 'set', 'easili', 'switch', 'android', 'not', 'level', 'custom', 'abil', 'switch', 'notif', 'ring', 'tone', 'set', 'android', 'least', 'not', 'sound', 'qualiti', 'mic', 'good', 'make', 'sure', 'not', 'let', 'voic', 'carrier', 'like', 'wind', 'front', 'face', 'camera', 'see', 'con', 'recept', 'good', 'not', 'top', 'play', 'video', 'format', 'i', 'tri', 'not', 'play', 'mkv', 'avi', 'abl', 'easili', 'turn', 'wifi', 'bluetooth', 'etc', 'easili', 'via', 'pull', 'status', 'window', 'design', 'build', 'sturdi', 'premium', 'feel', 'look', 'hold', 'work', 'perfect', 'lg', 'bluetooth', 'headset', 'plantron', 'voyag', 'pro', 'plantron', 'voyag', 'nokia', 'sms', 'system', 'sometim', 'not', 'send', 'msgs', 'leav', 'outbox', 'not', 'attempt', 'resend', 'happen', 'half', 'two', 'third', 'sms', 'outbox', 'sms', 'manual', 'select', 'recipi', 'get', 'rare', 'occas', 'receiv', 'would', 'not', 'say', 'symbian', 'bell', 'android', 'offer', 'intuit', 'user', 'interfac', 'experi', 'tri', 'activ', 'bluetooth', 'phone', 'relat', 'function', 'phone', 'call', 'extrem', 'hard', 'not', 'imposs', 'phone', 'screen', 'paus', 'stop', 'call', 'also', 'dial', 'button', 'small', 'vertic', 'yet', 'least', 'screen', 'unus', 'serious', 'screen', 'nokia', 'mani', 'exampl', 'like', 'app', 'market', 'limit', 'prior', 'purchas', 'not', 'think', 'would', 'issu', 'use', 'major', 'issu', 'instanc', 'bank', 'applic', 'symbian', 'tunein', 'radio', 'app', 'not', 'avail', 'free', 'nokia', 'internet', 'radio', 'app', 'offlin', 'map', 'not', 'get', 'transit', 'bus', 'time', 'map', 'instal', 'googl', 'onlin', 'map', 'nokia', 'support', 'nokia', 'done', 'noth', 'solv', 'sever', 'major', 'bug', 'one', 'well', 'known', 'sinc', 'least', 'see', 'next', 'exampl', 'nokia', 'program', 'sync', 'ms', 'outlook', 'calendar', 'phone', 'push', 'appoint', 'one', 'day', 'forward', 'embarrass', 'say', 'happi', 'birthday', 'busi', 'colleagu', 'wrong', 'day', 'one', 'day', 'earlier', 'bug', 'known', 'sinc', 'least', 'listen', 'internet', 'radio', 'audio', 'scroll', 'screen', 'rotat', 'screen', 'start', 'anyth', 'batteri', 'life', 'quit', 'poor', 'must', 'charg', 'least', 'day', 'full', 'charg', 'listen', 'internet', 'radio', 'stereo', 'bluetooth', 'last', 'hour', 'talk', 'time', 'full', 'charg', 'hrs', 'use', 'bluetooth', 'batteri', 'last', 'signific', 'longer', 'instanc', 'internet', 'radio', 'bluetooth', 'last', 'gps', 'not', 'accur', 'fast', 'phone', 'not', 'confus', 'take', 'sever', 'minut', 'sometim', 'never', 'obtain', 'gps', 'locat', 'front', 'face', 'camera', 'poor', 'qualiti', 'even', 'vga', 'fring', 'ms', 'lync', 'program', 'avail', 'use', 'front', 'camera', 'chat', 'howev', 'use', 'fring', 'ms', 'lync', 'intern', 'corpor', 'client', 'ms', 'lync', 'server', 'skype', 'video', 'chat', 'not', 'carrier', 'wind', 'mobil', 'not', 'support', 'disabl', 'built', 'video', 'rear', 'camera', 'also', 'poor', 'qualiti', 'phone', 'camera', 'superior', 'photo', 'closer', 'six', 'ten', 'feet', 'almost', 'alway', 'focus', 'either', 'total', 'bluri', 'background', 'focus', 'not', 'subject', 'foreground', 'not', 'focus', 'photo', 'paper', 'size', 'write', 'embarass', 'photo', 'six', 'ten', 'feet', 'sometim', 'blurri', 'alway', 'not', 'suffici', 'detail', 'phone', 'use', 'softwar', 'base', 'focus', 'not', 'use', 'phone', 'wifi', 'hotspot', 'joiku', 'spot', 'app', 'turn', 'phone', 'wifi', 'hotspot', 'use', 'crack', 'encrypt', 'not', 'buy', 'despit', 'excel', 'build', 'qualiti', 'keyboard', 'good', 'screen', 'seen', 'direct', 'sunlight', 'would', 'not', 'get', 'product', 'drawback', 'user', 'interfac', 'experi', 'general', 'plus', 'nokia', 'non', 'exist', 'support', 'substanti', 'outweigh', 'benefit', 'phone'], ['easi', 'use', 'love'], ['work', 'well', 'nice', 'size', 'suppos', 'symbian', 'not', 'favorit', 'os', 'trade', 'bold'], ['not', 'sold', 'advertis', 'phone', 'not', 'unlock', 'sens', 'familiar', 'phone', 'contain', 'ridicul', 'amount', 'stuff', 'i', 'tmobil', 'stuff', 'embed', 'everywher', 'even', 'internet', 'connect', 'set', 'proxi', 'etc', 'get', 'error', 'almost', 'everyth', 'yes', 'way', 'reconfigur', 'go', 'camera', 'accept', 'good', 'light', 'close', 'proxim', 'flash', 'weak', 'total', 'dark', 'kill', 'phone', 'hole', 'headset', 'inabl', 'far', 'know', 'select', 'multipl', 'text', 'pictur', 'etc', 'delet', 'press', 'backspac', 'confirm', 'delet', 'annoy', 'procedur', 'regret', 'purchas', 'keep', 'phone', 'player', 'solid', 'phone', 'hardwar', 'look', 'admir', 'phone', 'worthi', 'star', 'bad', 'love', 'candybar', 'qwerti'], ['phone', 'brand', 'new', 'correct', 'one', 'year', 'get', 'worn', 'easi', 'navig', 'work', 'well', 'phone', 'text', 'import', 'not', 'easili', 'avail', 'att', 'new', 'one', 'old', 'one', 'die', 'refus', 'come', 'touch', 'screen', 'user'], ['buy', 'phone', 'realli', 'like', 'arriv', 'safe', 'good', 'conditionon', 'thing', 'slow', 'much', 'remain', 'hung', 'let', 'know'], ['look', 'get', 'phone', 'compat', 'att', 'servic', 'without', 'lock', 'anoth', 'contract', 'perhap', 'get', 'iphon', 'bug', 'work', 'saw', 'deal', 'simpl', 'enough', 'slid', 'sim', 'card', 'bingo', 'lowest', 'plan', 'att', 'worri', 'not', 'use', 'internet', 'capabl', 'actual', 'would', 'like', 'figur', 'disabl', 'still', 'work', 'ton', 'option', 'huge', 'menu', 'string', 'mani', 'use', 'obvious', 'made', 'work', 'lot', 'got', 'white', 'phone', 'stainless', 'white', 'keypad', 'white', 'edg', 'rest', 'stainless', 'steel', 'imag', 'make', 'look', 'white', 'think', 'steel', 'matter', 'made', 'happier', 'actual', 'nice', 'substanti', 'feel', 'thin', 'smaller', 'iphon', 'softwar', 'easi', 'make', 'transfer', 'data', 'pc', 'easi', 'onlin', 'updat', 'avail', 'abl', 'put', 'itun', 'music', 'life', 'standbi', 'amaz', 'small', 'hand', 'keypad', 'issu', 'could', 'see', 'issu', 'other', 'age', 'read', 'screen', 'requir', 'glass', 'would', 'recommend', 'need', 'unlock', 'phone', 'tri'], ['great', 'phone', 'wifi', 'gps', 'pdf', 'reader', 'word', 'excel', 'powerpoint', 'edit', 'app', 'among', 'other', 'also', 'download', 'ton', 'app', 'phone', 'relat', 'small', 'featur', 'offer', 'thin', 'although', 'key', 'problem', 'type'], ['nokia', 'unlock', 'cell', 'phone', 'mp', 'camera', 'media', 'player', 'gps', 'microsd', 'slot', 'version', 'warranti', 'gray', 'excel', 'celphon'], ['great', 'phone', 'got', 'phone', 'love', 'like', 'phone', 'use', 'gb', 'micro', 'sd', 'card', 'lot', 'room', 'stuff'], ['got', 'phone', 'time', 'basic', 'day', 'schedul', 'deliveri', 'date', 'tire', 'start', 'phone', 'would', 'not', 'turn', 'simpli', 'not', 'work', 'return'], ['pretti', 'convinc', 'nokia', 'phone', 'best', 'one', 'samsung', 'phone', 'lg', 'motorola', 'soni', 'ericsson', 'none', 'better', 'nokia', 'term', 'navig', 'usabl', 'model', 'extrem', 'easi', 'navig', 'keyboard', 'comfort', 'batteri', 'last', 'longer', 'thought', 'last', 'time', 'last', 'day', 'best', 'thing', 'like', 'model', 'custom', 'shortcut', 'phone', 'mai', 'screen', 'heavi', 'user', 'sms', 'text', 'editor', 'calcul', 'abl', 'put', 'featur', 'main', 'screen', 'icon', 'reach', 'one', 'singl', 'touch'], ['phone', 'lot', 'better', 'expect', 'not', 'mani', 'applic', 'blackberri', 'iphon', 'useless', 'anyway', 'great', 'around', 'smart', 'phone', 'everyth', 'smart', 'phone', 'casecon', 'metal', 'finger', 'print', 'magnet'], ['summari', 'nokia', 'high', 'end', 'communic', 'devic', 'not', 'confus', 'web', 'view', 'game', 'odd', 'reason', 'nokia', 'phone', 'never', 'popular', 'usa', 'comparison', 'europ', 'australasia', 'model', 'made', 'finland', 'unlock', 'non', 'carrier', 'specif', 'us', 'model', 'version', 'grps', 'edg', 'quad', 'band', 'mhz', 'use', 'mhz', 'high', 'speed', 'data', 'packet', 'access', 'hsdpa', 'aka', 'ask', 'basic', 'us', 'model', 'travel', 'oversea', 'not', 'expect', 'receiv', 'umt', 'nokia', 'best', 'call', 'high', 'end', 'busi', 'like', 'german', 'car', 'bell', 'whistl', 'smartphon', 'market', 'like', 'german', 'car', 'design', 'engin', 'engin', 'need', 'read', 'manual', 'play', 'around', 'button', 'work', 'featur', 'offer', 'nokia', 'use', 'symbian', 'competitor', 'android', 'iphon', 'oper', 'system', 'relat', 'larg', 'number', 'applic', 'run', 'phone', 'current', 'popular', 'applic', 'avail', 'phone', 'skype', 'facebook', 'youtub', 'etc', 'mani', 'app', 'direct', 'download', 'nokia', 'ovi', 'store', 'use', 'app', 'direct', 'phone', 'built', 'fm', 'radio', 'work', 'great', 'need', 'headset', 'plug', 'act', 'antenna', 'plug', 'use', 'loudspeak', 'audio', 'good', 'plenti', 'loud', 'use', 'audio', 'applic', 'phone', 'built', 'gps', 'receiv', 'free', 'ovi', 'map', 'global', 'need', 'larg', 'memori', 'card', 'tri', 'download', 'avail', 'nokai', 'download', 'gps', 'work', 'great', 'larg', 'voic', 'set', 'avail', 'also', 'daughter', 'love', 'english', 'surfer', 'dude', 'speaker', 'phone', 'infrar', 'bluetooth', 'wifi', 'connect', 'built', 'wifi', 'work', 'well', 'great', 'featur', 'home', 'road', 'web', 'surf', 'download', 'podcast', 'podcast', 'subscript', 'app', 'phone', 'internet', 'radio', 'applic', 'also', 'great', 'listen', 'mani', 'us', 'intent', 'base', 'internet', 'radio', 'station', 'like', 'bbc', 'person', 'prefer', 'keyboard', 'phone', 'rather', 'touch', 'screen', 'like', 'nokia', 'reason', 'odd', 'find', 'easier', 'type', 'keyboard', 'work', 'issu', 'blackberri', 'screen', 'size', 'blackberri', 'screen', 'nokia', 'opinion', 'could', 'work', 'better', 'use', 'real', 'estat', 'particular', 'font', 'icon', 'size', 'home', 'page', 'bad', 'eyesight', 'may', 'find', 'hard', 'use', 'without', 'magnifi', 'high', 'end', 'unlock', 'smartphon', 'less', 'not', 'lock', 'carrier', 'plan', 'unlock', 'phone', 'mani', 'phone', 'carrier', 'defeat', 'applic', 'phone', 'support', 'call', 'video', 'camera', 'call', 'forward', 'face', 'rear', 'face', 'camera', 'internet', 'call', 'nativ', 'applic', 'skype', 'fring', 'applic', 'galor', 'ovi', 'store', 'applic', 'gps', 'map', 'phone', 'batteri', 'life', 'great', 'user', 'phone', 'without', 'issu', 'listen', 'radio', 'web', 'surf', 'download', 'phone', 'almost', 'requir', 'degre', 'mani', 'menu', 'option', 'level', 'achiev', 'text', 'size', 'phone', 'icon', 'bar', 'phone', 'requir', 'phd', 'total', 'pc', 'base', 'suit', 'sync', 'applic', 'use', 'phone', 'day', 'prepaid', 'sim', 'card', 'setup', 'account', 'along', 'googl', 'voic', 'voic', 'mail', 'free', 'wifi', 'internet', 'call', 'life', 'good', 'odd', 'teenag', 'daughter', 'would', 'rather', 'great', 'communic', 'devic', 'mani', 'great', 'featur', 'includ', 'price', 'look', 'cheaper', 'phone', 'look', 'nokia', 'option', 'not', 'gps', 'receiv', 'forward', 'video', 'camera', 'extern', 'volum', 'control', 'tougher', 'phone', 'attribut', 'find', 'new', 'unlock', 'us', 'warranti', 'support'], ['case', 'could', 'not', 'close', 'well', 'get', 'fix', 'anoth', 'not', 'well', 'pack', 'i', 'not', 'happi', 'product', 'gift', 'someon', 'els', 'got', 'know', 'problem', 'later', 'embarrass'], ['phone', 'came', 'good', 'seal', 'batteri', 'wonder', 'like', 'shop', 'seller'], ['great', 'doubt', 'camera', 'great', 'interfac', 'easi', 'use', 'work', 'well', 'love', 'use', 'wifi', 'get', 'opera', 'mini', 'os', 'phone', 'see', 'access', 'real', 'web', 'page', 'main', 'problem', 'suck', 'hate', 'crappi', 'weak', 'servic', 'crap', 'avoid', 'like', 'plagu', 'cours', 'stuck', 'crap', 'phone', 'got', 'bunk', 'right', 'around', 'year', 'warrant', 'would', 'definit', 'suggest'], ['unlock', 'phone', 'work', 'great', 'not', 'discov', 'use', 'smart', 'phone', 'bill', 'not', 'gone', 'subscrib', 'unlimit', 'high', 'recommend', 'phone'], ['want', 'purchas', 'unlock', 'smartphon', 'sometim', 'could', 'not', 'pass', 'deal', 'saw', 'phone', 'far', 'happi', 'perform', 'phone', 'much', 'i', 'still', 'learn', 'mani', 'featur', 'main', 'use', 'wifi', 'function', 'access', 'internet', 'not', 'data', 'plan', 'setup', 'seem', 'work', 'great', 'alway', 'ask', 'access', 'point', 'use', 'connect', 'like', 'other', 'said', 'camera', 'not', 'great', 'much', 'much', 'better', 'camera', 'phone', 'wish', 'app', 'especi', 'free', 'app', 'similar', 'appl', 'app', 'store', 'avail', 'symbian', 'os', 'otherwis', 'great', 'phone', 'great', 'price'], ['read', 'review', 'alreadi', 'post', 'know', 'general', 'power', 'high', 'qualiti', 'phone', 'said', 'item', 'frustrat', 'amount', 'sophist', 'featur', 'phone', 'document', 'necessari', 'lack', 'writtena', 'mani', 'featur', 'sever', 'layer', 'deep', 'think', 'figur', 'general', 'oper', 'philosophi', 'softwar', 'anoth', 'applic', 'set', 'complet', 'support', 'prompt', 'obvious', 'paraphras', 'step', 'user', 'guid', 'respond', 'browser', 'step', 'palm', 'treo', 'navig', 'take', 'get', 'use', 'not', 'expect', 'like', 'network', 'fast', 'function', 'not', 'replac', 'pc', 'style', 'prepar', 'spend', 'time', 'tinker', 'set', 'look', 'odd', 'place', 'chang', 'valu', 'power', 'use', 'qualiti', 'item', 'pretti', 'much', 'put', 'full', 'use'], ['buy', 'phone', 'realli', 'like', 'arriv', 'safe', 'good', 'conditionon', 'thing', 'slow', 'much', 'remain', 'hung', 'let', 'know'], ['purchas', 'phone', 'copl', 'week', 'ago', 'ar', 'perfect', 'use', 'alway', 'want', 'switch', 'qwerti', 'keyboard', 'phine', 'think', 'made', 'best', 'choic', 'featur', 'work', 'well', 'includ', 'gps', 'design', 'much', 'solid', 'compar', 'tu', 'relev', 'tupe', 'nokia', 'e', 'would', 'recommend', 'phone', 'great', 'purchas', 'great', 'price'], ['got', 'phone', 'time', 'basic', 'day', 'schedul', 'deliveri', 'date', 'tire', 'start', 'phone', 'would', 'not', 'turn', 'simpli', 'not', 'work', 'return'], ['hardwar', 'perspect', 'phone', 'well', 'made', 'look', 'nice', 'solid', 'call', 'qualiti', 'better', 'phone', 'i', 'use', 'unfortun', 'oper', 'system', 'aw', 'everi', 'task', 'phone', 'ad', 'bluetooth', 'devic', 'store', 'email', 'media', 'card', 'ad', 'music', 'etc', 'begin', 'trip', 'owner', 'manual', 'end', 'frustrat', 'phone', 'month', 'trade', 'blackberri'], ['fantast', 'phone', 'slim', 'depth', 'phone', 'allow', 'keep', 'pocket', 'without', 'issu', 'phone', 'came', 'realli', 'nice', 'leather', 'slip', 'cover', 'not', 'get', 'scratch', 'pocket', 'either', 'lot', 'cool', 'app', 'phone', 'custom', 'need', 'eg', 'use', 'webcam', 'comput', 'either', 'wifi', 'bluetooth', 'custom', 'soft', 'key', 'four', 'app', 'key', 'prefer', 'work', 'gmail', 'gmap', 'gps', 'fast', 'download', 'free', 'map', 'area', 'nokia', 'free', 'not', 'get', 'turn', 'turn', 'rout', 'honest', 'i', 'get', 'phone', 'fan', 'websit', 'use', 'nokia', 'exchang', 'app', 'i', 'abl', 'sync', 'googl', 'calendar', 'contact', 'side', 'note', 'phone', 'one', 'samsung', 'also', 'run', 'symbian', 'not', 'ever', 'get', 'phone', 'anyon', 'nokia', 'implement', 'manufactur', 'alway', 'buggi'], ['look', 'stylish', 'ever', 'nokia', 'phone', 'not', 'difficult', 'get', 'use', 'nokia', 'recept', 'signal', 'good', 'use', 'soni', 'ericsson', 'headach', 'old', 'phone', 'could', 'not', 'find', 'signal', 'mayb', 'weak', 'nokia', 'problem', 'compar', 'iphon', 'found', 'main', 'differ', 'batteri', 'last', 'much', 'softwar', 'iphon', 'user', 'friend', 'camera', 'almost', 'consid', 'record', 'video', 'like', 'new', 'nokia', 'wish', 'could', 'synchron', 'easili', 'googl', 'calendar', 'not', 'abl'], ['buen', 'vendedor', 'lo', 'recomiendo', 'estoy', 'satisfecho', 'con', 'mi', 'articulo', 'el', 'articulo', 'es', 'como', 'el', 'descrito', 'por', 'el', 'vendedor', 'gracia'], ['excel', 'team', 'good', 'arriv', 'stipul', 'time'], ['first', 'smart', 'phone', 'ever', 'want', 'someth', 'wifi', 'i', 'not', 'plan', 'get', 'data', 'plan', 'like', 'brows', 'web', 'sometim', 'around', 'wifi', 'hot', 'spot', 'also', 'want', 'gps', 'offlin', 'map', 'huge', 'plus', 'given', 'want', 'avoid', 'data', 'plan', 'write', 'email', 'messag', 'general', 'not', 'prioriti', 'would', 'not', 'mind', 'nifti', 'featur', 'would', 'use', 'occasion', 'goe', 'offic', 'product', 'suit', 'although', 'want', 'realli', 'good', 'got', 'small', 'screen', 'made', 'internet', 'brows', 'experi', 'well', 'gps', 'experi', 'suboptim', 'not', 'say', 'connect', 'softwar', 'not', 'good', 'enough', 'use', 'simul', 'mous', 'pointer', 'small', 'screen', 'not', 'provid', 'calend', 'fine', 'realli', 'expect', 'someth', 'solid', 'intuit', 'better', 'qwerti', 'keyboard', 'made', 'type', 'thing', 'much', 'quicker', 'pretti', 'happi', 'final', 'verdict', 'unless', 'intend', 'use', 'phone', 'strict', 'email', 'busi', 'busi', 'bit', 'vagu', 'music', 'busi', 'busi', 'requir', 'lot', 'drive', 'web', 'brows', 'go', 'get', 'touchscreen', 'smart', 'phone', 'enjoy', 'big', 'screen', 'doubl', 'size', 'approx', 'much', 'better', 'web', 'brows', 'gps', 'experi', 'without', 'need', 'annoy', 'simul', 'mous', 'pointer', 'navig', 'phone', 'use', 'interfac', 'handl', 'better', 'touchscreen', 'buy', 'would', 'definit', 'go', 'not', 'cheaper', 'app', 'go', 'advic'], ['around', 'month', 'i', 'happi', 'batteri', 'life', 'still', 'amaz', 'talk', 'around', 'minut', 'daili', 'need', 'charg', 'week', 'drop', 'concret', 'floor', 'still', 'work', 'great', 'scratch', 'cours', 'not', 'care', 'hold', 'back', 'buy', 'anoth', 'nokia', 'phone', 'futur', 'android', 'appl', 'iphon', 'look', 'lot', 'promis', 'still', 'recommend', 'everyon', 'fantast', 'hardwar'], ['best', 'phone', 'nokia', 'today', 'solid', 'design', 'overal', 'metal', 'case', 'good', 'design', 'craftsmanship', 'first', 'ever', 'smartphon', 'pda', 'not', 'bulki', 'button', 'easi', 'press', 'even', 'huge', 'meati', 'camera', 'os', 'good', 'wish', 'window', 'mobil', 'best', 'free', 'advanc', 'call', 'manag', 'work', 'wonder', 'harass', 'dumb', 'caller'], ['design', 'well', 'taken', 'bit', 'get', 'use', 'use', 'motorola', 'like', 'clear', 'communitaion', 'audio', 'great', 'sensit', 'lightweight', 'thin', 'batteri', 'lifey', 'would', 'purchas', 'would', 'recomend'], ['realli', 'slick', 'fantast', 'well', 'design', 'person', 'want', 'qwerti', 'keyboard', 'compact', 'realli', 'rich', 'nice', 'feel', 'download', 'latest', 'fring', 'skype', 'free', 'softwar', 'like', 'almost', 'free', 'phone', 'whole', 'world', 'via', 'internet', 'fantast', 'deal'], ['research', 'nokia', 'cell', 'phone', 'year', 'ago', 'kept', 'spec', 'desktop', 'old', 'cell', 'phone', 'brows', 'amazon', 'product', 'one', 'day', 'dream', 'becam', 'realiti', 'price', 'phone', 'within', 'price', 'rang', 'seller', 'custom', 'servic', 'made', 'purchas', 'reward', 'experi', 'sever', 'question', 'purchas', 'phone', 'abl', 'assist', 'question', 'not', 'yet', 'use', 'mani', 'phone', 'featur', 'way', 'beyond', 'expect', 'howev', 'like', 'size', 'phone', 'perfect', 'fit', 'hand', 'also', 'like', 'batteri', 'life', 'phone', 'keep', 'charg', 'longer', 'day', 'nokia', 'cell', 'phone', 'pleas', 'purchas', 'would', 'definit', 'recommend', 'product', 'anyon', 'great', 'price', 'great', 'buy', 'special', 'thank', 'seller'], ['recent', 'bought', 'came', 'prompt', 'great', 'condit', 'find', 'key', 'quit', 'close', 'togeth', 'find', 'downfal', 'keyboard', 'conveni', 'text', 'even', 'not', 'data', 'packag', 'connect', 'open', 'wireless', 'network', 'made', 'easi', 'phone', 'not', 'download', 'applic', 'yet', 'batteri', 'life', 'excel', 'volum', 'also', 'good', 'bought', 'memori', 'card', 'process', 'download', 'song', 'phone', 'media', 'player', 'configur', 'well', 'user', 'not', 'buy', 'phone', 'camera'], ['look', 'smart', 'phone', 'high', 'function', 'flexibl', 'product', 'rather', 'entertain', 'suppos', 'want', 'devic', 'could', 'want', 'way', 'not', 'much', 'access', 'thing', 'would', 'not', 'realli', 'want', 'look', 'around', 'got', 'time', 'spend', 'custom', 'indispens', 'becom', 'week', 'also', 'larg', 'onlin', 'nokia', 'symbian', 'communiti', 'help', 'find', 'lot', 'good', 'app', 'highlight', 'import', 'recommend', 'eye', 'call', 'app', 'sms', 'preview', 'app', 'nokia', 'messag', 'client', 'use', 'free', 'trial', 'moment', 'vlingo', 'send', 'text', 'messag', 'speak', 'phone', 'spend', 'time', 'creat', 'shortcut', 'custom', 'button', 'use', 'search', 'function', 'allow', 'search', 'everyth', 'googl', 'sms', 'outbox'], ['nokia', 'phone', 'function', 'easi', 'use', 'happi', 'purchas', 'would', 'recommend', 'everyon', 'interest', 'model', 'thank'], ['use', 'year', 'still', 'work', 'good', 'even', 'drop', 'mani', 'time'], ['phone', 'cool', 'howev', 'seem', 'caller', 'id', 'not', 'work', 'not', 'show', 'call'], ['one', 'best', 'phone', 'sip', 'client', 'work', 'work', 'not', 'use', 'gsm', 'servic', 'got', 'account', 'help', 'configur', 'nokia', 'make', 'call', 'voip', 'instead', 'gsm'], ['brought', 'last', 'month', 'broke', 'document', 'return'], ['bought', 'phone', 'replac', 'thought', 'would', 'miss', 'not', 'felt', 'like', 'far', 'os', 'pretti', 'stabl', 'think', 'reboot', 'sinc', 'bought', 'ago', 'batteri', 'life', 'phone', 'complex', 'need', 'charg', 'everi', 'day', 'even', 'wifi', 'gps', 'hard', 'believ', 'true', 'thing', 'issu', 'mail', 'exchang', 'softwar', 'give', 'not', 'see', 'subfold', 'joke', 'hate', 'use', 'often', 'state', 'comment', 'iphon', 'i', 'satifi', 'phone'], ['got', 'day', 'wonder', 'fastest', 'one', 'ever', 'samsung', 'motorola', 'nokia', 'realli', 'impress', 'fast', 'cell', 'work', 'applic', 'contact', 'qwerti', 'keyboard', 'work', 'despit', 'fear', 'buy', 'need', 'time', 'get', 'use', 'day', 'alreadi', 'feel', 'like', 'i', 'never', 'abl', 'get', 'close', 'keyboard', 'need', 'perfect', 'mass', 'memori', 'storag', 'slot', 'memori', 'card', 'new', 'intern', 'memori', 'hell', 'nokia', 'put', 'intern', 'memori', 'model', 'give', 'half', 'playlist', 'aac', 'avi', 'etc', 'migrat', 'brand', 'new', 'applic', 'use', 'gmail', 'configur', 'easi', 'year', 'old', 'niec', 'could', 'done', 'less', 'minut', 'everyth', 'work', 'receiv', 'second', 'sent', 'test', 'account', 'excit', 'messag', 'sms', 'easi', 'creat', 'manag', 'send', 'great', 'thing', 'like', 'much', 'excel', 'call', 'qualiti', 'even', 'volum', 'almost', 'lowest', 'notch', 'caller', 'perfect', 'gps', 'work', 'great', 'get', 'posit', 'fix', 'general', 'within', 'second', 'new', 'nokia', 'app', 'great', 'huge', 'evolut', 'compar', 'previous', 'keyboard', 'touchpad', 'keyboard', 'great', 'new', 'track', 'pad', 'navig', 'work', 'read', 'review', 'critic', 'honest', 'see', 'reason', 'mayb', 'differ', 'scroll', 'best', 'good', 'still', 'work', 'requir', 'adapt', 'first', 'time', 'get', 'use', 'updat', 'firmwar', 'updat', 'work', 'great', 'problem', 'everyth', 'work', 'keep', 'work', 'phone', 'worth', 'everi', 'penni', 'wonder'], ['ok', 'good', 'piec', 'grand', 'seller'], ['phone', 'well', 'made', 'nice', 'appear', 'style', 'email', 'littl', 'confus', 'setup', 'figur', 'littl', 'search', 'various', 'set', 'get', 'way', 'want', 'setup', 'sound', 'qualiti', 'good', 'weight', 'phone', 'littl', 'phone', 'own', 'oaki', 'everyth', 'seem', 'work', 'well', 'phone', 'problem', 'yet'], ['get', 'faulti', 'equip', 'not', 'chat', 'seller', 'solv'], ['yea', 'love', 'nokia', 'lumia'], ['not', 'buy', 'receiv', 'aw', 'imit', 'not', 'origin', 'nokia', 'product'], ['happi', 'item', 'hope', 'busi'], ['great', 'camera', 'real', 'smart', 'phone'], ['would', 'not', 'phone', 'gripe', 'camera', 'not', 'i', 'would', 'expect', 'mp', 'guess', 'limit', 'len', 'photo', 'good', 'full', 'zoom', 'not', 'clear', 'i', 'would', 'like', 'window', 'oper', 'system', 'beat', 'android', 'hand'], ['i', 'happi', 'phone', 'also', 'great', 'camera', 'nokia', 'nokia', 'need'], ['nokia', 'lumia', 'phone', 'pictur', 'avid', 'photograph', 'typic', 'reluct', 'carri', 'expens', 'dslr', 'wherev', 'go', 'not', 'hassl', 'set', 'good', 'limit', 'standard', 'dslrs', 'look', 'lumia', 'workaround', 'standard', 'quick', 'pic', 'go', 'duti', 'week', 'wholli', 'say', 'phone', 'met', 'exceed', 'phone', 'not', 'come', 'ship', 'latest', 'version', 'window', 'phone', 'download', 'updat', 'use', 'certain', 'handi', 'featur', 'abil', 'save', 'raw', 'must', 'pro', 'photograph', 'not', 'let', 'quibbl', 'dissuad', 'phone', 'beast', 'worth', 'purchas', 'especi', 'keen', 'photographi'], ['power', 'phone', 'big', 'chang', 'android', 'user'], ['good'], ['took', 'liter', 'busi', 'day', 'come', 'said', 'day', 'phone', 'awesom', 'thing', 'problem', 'came', 'weird', 'charger', 'plug', 'attach', 'adapt', 'thank', 'came', 'phone', 'well', 'technic', 'charger', 'plug', 'adapt', 'plug', 'outlet', 'hassl', 'phone', 'amaz'], ['first', 'came', 'scof', 'lame', 'look', 'camera', 'well', 'eat', 'word', 'combo', 'awesom', 'nokia', 'like', 'one', 'best', 'bunch', 'window', 'phone', 'format', 'not', 'bother', 'much', 'adult', 'not', 'realli', 'use', 'phone', 'game', 'internet', 'light', 'brows', 'navig', 'travel', 'well', 'photo', 'upload', 'judg', 'not', 'think', 'toad', 'handheld', 'night', 'middl', 'day', 'bogota', 'colombia'], ['bought', 'specif', 'camera', 'phenomen', 'pic', 'remark', 'much', 'better', 'fuji', 'digit', 'camera', 'video', 'flawless', 'sever', 'camera', 'app', 'help', 'burst', 'mode', 'choos', 'best', 'shot', 'well', 'other', 'artist', 'shot', 'camera', 'save', 'pic', 'two', 'way', 'megapixel', 'instant', 'upload', 'one', 'megapixel', 'zoom', 'shot', 'not', 'pixel', 'fade', 'look', 'see', 'believ', 'window', 'ipod', 'touch', 'android', 'tablet', 'fair', 'straight', 'forward', 'not', 'near', 'app', 'other', 'one', 'use', 'devic', 'cell', 'servic', 'use', 'consum', 'cellar', 'dollar', 'month', 'minut', 'know', 'not', 'lot', 'said', 'bought', 'camera', 'one', 'happi', 'camper', 'gave', 'star'], ['first', 'phone', 'not', 'come', 'poetic', 'case', 'screen', 'protector', 'i', 'deduct', 'star', 'poor', 'deliveri', 'not', 'put', 'someth', 'packag', 'clear', 'recent', 'came', 'lg', 'prior', 'get', 'phone', 'android', 'i', 'not', 'go', 'comment', 'like', 'lot', 'peopl', 'list', 'con', 'knew', 'exact', 'get', 'lot', 'app', 'window', 'market', 'still', 'beta', 'stage', 'overtim', 'window', 'get', 'app', 'market', 'absolut', 'love', 'os', 'fluid', 'phone', 'not', 'even', 'top', 'processor', 'competitor', 'instal', 'phone', 'even', 'phone', 'ui', 'neat', 'perform', 'great', 'build', 'qualiti', 'solid', 'need', 'speak', 'awesom', 'camera', 'everyon', 'know', 'sound', 'qualiti', 'great', 'window', 'head', 'right', 'direct', 'huge', 'batteri', 'life', 'not', 'bad', 'better', 'still', 'get', 'day', 'use', 'eas', 'display', 'might', 'bother', 'bare', 'tell', 'differ'], ['good', 'recommend', 'good', 'telephon', 'good', 'resourc', 'clear', 'screen', 'plus', 'camera', 'also', 'good', 'softwar', 'nokia'], ['awesom', 'phone', 'camera', 'good', 'came', 'camera', 'camera', 'grip', 'kind', 'big', 'look', 'awesom'], ['excel', 'condit', 'work', 'great', 'yes', 'met', 'expect', 'happi'], ['great', 'cell', 'profession', 'aplic'], ['good', 'item', 'thank'], ['not', 'say', 'camera', 'compar', 'dslr', 'definit', 'get', 'closer', 'smartphon', 'camera', 'outher', 'window', 'updat', 'denim', 'great', 'eleg', 'straightforward', 'one', 'desir', 'true', 'app', 'market', 'not', 'wide', 'android', 'far', 'buy', 'camera', 'grip', 'attach', 'order', 'worth', 'money'], ['realli', 'want', 'phone', 'camera', 'becom', 'keep', 'switch', 'reset', 'understand', 'softwar', 'problem', 'also', 'get', 'hot', 'charg', 'known', 'would', 'bought', 'anoth', 'phone', 'everyth', 'came', 'came', 'good', 'condit', 'otherwis'], ['one', 'best', 'phone', 'i', 'ever', 'own', 'love', 'window', 'love', 'phone', 'everyth', 'easi', 'use', 'wellbuilt', 'voic', 'recognit', 'best', 'i', 'ever', 'use'], ['broken', 'phone', 'seem', 'work', 'product', 'ship', 'lot', 'hardwar', 'problem', 'phone', 'keep', 'turn', 'automat', 'check', 'nokia', 'support', 'site', 'soft', 'hard', 'reset', 'not', 'even', 'work', 'phone', 'return', 'today', 'hope', 'compani', 'send', 'work', 'one'], ['excel', 'condit', 'work', 'great', 'yes', 'met', 'expect', 'happi'], ['great', 'camera', 'real', 'smart', 'phone'], ['order', 'white', 'receiv', 'black', 'program', 'chines', 'wow'], ['phone', 'mani', 'great', 'featur', 'impress', 'camera', 'free', 'window', 'updat', 'instal', 'cortana', 'great', 'phone', 'much', 'use', 'iphon', 'despit', 'peopl', 'bemoan', 'lack', 'specif', 'app', 'abl', 'find', 'app', 'want', 'phone', 'store', 'one', 'except', 'internet', 'explor', 'work', 'fine', 'access', 'function', 'via', 'web', 'also', 'found', 'batteri', 'life', 'except', 'last', 'hour', 'gps', 'navig', 'suck', 'batteri', 'like', 'unlik', 'surpris', 'model', 'not', 'induct', 'charg', 'not', 'like', 'case', 'phone', 'i', 'opt', 'plug', 'disappoint', 'model', 'window', 'phone', 'come', 'long', 'way', 'equal', 'better', 'phone', 'oper', 'system', 'love', 'use', 'xbox', 'one', 'smartglass', 'applic', 'cortana', 'actual', 'help', 'asid', 'standard', 'witti', 'respons', 'sinc', 'induct', 'charg', 'get', 'rate'], ['realli', 'like'], ['enjoy', 'window', 'eight', 'interfac', 'smooth', 'everyth', 'run', 'quick', 'lag', 'phone', 'att', 'unlock', 'sure', 'use', 'sim', 'card', 'current', 'use', 'straight', 'talk', 'got', 'straight', 'talk', 'starter', 'kit', 'use', 'att', 'sim', 'came', 'work', 'amaz', 'model', 'get', 'lte', 'easili', 'everyth', 'compat', 'work', 'smooth', 'camera', 'amaz', 'pictur', 'video', 'record', 'window', 'run', 'smooth', 'batteri', 'could', 'better', 'would', 'think', 'would', 'enough', 'think', 'window', 'phone', 'general', 'problem', 'batteri', 'life', 'think', 'os', 'power', 'hungri', 'oper', 'system', 'use', 'phone', 'heavili', 'drain', 'drain', 'quick', 'watch', 'show', 'last', 'hour', 'stream', 'via', 'wifi', 'youtub', 'hd', 'wireless', 'cellular', 'data', 'turn', 'well', 'went', 'skype', 'min', 'phone', 'went', 'applic', 'drain', 'batteri', 'tip', 'trick', 'conserv', 'batteri', 'time', 'tip', 'pretti', 'much', 'turn', 'everyth', 'make', 'phone', 'smart', 'phone', 'turn', 'phone', 'useless', 'phone', 'not', 'realli', 'drain', 'batteri', 'main', 'thing', 'camera', 'use', 'phone', 'take', 'pictur', 'use', 'megapixel', 'camera', 'not', 'seem', 'drain', 'batteri', 'much', 'come', 'buy', 'phone', 'one', 'main', 'thing', 'go', 'camera', 'not', 'use', 'flash', 'imagin', 'flash', 'drain', 'batteri', 'hump', 'camera', 'produc', 'back', 'realli', 'not', 'big', 'deal', 'set', 'solid', 'surfac', 'tri', 'type', 'use', 'hand', 'hold', 'stabil', 'devic', 'type', 'hump', 'add', 'tilt', 'devic', 'move', 'around', 'quiet', 'bit', 'type', 'buy', 'case', 'help', 'minim', 'window', 'still', 'not', 'came', 'model', 'us', 'still', 'work', 'real', 'shame', 'want', 'use', 'major', 'flaw', 'everyon', 'know', 'screen', 'notic', 'screen', 'black', 'background', 'dark', 'room', 'look', 'screen', 'display', 'dark', 'background', 'ex', 'look', 'glanc', 'screen', 'dark', 'room', 'notic', 'spot', 'imbed', 'behind', 'screen', 'sometim', 'see', 'look', 'like', 'scratch', 'someth', 'screen', 'see', 'condit', 'state', 'black', 'layout', 'usual', 'dim', 'dark', 'lit', 'room', 'look', 'glanc', 'screen', 'dark', 'room', 'first', 'phone', 'realli', 'realli', 'bad', 'bad', 'thought', 'gotten', 'damag', 'ship', 'replac', 'anoth', 'second', 'one', 'still', 'less', 'notic', 'littl', 'blemish', 'small', 'still', 'thought', 'problem', 'order', 'thrid', 'one', 'anoth', 'seller', 'guess', 'exact', 'thing', 'upon', 'research', 'found', 'manufactor', 'problem', 'amol', 'display', 'galaxi', 'problem', 'past', 'quot', 'window', 'phone', 'central', 'forum', 'googl', 'nokia', 'lumia', 'display', 'screen', 'artifact', 'also', 'googl', 'amold', 'mura', 'effect', 'typic', 'amol', 'display', 'display', 'dark', 'artifact', 'tend', 'visibl', 'manifest', 'form', 'blob', 'line', 'not', 'rememb', 'specif', 'relat', 'manufactur', 'limit', 'proper', 'align', 'various', 'layer', 'not', 'pixel', 'get', 'consist', 'voltag', 'appli', 'not', 'alway', 'make', 'full', 'contact', 'problem', 'evid', 'low', 'voltag', 'mode', 'henc', 'see', 'artifact', 'dark', 'compani', 'tri', 'improv', 'process', 'not', 'think', 'anyon', 'hit', 'consist', 'good', 'solut', 'yet', 'amol', 'still', 'numer', 'drawback', 'short', 'life', 'expect', 'risk', 'signific', 'least', 'end', 'user', 'still', 'not', 'see', 'use', 'much', 'smartphon', 'general', 'get', 'toss', 'within', 'year', 'two', 'anyway', 'current', 'phone', 'blotch', 'small', 'notic', 'look', 'close', 'condit', 'mention', 'may', 'not', 'realli', 'bother', 'everyon', 'amol', 'display', 'beauti', 'good', 'color', 'good', 'give', 'star', 'camera', 'take', 'great', 'pictur', 'video', 'window', 'fast', 'smooth', 'fluid', 'one', 'star', 'subpar', 'batteri', 'also', 'design', 'flaw', 'mura', 'effect', 'screen'], ['camera', 'great', 'work', 'beauti', 'nokia', 'photo', 'run', 'smooth', 'never', 'system', 'break', 'phone', 'realli', 'limit', 'littl', 'app', 'littl', 'could', 'work', 'better', 'usabl', 'intelig', 'system', 'heat', 'pretti', 'camera', 'grid', 'nice', 'save', 'batteri', 'save', 'great', 'pic', 'batteri', 'run', 'low', 'eventhough', 'make', 'phone', 'look', 'like', 'brick'], ['excel', 'want', 'camera', 'mobil', 'phone', 'result', 'camera', 'shoot', 'excel', 'perfect'], ['first', 'look', 'amaz', 'phone', 'fact', 'not', 'mani', 'problem', 'first', 'one', 'import', 'special', 'featur', 'camera', 'stop', 'work', 'small', 'drop', 'tabl', 'tri', 'open', 'camera', 'not', 'work', 'big', 'deal', 'camera', 'not', 'phone', 'problem', 'video', 'stream', 'show', 'messag', 'error', 'video', 'could', 'not', 'decod', 'wifi', 'hotspot', 'sever', 'problem', 'not', 'alway', 'get', 'good', 'connect', 'internet', 'devic'], ['awesom', 'phone', 'camara', 'amaz', 'work', 'perfect', 'mexico', 'telcel', 'whatsapp', 'also', 'avail', 'fantast'], ['item', 'came', 'seal', 'origin', 'packag', 'new', 'advertis', 'rememb', 'intern', 'version', 'not', 'work', 'lte', 'band', 'check', 'support', 'band', 'model', 'variant', 'compat', 'countri', 'lte', 'network', 'phone', 'black', 'spot', 'common', 'impercept', 'defect', 'amol', 'screen', 'excel', 'lumia', 'model', 'variant', 'spec', 'https', 'countri', 'lte', 'network', 'https'], ['great', 'product', 'thank'], ['would', 'not', 'phone', 'gripe', 'camera', 'not', 'i', 'would', 'expect', 'mp', 'guess', 'limit', 'len', 'photo', 'good', 'full', 'zoom', 'not', 'clear', 'i', 'would', 'like', 'window', 'oper', 'system', 'beat', 'android', 'hand'], ['within', 'month', 'buy', 'new', 'phone', 'stop', 'read', 'sim', 'card', 'unabl', 'use', 'anyth', 'camera', 'magic', 'also', 'warranti', 'nokia', 'guess', 'sit', 'shelf', 'till', 'mfg', 'warranti', 'expir', 'sell', 'amazon'], ['phone', 'amaz', 'howev', 'support', 'model', 'suppos', 'sold', 'europ', 'not', 'coverag', 'america', 'not', 'care', 'coverag', 'buy', 'deliveri', 'fast', 'perfect', 'howev', 'live', 'mexico', 'not', 'turn', 'back', 'devic', 'go', 'trough', 'custom'], ['faulti', 'product', 'realli', 'excit', 'use', 'phone', 'camera', 'sinc', 'pack', 'whop', 'even', 'though', 'sensor', 'size', 'import', 'unfortun', 'manual', 'camera', 'function', 'damag', 'white', 'balanc', 'function', 'blue', 'iso', 'function', 'damag', 'not', 'like', 'faulti', 'product', 'faulti'], ['ok'], ['wifi', 'bluetooth', 'connect', 'problem', 'overheat', 'restart', 'love', 'wp', 'system', 'nokia', 'time', 'made', 'realli', 'sick', 'not', 'konw', 'system', 'machin', 'version', 'return', 'afraid', 'tri'], ['great', 'phone', 'i', 'never', 'iphon', 'realli', 'not', 'compar', 'two', 'htc', 'sensat', 'piec', 'crap', 'went', 'long', 'without', 'phone', 'like', 'beyond', 'primari', 'reason', 'got', 'camera', 'i', 'would', 'read', 'wonder', 'review', 'regard', 'superl', 'photo', 'take', 'believ', 'not', 'disappoint', 'everyth', 'els', 'stellar', 'well', 'i', 'not', 'rich', 'spend', 'dollar', 'phone', 'somewhat', 'extravag', 'assur', 'worth', 'everi', 'penni'], ['power', 'phone', 'big', 'chang', 'android', 'user'], ['bought', 'march', 'touch', 'screen', 'not', 'work', 'anymor', 'receiv', 'phone', 'call', 'not', 'answer', 'anyth', 'happend', 'less', 'month', 'purchas', 'unbelievebl'], ['love', 'work', 'metro', 'pcs', 'yay'], ['fantist', 'camera', 'one', 'best', 'look', 'agre', 'small', 'enough', 'fit', 'pocket', 'big', 'enough', 'brows', 'web'], ['stun', 'camera'], ['combin', 'nokia', 'window', 'phone', 'symphoni', 'possibl', 'opon', 'could', 'perhap', 'iphon'], ['love', 'phone'], ['beauti', 'phone', 'best', 'smartphon', 'camera', 'avail', 'i', 'use', 'window', 'phone', 'year', 'not', 'glad', 'switch', 'os'], ['fantast', 'phone', 'love', 'everyth', 'batteri', 'life', 'could', 'bit', 'better', 'would', 'not', 'trade', 'amaz', 'camera', 'bad', 'could', 'not', 'find', 'yellow', 'one'], ['excel', 'condit', 'work', 'great', 'yes', 'met', 'expect', 'happi'], ['pleas', 'phone', 'arriv', 'coupl', 'day', 'run', 'w', 'cyan', 'updat', 'right', 'countri', 'variant', 'germani', 'also', 'came', 'european', 'charger', 'ad', 'adapt', 'us', 'suit', 'perfect', 'bought', 'phone', 'go', 'europ', 'sever', 'month', 'i', 'set', 'manual', 'paper', 'german', 'not', 'matter', 'manual', 'onlin', 'english', 'languag', 'paper', 'microsoft', 'warranti', 'seem', 'warranti', 'not', 'play', 'phone', 'yet', 'dozen', 'review', 'phone', 'onlin', 'review', 'particular', 'version', 'regret', 'want', 'white', 'phone', 'oh', 'well', 'case', 'anyway'], ['phablet', 'great', 'expect', 'camera', 'shot', 'clear', 'definit', 'promot', 'phablet'], ['fell', 'love', 'phone', 'broke', 'heart', 'two', 'week', 'becam', 'defect', 'return', 'replac', 'new', 'black', 'nokia'], ['sent', 'back', 'get', 'start', 'problem', 'download', 'app'], ['perfect'], ['regret'], ['work', 'perfect', 'amaz', 'experi', 'window', 'phone', 'must', 'buy', 'familiar', 'price', 'heavi', 'duti', 'phablet'], ['not', 'mobil', 'slow', 'random', 'reset'], ['love', 'nokia', 'lumia', 'upgrad', 'lumia', 'broke', 'screen', 'concern', 'phantom', 'letter', 'type', 'repetit', 'screen', 'touch', 'experi', 'believ', 'could', 'caus', 'case', 'tight', 'phone', 'stretch', 'jelli', 'type', 'not', 'realli', 'experienc', 'also', 'want', 'point', 'although', 'phone', 'use', 'believ', 'condit', 'either', 'good', 'good', 'phone', 'excel', 'condit', 'clean', 'shini', 'mark', 'back', 'real', 'visibl', 'scratch', 'pleas', 'nokia', 'lumia', 'gsm', 'unlock', 'lte', 'window', 'smartphon', 'red', 'intern', 'version', 'warranti'], ['screen', 'faulti', 'glitch', 'often', 'fortun', 'not', 'difficult', 'return'], ['far', 'phone', 'great', 'coupl', 'month', 'problem', 'batteri', 'life', 'pretti', 'great', 'compar', 'samsung', 'everyth', 'phone', 'actual', 'write', 'review', 'use', 'phone', 'not', 'regret', 'purchas', 'love', 'window', 'phone'], ['phone', 'awesom', 'nice', 'phone', 'use', 'common', 'app', 'avail', 'window'], ['excel', 'good'], ['alway', 'want', 'nokia', 'final', 'got', 'one', 'awesom', 'price', 'reput', 'seller', 'thought', 'buy', 'use', 'item', 'phone', 'look', 'brand', 'new', 'i', 'super', 'pleas', 'purchas'], ['phone', 'pizza', 'fast', 'jimmi', 'john', 'memori', 'gsm', 'support', 'pictur', 'qualiti', 'crisp', 'clear', 'mouth', 'eat', 'nokia'], ['hubbi', 'love', 'phone', 'could', 'not', 'give', 'app', 'good', 'googl', 'app'], ['everyth', 'phone', 'work', 'work', 'well', 'wife', 'want', 'bigger', 'phone', 'display', 'nice', 'camera', 'school', 'want', 'phone', 'would', 'take', 'good', 'pictur', 'nativ', 'gps', 'receiv', 'bought', 'unlock', 'onlin', 'littl', 'month', 'satisfi', 'purchas', 'take', 'great', 'pictur', 'big', 'beauti', 'display', 'actual', 'intern', 'gps', 'work', 'well', 'better', 'one', 'car', 'yes', 'intern', 'map', 'free', 'get', 'street', 'address', 'search', 'phone', 'line', 'without', 'use', 'cellular', 'data', 'also', 'like', 'way', 'synchron', 'calendar', 'pictur', 'comput', 'seamless', 'plug', 'usb', 'issu', 'one', 'day', 'read', 'soft', 'reset', 'onlin', 'minut', 'back', 'nokia', 'screen', 'like', 'noth', 'ever', 'happen', 'problem', 'never', 'not', 'like', 'avail', 'app', 'written', 'window', 'phone', 'howev', 'come', 'great', 'app', 'instal', 'like', 'free', 'ms', 'offic', 'well', 'photo', 'edit', 'great', 'calendar', 'app', 'appear', 'number', 'app', 'written', 'grow', 'long', 'continu', 'make', 'great', 'product', 'like', 'number', 'continu', 'grow'], ['phone', 'surpass', 'expect', 'speed', 'connect', 'batteri', 'life', 'superb', 'combin', 'big', 'realli', 'high', 'resolut', 'screen', 'far', 'best', 'phone', 'i', 'ever', 'own'], ['condit', 'phone', 'negat', 'point', 'support', 'instead', 'lte'], ['month', 'complaint', 'speaker', 'sound', 'suppos', 'phone', 'first', 'would', 'think', 'peopl', 'talk', 'bit', 'clear', 'bought', 'main', 'internet', 'work', 'fine', 'rest', 'phone', 'plus'], ['excit', 'see', 'product', 'arriv', 'origin', 'packag', 'seal', 'brand', 'new', 'factori', 'unlock', 'not', 'network', 'unlock'], ['love'], ['worth', 'everi', 'penni', 'order', 'friend', 'love'], ['great', 'work', 'well'], ['purchas', 'phone', 'got', 'told', 'cell', 'phone', 'provid', 'demo', 'phone', 'not', 'unlock'], ['good'], ['person', 'like', 'self', 'hand', 'sent', 'phone', 'ghana', 'countri', 'africa', 'far', 'not', 'told', 'anyth', 'yet', 'guess', 'work', 'fine', 'appropri', 'time', 'anyth', 'come', 'promis', 'let', 'guy', 'know', 'pleas', 'hang', 'anoth', 'thing', 'need', 'comment', 'know', 'usual', 'buy', 'new', 'phone', 'normal', 'come', 'plastic', 'form', 'screen', 'protector', 'particular', 'phone', 'noth', 'recommend', 'next', 'time', 'guy', 'find', 'way', 'cover', 'screen', 'would', 'scratch', 'while', 'tri', 'access', 'thank', 'realli', 'like', 'far'], ['awesom', 'phone', 'came', 'readi', 'go', 'pop', 'sim', 'card', 'ad', 'apn', 'set', 'not', 'problem', 'yet', 'hard', 'find', 'decent', 'case', 'i', 'phone', 'month', 'scratch', 'problem', 'much', 'reliabl', 'lumia', 'use', 'use'], ['excelent'], ['great'], ['got', 'fast', 'product', 'work', 'fine', 'thing', 'bug', 'bit', 'say', 'unlock', 'bring', 'logo', 'back', 'ith', 'shine', 'turn', 'prefect', 'product'], ['not', 'buy', 'phone', 'wast', 'money', 'howev', 'need', 'phone', 'realli', 'bad', 'batteri', 'capac', 'phone', 'not', 'run', 'app', 'perfect', 'phone', 'meni', 'layout', 'intuit', 'easi', 'use', 'still', 'microsoft', 'long', 'way', 'go', 'concern', 'phone', 'market'], ['first', 'great', 'starter'], ['best', 'smart', 'phone', 'price', 'slick', 'finish', 'pictur', 'qualiti', 'amaz', 'best', 'love', 'window', 'interfac', 'easi', 'brows', 'app'], ['exelent'], ['not', 'ever', 'get', 'vendor', 'bought', 'phone', 'display', 'issu'], ['excel', 'phone'], ['yes', 'yes', 'phone', 'met', 'expect', 'recent', 'gotten', 'window', 'comput', 'fell', 'right', 'phone', 'not', 'lot', 'larger', 'last', 'trac', 'phone', 'handl', 'adjust', 'got', 'case', 'stand', 'anoth', 'plus', 'far', 'complaint', 'good', 'camera', 'lot', 'app', 'alreadi', 'satisfi', 'next', 'thing', 'not', 'soon', 'oh', 'price', 'plus', 'also'], ['phone', 'worth', 'buy', 'like', 'product', 'use', 'last', 'month', 'not', 'complain', 'recommend', 'friend', 'buy', 'phone', 'look', 'android', 'rang', 'phone', 'much', 'better', 'phone'], ['phone', 'unlock', 'n', 'brand', 'new', 'state', 'glad', 'got'], ['phone', 'awesom', 'although', 'receiv', 'phone', 'box', 'tear', 'not', 'seal', 'sim', 'card', 'miss', 'phone', 'amazon', 'made', 'right', 'reimburs', 'sim', 'card', 'phone', 'great'], ['excel'], ['good', 'phone', 'i', 'happi', 'not', 'led', 'flash', 'camera', 'not', 'import'], ['phone', 'piec', 'worth', 'mayb', 'dollar', 'defiant', 'not', 'camera', 'suck', 'not', 'connect', 'wifi', 'network', 'ty', 'network', 'phone', 'call', 'constant', 'drop', 'never', 'kind', 'problem', 'phone'], ['good', 'buy', 'phone', 'work'], ['phone', 'lock', 'tri', 'anoth', 'carrier', 'not', 'work', 'call', 'unlock', 'refus'], ['good', 'phone', 'custom', 'said', 'like', 'lot', 'not', 'come', 'headset', 'camera', 'not', 'come', 'flash', 'good', 'phone', 'regardless'], ['pleas', 'call'], ['got', 'wife', 'sinc', 'familiar', 'love', 'receiv', 'today', 'costa', 'rica', 'thank', 'god', 'unlock', 'advertis'], ['great', 'phone', 'good', 'price', 'fast', 'shipment'], ['good'], ['work', 'well'], ['bought', 'phone', 'husband', 'week', 'want', 'sell', 'not', 'look', 'differ', 'android'], ['not', 'know', 'whether', 'phone', 'truli', 'unlock', 'not', 'anoth', 'provid', 'sim', 'tri', 'i', 'att', 'network', 'anyway', 'sim', 'good', 'go', 'like', 'window', 'platform', 'better', 'android', 'seem', 'stabl', 'organ', 'entri', 'level', 'phone', 'need', 'devic', 'point', 'life', 'gave', 'lot', 'flashi', 'hardwar', 'extra', 'softwar', 'extra', 'make', 'move', 'backward', 'regret', 'lack', 'app', 'allow', 'control', 'person', 'phone', 'use', 'model', 'not', 'support', 'automat', 'power', 'graviti', 'proxim', 'sensor', 'screen', 'not', 'support', 'doubl', 'tap', 'screen', 'wake', 'either', 'use', 'power', 'button', 'lot', 'newer', 'android', 'wish', 'window', 'nokia', 'would', 'updat', 'hardwar', 'control', 'offer', 'featur', 'otherwis', 'sturdi', 'lightweight', 'right', 'size', 'not', 'miss', 'not', 'led', 'flash', 'camera', 'take', 'decent', 'pix', 'without', 'one', 'find', 'cortana', 'littl', 'dens', 'time', 'get', 'along', 'okay', 'wish', 'nokia', 'would', 'put', 'voic', 'microphon', 'keyboard', 'independ', 'cortana', 'us', 'like', 'dictat', 'text', 'rather', 'type', 'bottom', 'line', 'real', 'nice', 'phone', 'not', 'great', 'one', 'not', 'email', 'social', 'media', 'play', 'action', 'game', 'basic', 'phone', 'inform', 'highway'], ['complain', 'work', 'good'], ['great', 'valu', 'money', 'bought', 'phone', 'use', 'europ', 'primarili', 'spain', 'person', 'busi', 'use', 'iphon', 'lock', 'need', 'unlock', 'phone', 'local', 'sim', 'card', 'phone', 'came', 'new', 'seal', 'box', 'att', 'gophon', 'arriv', 'madrid', 'bought', 'sim', 'card', 'airport', 'good', 'android', 'appl', 'phone', 'user', 'may', 'take', 'time', 'get', 'use', 'window', 'interfac', 'rate', 'base', 'princip', 'use', 'unlock', 'phone', 'intern', 'travel', 'serv', 'purpos', 'well'], ['nice', 'phone', 'easi', 'use', 'good', 'app'], ['good'], ['good', 'pho', 'good', 'price', 'requir', 'featur', 'touch', 'realli', 'great'], ['bought', 'mobil', 'spare', 'unlock', 'devic', 'use', 'foreign', 'sim', 'card', 'take', 'us', 'trip', 'abroad', 'fair', 'bit', 'travel', 'actual', 'realli', 'impress', 'not', 'expect', 'nice', 'mobil', 'price', 'paid', 'work', 'realli', 'well', 'fast', 'look', 'quit', 'good', 'side', 'made', 'plastic', 'even', 'not', 'bad', 'end', 'light', 'mobil', 'carri', 'around', 'overal', 'happi', 'purchas'], ['nice', 'phone', 'window', 'suck', 'howev'], ['great', 'easi', 'use', 'would', 'like', 'front', 'camera'], ['excel', 'product'], ['excelent'], ['phone', 'list', 'unlock', 'phone', 'sent', 'lock', 'call', 'instruct', 'packag', 'told', 'phone', 'regist', 'someon', 'not', 'author', 'unlock', 'phone', 'bought', 'phone', 'parent', 'travel', 'abroad', 'i', 'stuck', 'phone', 'not', 'not', 'usabl', 'abroad', 'also', 'not', 'usabl', 'thorough', 'disappoint', 'amazon', 'allow', 'fals', 'advertis'], ['good', 'phone', 'i', 'happi', 'not', 'led', 'flash', 'camera', 'not', 'import'], ['good', 'phone', 'fast', 'box', 'phone', 'mani', 'detail', 'see', 'like', 'use', 'phone', 'bad', 'impress'], ['got', 'wife', 'sinc', 'familiar', 'love', 'receiv', 'today', 'costa', 'rica', 'thank', 'god', 'unlock', 'advertis'], ['happi', 'phone', 'mani', 'servic', 'not', 'expect', 'phone', 'price', 'everi', 'day', 'learn', 'someth', 'new', 'negat', 'expect', 'less', 'recharg'], ['around', 'great', 'phone', 'came', 'fast', 'great', 'condit', 'nokia', 'phone', 'qualiti', 'brand'], ['run', 'storag', 'time', 'make', 'difficult', 'use', 'would', 'go', 'iphon', 'instead'], ['wife', 'love', 'new', 'smart', 'phone', 'work', 'like', 'dell', 'laptop', 'happi', 'hate', 'daughter', 'phone', 'phone', 'featur'], ['like'], [], ['great', 'valu', 'money'], ['awesom', 'phone', 'bought', 'less', 'buck', 'gorgeous', 'screen', 'everyth', 'would', 'got', 'star', 'front', 'camera', 'selfi'], ['phone', 'excel', 'not', 'come', 'sd', 'card', 'great', 'price', 'like', 'pay', 'half', 'bought', 'cell', 'compani'], ['great', 'product', 'good', 'valu'], ['bought', 'unlock', 'window', 'phone', 'son', 'trip', 'hong', 'kong', 'work', 'perfect', 'instal', 'local', 'sim', 'card', 'csl', 'bought', 'hong', 'kong', 'airport', 'upon', 'arriv', 'also', 'plan', 'use', 'sim', 'card', 'usa'], ['happi', 'phone', 'not', 'like', 'give', 'money', 'away', 'appl', 'excel', 'phone', 'need'], ['absolut', 'garbag', 'not', 'hold', 'network', 'connect', 'phone', 'not', 'call', 'receiv', 'text', 'take', 'minut', 'go', 'took', 'store', 'figur', 'luck'], ['except', 'fact', 'document', 'phone', 'set', 'korean', 'experi', 'far', 'superb', 'set', 'phone', 'languag', 'english', 'easi', 'document', 'line', 'not', 'problem', 'fact', 'abl', 'simpli', 'plug', 'bahamian', 'sim', 'card', 'begin', 'use', 'phone', 'great', 'visit', 'us', 'bahama', 'purchas', 'best', 'buy', 'chip', 'well', 'abl', 'use', 'second', 'slot', 'perfect', 'servic', 'right', 'away'], ['replac', 'phone', 'year', 'old', 'nokia', 'budget', 'phablet', 'great', 'improv', 'microsoft', 'brand', 'name', 'satisfi'], ['one', 'best', 'use'], ['price', 'right', 'arriv', 'new', 'promis', 'good', 'power', 'good', 'photo', 'noth', 'complain', 'contract', 'satisfi', 'work', 'great', 'straight', 'talk', 'sim'], ['consid', 'notic', 'price', 'gap', 'product', 'lumia', 'clear', 'superior', 'good', 'offer', 'phone', 'fast', 'beauti', 'exact', 'describ', 'vendor', 'particular', 'unit', 'unlock', 'phone', 'brought', 'singapor', 'come', 'electr', 'adapt'], ['son', 'threw', 'first', 'nokia', 'water', 'need', 'new', 'phone', 'fast', 'deliveri', 'fast', 'paid', 'two', 'day', 'came', 'one', 'seller', 'offer', 'compar', 'reason', 'price', 'phone', 'one', 'littl', 'differ', 'previous', 'i', 'issu', 'configur', 'work', 'onto', 'one', 'not', 'seller', 'nokia', 'os', 'big', 'complaint', 'os', 'not', 'support', 'custom', 'text', 'messag', 'tone', 'hope', 'updat', 'nokia', 'includ', 'abil'], ['phone', 'good', 'everyth', 'seller', 'said', 'person', 'think', 'phone', 'bit', 'complic', 'window', 'os', 'perform', 'phone', 'great'], ['phone', 'good', 'incomplet', 'term', 'aplic', 'use', 'work', 'android', 'difficult', 'manipul', 'window', 'softwar', 'batteri', 'last', 'short', 'hour', 'medium', 'use', 'not', 'useful', 'camera', 'qualiti', 'accept', 'not', 'great', 'phone', 'call', 'qualiti', 'construct', 'look', 'like', 'phone', 'nice', 'not', 'add', 'memori', 'want', 'music', 'photo', 'softwar', 'togeth', 'quit', 'money', 'go', 'nexus', 'shure'], ['quick', 'ship', 'high', 'qualiti', 'love', 'batteri', 'live', 'short'], ['got', 'want', 'came', 'sooner', 'expect'], ['phone', 'work', 'mani', 'locat', 'side', 'usa', 'softwar', 'updat', 'breez', 'not', 'miss', 'android', 'platform', 'anoth', 'great', 'nokia', 'phone', 'train', 'photograph', 'dslrs', 'phone', 'take', 'good', 'pictur', 'know', 'set', 'take', 'even', 'better', 'pictur'], ['far', 'good', 'phone', 'seem', 'far', 'less', 'glitchi', 'phone', 'i', 'past', 'complaint', 'front', 'camera', 'tend', 'get', 'fill', 'dust', 'need', 'better', 'seal'], ['not', 'put', 'hand', 'fire', 'seem', 'unit', 'not', 'origin', 'refurbish', 'return', 'two', 'unit', 'week'], ['phone', 'good', 'incomplet', 'term', 'aplic', 'use', 'work', 'android', 'difficult', 'manipul', 'window', 'softwar', 'batteri', 'last', 'short', 'hour', 'medium', 'use', 'not', 'useful', 'camera', 'qualiti', 'accept', 'not', 'great', 'phone', 'call', 'qualiti', 'construct', 'look', 'like', 'phone', 'nice', 'not', 'add', 'memori', 'want', 'music', 'photo', 'softwar', 'togeth', 'quit', 'money', 'go', 'nexus', 'shure'], ['love', 'expect', 'work', 'well', 'venezuela', 'movistar'], ['would', 'given', 'phone', 'much', 'higher', 'rate', 'not', 'function', 'got', 'phone', 'two', 'day', 'ago', 'tri', 'send', 'pictur', 'messag', 'sinc', 'yesterday', 'kept', 'get', 'error', 'messag', 'say', 'not', 'send', 'tri', 'went', 'local', 'store', 'get', 'problem', 'check', 'seem', 'problem', 'lie', 'hardwar', 'phone', 'not', 'network', 'i', 'go', 'contact', 'anoth', 'mobil', 'tech', 'third', 'parti', 'phone', 'store', 'get', 'check', 'still', 'not', 'find', 'solut', 'problem', 'i', 'return', 'phone'], ['great', 'phone', 'made', 'switch', 'android', 'far', 'love', 'could', 'googl', 'map', 'free', 'music', 'download', 'app', 'would', 'flawless'], ['still', 'figur', 'work', 'technic'], ['thrill', 'choic', 'glad', 'chose', 'purchas', 'phone', 'color', 'screen', 'resolut', 'vibrant', 'ton', 'great', 'free', 'applic', 'avail', 'flick', 'thumb', 'particulari', 'love', 'transfer', 'data', 'let', 'transfer', 'blackberri', 'contact', 'text', 'messag', 'use', 'blue', 'tooth', 'connect', 'love', 'cortana', 'pda', 'also', 'much', 'less', 'annoy', 'siri', 'nokia', 'lumia', 'window', 'phone', 'outstand', 'altern', 'iphon', 'galaxi', 'count', 'newest', 'loyal', 'custom'], ['good', 'batteri', 'not', 'goe', 'long'], ['good', 'pone', 'restart', 'day', 'posibl', 'problema', 'hardwar', 'ok', 'camera', 'great'], ['good', 'price', 'good', 'phone'], ['chip', 'price', 'good', 'pone'], ['phone', 'great', 'price', 'unlock', 'gsm', 'use', 'egypt', 'work', 'flawless', 'upgrad', 'win', 'dev', 'preview', 'work', 'great', 'slimmer', 'look', 'pic', 'thing', 'notic', 'start', 'capacit', 'button', 'glass', 'interior', 'littl', 'line', 'insid', 'made', 'think', 'unit', 'refurbrish', 'not', 'know', 'would', 'bought', 'new', 'mango', 'wireless', 'good', 'phone', 'love', 'offlin', 'map', 'drive', 'option', 'availbl', 'way', 'first', 'win', 'phone', 'ever', 'love'], ['excel', 'cell', 'phone', 'bought', 'replac', 'motorola', 'droid', 'suck', 'tire', 'android', 'os', 'window', 'comput', 'window', 'tablet', 'love', 'way', 'acer', 'iconia', 'window', 'phone', 'transfer', 'file', 'wireless', 'three', 'devic', 'window', 'avail', 'upgrad', 'phone', 'cortana', 'even', 'better', 'screen', 'look', 'great', 'phone', 'quick', 'respons', 'batteri', 'life', 'good', 'agre', 'anoth', 'review', 'even', 'though', 'not', 'mani', 'app', 'avail', 'also', 'found', 'one', 'need', 'work'], ['got', 'use', 'phone', 'bad', 'condit', 'disappoint'], ['wife', 'happi', 'phone', 'berri', 'fast', 'good', 'camara', 'space', 'lag', 'exel', 'unlock', 'berri', 'pleas'], ['describ', 'good', 'servic'], ['think', 'issu', 'word', 'phone', 'gsm', 'unlock', 'make', 'phone', 'call', 'receiv', 'text', 'messag', 'howev', 'hour', 'store', 'manag', 'discov', 'cdma', 'lock', 'verizon', 'one', 'ever', 'fulli', 'use', 'featur', 'exchang', 'phone', 'purchas', 'android'], ['best', 'bang', 'buck', 'current', 'dev', 'preview', 'work', 'excel'], ['sweet', 'deal', 'satisfi', 'although', 'ship', 'not', 'over', 'fast'], ['phone', 'great', 'first', 'work', 'well', 'like', 'notic', 'whenev', 'text', 'someon', 'keep', 'say', 'not', 'send', 'messag', 'tri', 'everyth', 'fix', 'not', 'want', 'send', 'text', 'messag', 'friend', 'batteri', 'life', 'not', 'run', 'long', 'anoth', 'problem', 'audio', 'put', 'speaker', 'mode', 'voic', 'person', 'line', 'sound', 'choppi', 'static', 'although', 'recept', 'decid', 'send', 'back', 'less', 'via', 'up'], ['great', 'littl', 'basic', 'simpl', 'window', 'base', 'phone', 'camera', 'qualiti', 'still', 'hold', 'compar', 'latest', 'iphon', 'would', 'recommend', 'anyon', 'look', 'window', 'base', 'phone', 'verizon', 'network', 'drawback', 'come', 'softwar', 'not', 'hardwar', 'window', 'nativ', 'os', 'simpli', 'lack', 'content', 'app', 'not', 'widespread', 'use', 'may', 'chang', 'futur', 'hardwar', 'outdat', 'not', 'need', 'certain', 'app', 'avail', 'io', 'would', 'kept', 'phone', 'sinc', 'choic', 'one', 'not', 'phone', 'wife', 'like', 'good', 'replac', 'lg', 'spectrum', 'iphon', 'arriv'], ['amaz', 'product', 'longer', 'sold', 'verizon', 'carrier', 'advanc', 'one', 'use', 'iphon', 'month', 'certain', 'lot', 'pros', 'part', 'nokia', 'window', 'phone', 'clutter', 'app', 'home', 'great', 'qualiti', 'speech', 'recognit', 'read', 'text', 'messag', 'good', 'batteri', 'life', 'navig', 'telenav', 'featur', 'great', 'compar', 'googl', 'appl', 'mapsamong', 'negat', 'side', 'think', 'app', 'contribut', 'communiti', 'small', 'mani', 'may', 'not', 'search', 'featur', 'avail', 'text', 'messag', 'big', 'audio', 'record', 'featur', 'not', 'need', 'download', 'use', 'android', 'year', 'iphon', 'month', 'get', 'good', 'feel', 'window', 'phone', 'nokia'], ['great', 'phone'], ['return', 'got', 'order', 'not', 'need', 'eas', 'return', 'unexpect', 'pleasant'], ['excel', 'product', 'satisfi', 'pleas', 'purchas'], ['excelent'], ['good', 'phone'], ['great', 'phone', 'price', 'complaint'], ['love'], ['work', 'flawless', 'replac', 'son', 'broken', 'cell', 'phone', 'switch', 'sim', 'card', 'simpl'], ['good'], ['phone', 'remak', 'order', 'new', 'get', 'lifetim', 'counter', 'jesus', 'charger', 'nokia', 'fit', 'inferior', 'charger', 'brand', 'product', 'name', 'oem', 'product', 'date', 'data', 'cabl', 'not', 'product', 'nokia', 'need', 'compens', 'order'], ['work', 'like', 'new', 'advertis'], ['everyth', 'great'], ['great', 'reason', 'size', 'smartphon', 'window', 'familiar', 'oper', 'system', 'sync', 'phone', 'exist', 'microsoft', 'account', 'handi', 'phone', 'access', 'internet', 'smooth', 'verizon', 'cellular', 'network', 'go', 'call', 'verizon', 'sim', 'card', 'instal', 'app', 'suffici', 'practic', 'i', 'not', 'game', 'not', 'say', 'whether', 'game', 'app', 'avail', 'instal', 'app', 'suffici', 'practic', 'purpos', 'nokia', 'citi', 'len', 'app', 'list', 'thing', 'area', 'nice', 'featur', 'camera', 'look', 'good', 'far', 'great', 'phone', 'accept', 'sd', 'card', 'addit', 'storag', 'remov', 'batteri', 'nice', 'also', 'one', 'complaint', 'far', 'calendar', 'system', 'not', 'option', 'enter', 'repeat', 'occurr', 'happen', 'everi', 'two', 'week', 'happen', 'specif', 'day', 'month', 'like', 'first', 'tuesday', 'oppos', 'date', 'option', 'would', 'nice', 'know'], ['item', 'wrong', 'color', 'not', 'work', 'end', 'use', 'part', 'tri', 'charg', 'two', 'day', 'sister', 'leav', 'countri', 'time', 'seller', 'got', 'back', 'late', 'return', 'could', 'not', 'leav', 'countri', 'without', 'phone', 'bought', 'son', 'broken', 'screen', 'phone', 'would', 'not', 'work', 'not', 'happi', 'product'], ['ok'], ['issu', 'resolv', 'verizon', 'abl', 'use', 'sim', 'card', 'prior', 'damag', 'phone', 'replac', 'would', 'prefer', 'product', 'descript', 'disclos', 'not', 'come', 'sim', 'card', 'need', 'oper', 'otherwis', 'phone', 'work', 'well', 'well', 'protect', 'case', 'order', 'separ'], ['verizon', 'window', 'phone', 'capabl', 'yet', 'quit', 'user', 'friend', 'possess', 'mani', 'featur', 'design', 'desir', 'function', 'without', 'accompani', 'complex', 'order', 'arriv', 'one', 'day', 'earlier', 'forecast', 'perfect', 'condit', 'secur', 'sim', 'card', 'verizon', 'phone', 'easili', 'activ', 'rate', 'order', 'overal', 'excel'], ['nice'], ['great', 'featur', 'slim', 'slick', 'fast', 'great', 'graphic', 'sound', 'great', 'one', 'dislik', 'locat', 'get', 'use', 'not', 'accid', 'turn', 'phone', 'otherwis', 'sofar', 'great', 'phone', 'window', 'base', 'not', 'like', 'android', 'much', 'easier', 'control', 'window', 'phone'], ['fantast', 'phone', 'got', 'good', 'deal', 'amazon'], ['defect', 'phone', 'not', 'buy'], ['pleas', 'purchas', 'window', 'phone', 'fan', 'seem', 'like', 'keep', 'bet', 'better', 'would', 'recommend', 'sundri'], ['great', 'mid', 'rang', 'price', 'phone', 'light', 'easi', 'use', 'set', 'work', 'box', 'minim', 'set'], ['not', 'unlock', 'phone', 'lock', 'phone', 'not', 'work', 'sim', 'gsm', 'carrier', 'not', 'describ'], ['recent', 'purchas', 'phone', 'seller', 'lock', 'ship', 'packag', 'doest', 'not', 'acceseri', 'associ', 'phone', 'except', 'charger', 'ie', 'not', 'headset', 'sim', 'eject', 'tool', 'manual', 'warranti', 'use', 'phone', 'advic', 'not', 'buy', 'item'], ['i', 'not', 'go', 'write', 'paragraph', 'phone', 'great', 'super', 'easi', 'use', 'fun', 'super', 'fast', 'love', 'internet', 'share', 'use', 'smart', 'tv'], ['phone', 'inde', 'fulli', 'unlock', 'brand', 'new', 'deliv', 'promis', 'pristin', 'condit', 'ran', 'new', 'window', 'updat', 'success', 'issu', 'also', 'sale', 'servic', 'provid', 'orderinst', 'usa', 'great', 'would', 'recommend', 'phone', 'store'], ['bought', 'phone', 'septemb', 'work', 'well', 'last', 'sunday', 'not', 'charger', 'phone', 'turn', 'got', 'home', 'start', 'turn', 'bad', 'luck', 'got', 'stuck', 'logo', 'done', 'lot', 'thing', 'reviv', 'not', 'work', 'asham', 'nokia'], ['almost', 'favorit', 'phone', 'nokia', 'even', 'cheap', 'one', 'usabl', 'hesit', 'give', 'use', 'come', 'appreci', 'durabl', 'natur', 'lumia', 'window', 'phone', 'app', 'need', 'great'], ['excel', 'product', 'i', 'venezuela', 'receiv', 'phone', 'expect', 'arriv', 'date', 'excel', 'condit', 'cell', 'realli', 'unlock', 'wonder', 'nokia', 'app', 'alreadi', 'instal', 'best', 'phone', 'i', 'ever', 'thankss'], ['nunca', 'recibi'], ['excelent', 'producto'], ['excelent'], ['purchas', 'tablet', 'distributor', 'realli', 'disappoint', 'phone', 'defect', 'mike', 'speaker', 'not', 'work', 'batteri', 'life', 'extrem', 'low', 'phone', 'reset'], ['advertis', 'brand', 'new', 'factori', 'unlock', 'phone', 'came', 'scratch', 'logo'], ['great', 'phone', 'great', 'featur'], ['excelent'], ['excelent'], ['good', 'phone', 'arriv', 'time', 'factori', 'unlock', 'high', 'qualiti'], ['phone', 'get', 'hang', 'reason', 'restart', 'reus', 'headphon', 'sound', 'get', 'uncontrol', 'loud', 'instal', 'app', 'could', 'reset', 'phone', 'almost', 'limit', 'app'], ['excel', 'product'], ['todo', 'lo', 'que', 'esperaba', 'del', 'producto', 'lo', 'recibi'], ['bought', 'new', 'cell', 'phone', 'amazon', 'websit', 'joycel', 'open', 'box', 'notic', 'headphon', 'data', 'cabl', 'miss', 'box', 'simpli', 'carton', 'box', 'not', 'look', 'geniun', 'handset', 'scratch', 'back', 'near', 'camera', 'phone', 'wrote', 'amazon', 'help', 'mean', 'could', 'thank', 'amazon'], ['excelent'], ['phone', 'overh', 'ad', 'charg', 'often', 'like', 'everi', 'hour', 'would', 'appreci', 'someon', 'tell', 'situat', 'rectifi', 'return', 'replac', 'pleas', 'advis', 'soonest'], ['switch', 'lumia', 'new', 'logo', 'nokia', 'not', 'wait', 'great', 'os', 'even', 'dare', 'said', 'way', 'much', 'better', 'io', 'android', 'not', 'friend', 'easi', 'use', 'also', 'eleg', 'modern', 'present', 'devic', 'come', 'version', 'like', 'use', 'new', 'window', 'phone', 'not', 'worri', 'hardwar', 'amaz', 'devic', 'rang', 'price', 'would', 'not', 'find', 'anyth', 'use', 'costa', 'rica', 'kolbi', 'oper', 'work', 'like', 'charm', 'recomend'], ['phone', 'bought', 'new', 'last', 'month', 'believ', 'use', 'realli', 'disappoint'], ['excelet', 'rpoducto'], ['app', 'phone', 'not', 'work', 'big', 'part', 'phone', 'not', 'work', 'angri'], ['lot', 'app', 'not', 'work', 'phone', 'slow', 'respond', 'could', 'not', 'screen', 'shot'], ['good'], ['order', 'place', 'octob', 'order', 'detail', 'invoiceord', 'order', 'nokia', 'lumia', 'wife', 'want', 'start', 'phone', 'surpris', 'phone', 'not', 'get', 'charg', 'look', 'like', 'defect', 'devic', 'return', 'date', 'also', 'complet', 'somebodi'], ['phone', 'nice', 'mine', 'requir', 'send', 'back', 'nokia', 'could', 'not', 'repair', 'receiv', 'new', 'phone', 'think', 'problem', 'wt', 'batteri', 'also', 'forc', 'buy', 'new', 'sim', 'card', 'straight', 'talk', 'new', 'serial', 'althought', 'phone', 'suppli', 'use', 'old', 'sim', 'card', 'thank', 'straight', 'talk'], ['ever', 'sinc', 'got', 'phone', 'i', 'use', 'make', 'call', 'not', 'internet', 'make', 'call', 'get', 'onlin', 'point', 'seller', 'mention', 'issu', 'phone', 'not', 'receiv', 'pictur', 'via', 'text', 'messag', 'pass', 'first', 'day', 'seller', 'not', 'anyth', 'make', 'right', 'not', 'even', 'smallest', 'refund', 'not', 'cheap', 'cost', 'make', 'sure', 'everyon', 'know', 'not', 'buy', 'seller', 'pride', 'swindl', 'custom'], ['iphon', 'user', 'great', 'surpris', 'window', 'phone', 'interfac', 'easi', 'navig', 'clear', 'icon', 'wife', 'look', 'cellphon', 'replac', 'bought', 'smartphon', 'not', 'cost', 'also', 'came', 'factori', 'unlock', 'readi', 'intern', 'use', 'plus', 'big', 'clear', 'icon', 'wife', 'visual', 'impair', 'initi', 'bit', 'concern', 'useabl', 'window', 'phone', 'interfac', 'wife', 'bad', 'experi', 'android', 'os', 'howev', 'adapt', 'quick', 'wp', 'interfac', 'would', 'say', 'almost', 'natur', 'speak', 'well', 'wp', 'interfac', 'design', 'overal', 'product', 'met', 'expect', 'among', 'coupl', 'minor', 'limit', 'i', 'found', 'far', 'run', 'window', 'phone', 'b', 'requir', 'microsoft', 'zune', 'data', 'sync'], ['phone', 'would', 'not', 'charg', 'also', 'wait', 'week', 'got', 'phone', 'mail', 'wireless', 'charg', 'plate', 'still', 'not', 'charg', 'also', 'open', 'phone', 'found', 'miss', 'miss', 'screw', 'phone', 'tamper', 'descript', 'new', 'nokia', 'lumia', 'noth', 'say', 'use', 'open', 'fals', 'advertis', 'i', 'piss'], ['phone', 'pretti', 'good', 'unlock', 'use', 'anywher', 'around', 'world', 'love', 'recommend'], ['bad', 'qualiti', 'screen'], ['first', 'phone', 'gorgeous', 'love', 'rectangular', 'shape', 'sharp', 'edg', 'everyth', 'good', 'except', 'thing', 'microphon', 'bottom', 'phone', 'sometim', 'peopl', 'tell', 'hard', 'time', 'hear', 'sound', 'muffl', 'anoth', 'thing', 'not', 'person', 'phone', 'much', 'exampl', 'not', 'use', 'song', 'music', 'collect', 'alarm', 'tone', 'way', 'not', 'know'], ['pros', 'nice', 'look', 'good', 'screen', 'zeiss', 'lens', 'good', 'batteri', 'need', 'frequent', 'recharg', 'confus', 'logo', 'box', 'screen', 'new', 'factori', 'unlock', 'phone', 'buy', 'new', 'sim', 'starter', 'kit', 'staff', 'not', 'sure', 'phone', 'realli', 'factori', 'unlock'], ['got', 'phone', 'bring', 'phone', 'thing', 'straighttalk', 'first', 'not', 'think', 'unlock', 'come', 'find', 'mistak', 'made', 'miss', 'one', 'letter', 'info', 'straighttalk', 'gave', 'lol', 'internet', 'receiv', 'send', 'pictur', 'absolut', 'love', 'phone'], ['phone', 'great', 'best', 'phone', 'i', 'ever', 'own', 'dedic', 'high', 'end', 'android', 'user', 'found', 'phone', 'much', 'satisfi', 'experi', 'either', 'iphon', 'android', 'phone', 'want', 'os', 'meet', 'current', 'need', 'great', 'user', 'interfac', 'good', 'amount', 'app', 'avail', 'manag', 'daili', 'mobil', 'cell', 'phone', 'use', 'not', 'make', 'expens', 'phone', 'upgrad', 'time', 'nokia', 'lumia', 'well', 'construct', 'aesthet', 'pleas', 'modern', 'function', 'goe', 'well', 'beyond', 'expect', 'oper', 'fast', 'smooth', 'even', 'though', 'singl', 'core', 'processor', 'ram', 'not', 'awar', 'spec', 'might', 'think', 'processor', 'ram', 'board', 'nokia', 'come', 'phone', 'pleas', 'design', 'effici', 'come', 'perform', 'screen', 'bright', 'beauti', 'color', 'satur', 'screen', 'seem', 'less', 'glare', 'outsid', 'sunni', 'actual', 'read', 'screen', 'condit', 'big', 'plus', 'rom', 'plenti', 'pare', 'free', 'cloud', 'storag', 'enough', 'realli', 'not', 'know', 'fuss', 'concern', 'number', 'app', 'avail', 'window', 'phone', 'unless', 'kind', 'develop', 'techi', 'person', 'plenti', 'app', 'avail', 'phone', 'ms', 'nokia', 'third', 'parti', 'everyday', 'cell', 'phone', 'user', 'even', 'busi', 'user', 'game', 'app', 'seem', 'much', 'refin', 'probabl', 'lot', 'xbox', 'game', 'avail', 'phone', 'run', 'beauti', 'phone', 'travel', 'lot', 'i', 'realli', 'look', 'forward', 'use', 'phone', 'trip', 'alway', 'like', 'nokia', 'phone', 'qualiti', 'build', 'support', 'start', 'use', 'smartphon', 'got', 'away', 'nokia', 'phone', 'start', 'android', 'experi', 'nokia', 'chosen', 'team', 'ms', 'smartphon', 'market', 'want', 'tri', 'phone', 'love', 'surpris', 'i', 'crazi', 'lumia', 'look', 'forward', 'futur', 'offer', 'nokia', 'get', 'tire', 'phone', 'need', 'upgrad', 'recommend', 'phone', 'qualiti', 'afford', 'price', 'great', 'design', 'sturdi', 'fast', 'easi', 'use', 'especi', 'run', 'window', 'comput', 'tri', 'not', 'sorri', 'amazon', 'best', 'place', 'shop', 'come', 'person', 'not', 'ever', 'work', 'forgot', 'tell', 'upgrad', 'oper', 'system', 'similar', 'window', 'avail', 'phone', 'easi', 'instal', 'instal', 'zune', 'window', 'comput', 'connect', 'phone', 'usb', 'find', 'upgrad', 'instruct', 'instal'], ['updat', 'shuffl', 'background', 'facebook', 'like', 'cute', 'nice', 'keep'], ['phone', 'suppos', 'come', 'unlock', 'find', 'place', 'unlock', 'god', 'amazon', 'manag', 'call', 'everyday', 'find', 'unlock', 'phone', 'pay', 'back', 'happi', 'phone', 'unlock', 'love', 'thank', 'ladi', 'best', 'manag', 'ever', 'god', 'bless', 'not', 'rememb', 'name'], ['love', 'technolog', 'convinc', 'not', 'yet', 'use', 'window', 'phone', 'not', 'know', 'perfect', 'smooth', 'oper', 'system', 'like', 'mani', 'advantag', 'phone', 'comparison', 'iphon', 'even', 'top', 'name', 'android', 'phone', 'howev', 'actual', 'go', 'move', 'nokia', 'lumia', 'simpli', 'want', 'use', 'os', 'oper', 'system', 'would', 'definit', 'stick', 'type', 'phone', 'may', 'also', 'help', 'differ', 'os', 'everi', 'phone', 'advantag', 'diadvantag', 'mayb', 'two', 'everi', 'custom', 'like', 'dislik', 'differ', 'find', 'much', 'make', 'purchas'], ['enjoy', 'cell', 'phone', 'remind', 'love', 'nokia', 'phone', 'oper', 'well', 'easi', 'use', 'app', 'great', 'love', 'blue'], ['gave', 'star', 'rave', 'internet', 'use', 'kid', 'iphon', 'much', 'better', 'pictur', 'video', 'enjoy', 'window', 'phone', 'compar', 'android', 'iphon', 'easi', 'use', 'fit', 'well', 'hand', 'phone', 'nokia', 'great', 'custom', 'servic', 'prompt', 'thorough'], ['good', 'phone', 'could', 'not', 'want', 'light', 'excel', 'camera', 'good', 'featur', 'excel'], ['work', 'good', 'l', 'realli', 'love', 'phone', 'work', 'good', 'l', 'ask', 'jist', 'take', 'close', 'believ', 'love'], ['bought', 'nokia', 'lumia', 'oct', 'work', 'fine', 'first', 'month', 'occasion', 'would', 'signal', 'coverag', 'problem', 'thought', 'someth', 'network', 'provid', 'month', 'start', 'experienc', 'major', 'problem', 'phone', 'display', 'would', 'flicker', 'display', 'got', 'graini', 'network', 'signal', 'coverag', 'start', 'get', 'hit', 'bad', 'physic', 'damag', 'phone', 'mean', 'phone', 'not', 'drop', 'ground', 'water', 'liquid', 'matter', 'one', 'fine', 'day', 'total', 'gone', 'would', 'not', 'simpli', 'take', 'nokia', 'custom', 'care', 'center', 'inform', 'manufactur', 'defect', 'someth', 'hardwar', 'softwar', 'pooff', 'thought', 'goe', 'fortun', 'contact', 'amazon', 'month', 'purchas', 'explain', 'problem', 'kind', 'enough', 'listen', 'problem', 'accept', 'return', 'warranti', 'gave', 'verdict', 'nokia', 'lumia', 'photo', 'qualiti', 'speaker', 'volum', 'sturdi', 'unstabl', 'hardwar', 'softwar', 'window', 'lot', 'quit', 'amazon', 'custom', 'servic', 'usual', 'save'], ['bought', 'phone', 'camera', 'amaz', 'well', 'low', 'light', 'rare', 'even', 'among', 'newer', 'cell', 'phone', 'call', 'qualiti', 'good', 'phone', 'easi', 'use', 'prepar', 'limit', 'select', 'app', 'window', 'phone', 'app', 'store', 'still', 'most', 'spam', 'spywar', 'major', 'compani', 'repres', 'facebook', 'twitter', 'etc', 'everi', 'valid', 'safe', 'app', 'least', 'spam', 'app', 'tri', 'masquerad', 'real', 'almost', 'everyth', 'integr', 'googl', 'account', 'check', 'gmail', 'window', 'phone', 'os', 'get', 'calendar', 'sync', 'hard', 'even', 'techi', 'like', 'app', 'googl', 'voic', 'way', 'easili', 'integr', 'voic', 'phone', 'call', 'stick', 'android'], ['well', 'first', 'time', 'said', 'wait', 'blutekusa', 'told', 'via', 'email', 'phone', 'came', 'accesori', 'includ', 'headphon', 'headphon', 'not', 'come', 'i', 'feel', 'someth', 'weird', 'lumia', 'use', 'minut', 'back', 'also', 'screen', 'turn', 'hot', 'not', 'know', 'normal'], ['wonder', 'phone', 'wonder', 'batteri', 'life', 'great', 'app', 'relief', 'not', 'sure', 'window', 'marketplac', 'would', 'everyth', 'need', 'interfac', 'wonder', 'love', 'nokia', 'app', 'come', 'high', 'recommend', 'product', 'look', 'great', 'smartphon'], ['phone', 'freez', 'stop', 'work', 'happen', 'twice', 'even', 'not', 'get', 'power', 'week', 'half'], ['love', 'phone', 'first', 'got', 'work', 'littl', 'differ', 'get', 'use', 'like', 'six', 'month', 'later', 'not', 'even', 'not', 'work', 'go', 'onlin', 'see', 'load', 'peopl', 'exact', 'problem', 'one', 'guy', 'alreadi', 'exchang', 'phone', 'three', 'time', 'nokia', 'not', 'advertis', 'thru', 'seri', 'anymor', 'att', 'verizon', 'carrier', 'sell', 'newest', 'two', 'model', 'nokia', 'not', 'offer', 'real', 'resolut', 'recal', 'stay', 'away', 'anyth', 'nokia'], ['third', 'window', 'phone', 'second', 'lumia', 'went', 'even', 'though', 'around', 'want', 'buy', 'cheap', 'phone', 'one', 'lock', 'att', 'not', 'get', 'tie', 'ridicul', 'month', 'next', 'plan', 'extra', 'fee', 'two', 'year', 'contract', 'renew', 'wp', 'support', 'upgrad', 'wait', 'instal', 'must', 'say', 'job', 'lumia', 'worth', 'transfer', 'data', 'app', 'great', 'bring', 'old', 'sms', 'messag', 'rest', 'window', 'phone', 'transfer', 'easi', 'sign', 'account', 'everyth', 'arriv', 'new', 'att', 'packag', 'seal', 'lock', 'att', 'fine', 'use', 'sim', 'card', 'pop', 'work', 'issu', 'servic', 'lte', 'data', 'work', 'fine', 'ad', 'wireless', 'charg', 'otterbox', 'commut', 'case', 'work', 'great', 'charg', 'case'], ['phone', 'good', 'someon', 'like', 'not', 'latest', 'appl', 'product', 'want', 'someth', 'sturdi'], ['love', 'featur', 'love', 'camera', 'user', 'friend', 'batteri', 'life', 'could', 'littl', 'better', 'app', 'store', 'not', 'mani', 'app', 'itun', 'android', 'phone', 'great', 'not', 'someon', 'app', 'talk', 'text', 'featur', 'spot', 'better', 'iphon', 'previous', 'iphon', 'eas', 'useus', 'friend', 'interfacecamera', 'camera', 'featur', 'camera', 'appstalk', 'text', 'featurecon', 'batteri', 'life', 'not', 'realli', 'con', 'unless', 'use', 'phone', 'long', 'time', 'mani', 'app', 'iphon', 'androidoveral', 'love', 'phone', 'would', 'high', 'recommend'], ['phone', 'far', 'best', 'ever', 'like', 'brick', 'feel', 'solid', 'reliabl', 'hand', 'big', 'phone', 'incred', 'comfort', 'use', 'real', 'hardwar', 'obvious', 'design', 'engend', 'stand', 'heavi', 'built', 'camera', 'realli', 'good', 'not', 'replac', 'dslr', 'snapshot', 'street', 'photographi', 'os', 'truli', 'smooth', 'fulfil', 'app', 'store', 'may', 'not', 'two', 'three', 'million', 'app', 'truli', 'care', 'whatsapp', 'facebook', 'weather', 'forecast', 'stock', 'quot', 'app', 'cours', 'requir', 'user', 'may', 'requir', 'app', 'not', 'yet', 'avail', 'window', 'offic', 'onenot', 'great', 'plus', 'pleas', 'note', 'creat', 'word', 'excel', 'improv', 'i', 'go', 'unlock', 'button', 'misplac', 'would', 'far', 'comfort', 'place', 'easi', 'reachabl', 'thumb'], ['evolut', 'old', 'nokia', 'still', 'wait', 'technolog', 'citi', 'check', 'work', 'frequenc', 'band'], ['experi', 'nokia', 'lumia', 'disappoint', 'not', 'download', 'app', 'took', 'mobil', 'offic', 'could', 'not', 'figur', 'ou', 'call', 'nokia', 'compani', 'could', 'not', 'help', 'either', 'background', 'nois', 'whenev', 'call', 'annoy', 'caller', 'would', 'say', 'worri'], ['lumia', 'oper', 'still', 'top', 'notch', 'even', 'year', 'launch', 'friend', 'like', 'current', 'lumia', 'order', 'new', 'unit', 'friend'], ['good', 'product', 'arriv', 'time'], ['phone', 'inde', 'unlock', 'intern', 'version', 'power', 'arabian', 'help', 'youtub', 'abl', 'quick', 'get', 'chang', 'english', 'fantast', 'phone', 'beauti', 'rich', 'color', 'display', 'smooth', 'quick', 'oper', 'never', 'hang', 'freez', 'like', 'previous', 'phone', 'own', 'extrem', 'respons', 'screen', 'batteri', 'last', 'longer', 'thought', 'would'], ['trueli', 'unlock', 'start', 'use', 'want', 'open', 'phone', 'complet', 'charg', 'phone', 'work'], ['amaz', 'screen', 'speed'], ['disappoint', 'devic', 'replac', 'headphon', 'audio', 'piec', 'tweak', 'led', 'flash', 'copper', 'frame', 'touch', 'screen', 'becam', 'defect', 'also', 'never', 'thought', 'nokia', 'would', 'put', 'product', 'bad', 'market', 'bought', 'hong', 'kong', 'distributor', 'never', 'wonder', 'becom', 'disench', 'window', 'well', 'microsoft', 'not', 'work', 'hard', 'fast', 'enough', 'compet', 'head', 'io', 'android', 'switch', 'back', 'android', 'i', 'wait', 'almost', 'half', 'year', 'window', 'mobil', 'upgrad', 'phone', 'work', 'version'], ['advertis', 'product', 'receiv', 'work', 'perfect', 'thank'], ['excelent', 'producto'], ['order', 'factori', 'unlock', 'phone', 'receiv', 'lock', 'also', 'surpris', 'see', 'voucher', 'headphon', 'packet', 'not', 'sure', 'happen', 'return'], ['problem', 'phone', 'constant', 'reboot', 'updat', 'phone', 'softwar', 'yayday', 'two', 'later', 'phone', 'shut', 'complet', 'lost', 'word', 'right', 'truli', 'disappointedi', 'think', 'want', 'return', 'replac'], ['excelent'], ['phone', 'italian', 'languag', 'not', 'chang', 'even', 'languag', 'chang', 'etc', 'phone', 'turn', 'not', 'turn', 'back', 'kept', 'mint', 'condit', 'rare', 'ever', 'took', 'excurs', 'protect', 'kept', 'case', 'screen', 'said', 'would', 'not', 'assist', 'want', 'pay', 'dispos', 'phone', 'may', 'work', 'bewar', 'look', 'elsewher', 'not', 'let', 'happen', 'month', 'seller', 'send', 'gray', 'market', 'phone', 'meant', 'anoth', 'countri', 'doubt', 'got', 'black', 'market', 'not', 'stand', 'behind', 'day', 'contractu', 'oblig', 'question', 'contact', 'direct'], ['batteri', 'life', 'phone', 'great', 'window', 'phone', 'batteri', 'last', 'like', 'hour', 'i', 'use', 'internet', 'not', 'like', 'listen', 'music', 'watch', 'movi', 'last', 'ever', 'buy', 'may', 'guess', 'bigger', 'batteri', 'kind', 'person', 'camera', 'great', 'better', 'pictur', 'better', 'video', 'better', 'softwar', 'hold', 'awesom'], ['order', 'phone', 'week', 'not', 'pick', 'till', 'insert', 'windmobil', 'sim', 'card', 'today', 'hope', 'abl', 'use', 'show', 'wind', 'not', 'use', 'look', 'chanc', 'use', 'disappoint'], ['almost', 'two', 'year', 'still', 'work', 'pretti', 'good', 'i', 'miss', 'nokia'], ['excel', 'phone', 'fast', 'good'], ['receiv', 'lumia', 'white', 'box', 'not', 'origin', 'nokia', 'phone', 'box', 'describ', 'refurbish', 'arriv', 'actual', 'box', 'look', 'pretti', 'much', 'like', 'one', 'turn', 'phone', 'carrier', 'welcom', 'screen', 'portugues', 'time', 'month', 'use', 'steel', 'see', 'meo', 'welcom', 'screen', 'probabl', 'phone', 'refurbish', 'kept', 'phone', 'urgent', 'need', 'one', 'give', 'chanc', 'caus', 'much', 'troubl', 'sometim', 'touch', 'screen', 'not', 'respond', 'need', 'reboot', 'everi', 'time', 'happen', 'also', 'color', 'screen', 'turn', 'quiet', 'differ', 'look', 'like', 'display', 'blink', 'not', 'sure', 'phone', 'come', 'warranti', 'not', 'recommend', 'seller', 'probabl', 'not', 'sell', 'new', 'phone', 'refurbish', 'one', 'instead'], ['phone', 'freez', 'stop', 'work', 'happen', 'twice', 'even', 'not', 'get', 'power', 'week', 'half'], ['use', 'phone', 'love', 'broke', 'screen', 'immedi', 'bought', 'one', 'unfortun', 'phone', 'purchas', 'wqs', 'not', 'unlock', 'disappoint', 'happi', 'receiv', 'full', 'refund', 'go', 'hassl'], ['devic', 'not', 'new', 'advertis', 'camera', 'stop', 'work'], ['got', 'phone', 'day', 'order', 'big', 'deal', 'order', 'caribbean', 'love', 'phone', 'great', 'user', 'interfac', 'plenti', 'storag', 'app', 'predecessor', 'wp', 'updat', 'simpli', 'enhanc', 'awesom', 'phone', 'ice', 'top', 'fact', 'phone', 'compat', 'window', 'updat', 'not', 'think', 'i', 'upgrad', 'anytim', 'soon', 'fenc', 'not', 'great', 'product', 'great', 'kudo', 'seller', 'good', 'guy', 'electron', 'get', 'phone', 'quick', 'safe'], ['phone', 'not', 'even', 'unlock', 'great', 'phone', 'came', 'brand', 'new', 'not', 'unlock', 'like', 'said'], ['huge', 'fan', 'probabl', 'still', 'one', 'greatest', 'window', 'phone', 'avail', 'great', 'good', 'amount', 'memori', 'still', 'incorpor', 'qi', 'wireless', 'charg', 'support', 'pma', 'model', 'strip', 'wireless', 'charg', 'compar', 'intern', 'variant'], ['phone', 'use', 'not', 'say', 'crack', 'think'], ['differ', 'old', 'nokia', 'lumia', 'phone', 'difficult', 'use', 'slow', 'speed'], ['canadian', 'ugandan', 'lumia', 'not', 'servic', 'nokia', 'usa', 'rodger', 'variant', 'call', 'rodger', 'canada', 'refus', 'help', 'phone', 'purchas', 'us'], ['nice'], ['nice'], ['item', 'use', 'not', 'good'], ['say', 'brand', 'new', 'get', 'not', 'english', 'dirti', 'screen', 'fine', 'phone', 'work', 'screen', 'not', 'even', 'work', 'type', 'show', 'h', 'heck', 'piec', 'crap'], ['not', 'like', 'work', 'hour', 'put', 'sim', 'car', 'explor', 'phone', 'charg', 'trail', 'not', 'work'], ['excel', 'phone', 'good', 'dowload', 'watch', 'keep', 'video', 'good', 'internet', 'connect', 'easi', 'use', 'love'], ['love', 'phone', 'usual', 'stuff', 'care', 'not', 'drop', 'i', 'gotten', 'small', 'crack', 'even', 'though', 'use', 'case', 'screen', 'protector', 'batteri', 'not', 'last', 'long', 'seem', 'bad', 'smartphon', 'i', 'not', 'sure', 'phone', 'new', 'howev', 'pictur', 'whastapp', 'app', 'arab', 'scratch', 'protect', 'screen', 'make', 'nevertheless', 'not', 'problem', 'far'], ['bought', 'phone', 'camera', 'amaz', 'well', 'low', 'light', 'rare', 'even', 'among', 'newer', 'cell', 'phone', 'call', 'qualiti', 'good', 'phone', 'easi', 'use', 'prepar', 'limit', 'select', 'app', 'window', 'phone', 'app', 'store', 'still', 'most', 'spam', 'spywar', 'major', 'compani', 'repres', 'facebook', 'twitter', 'etc', 'everi', 'valid', 'safe', 'app', 'least', 'spam', 'app', 'tri', 'masquerad', 'real', 'almost', 'everyth', 'integr', 'googl', 'account', 'check', 'gmail', 'window', 'phone', 'os', 'get', 'calendar', 'sync', 'hard', 'even', 'techi', 'like', 'app', 'googl', 'voic', 'way', 'easili', 'integr', 'voic', 'phone', 'call', 'stick', 'android'], ['flagship', 'phone', 'numer', 'problem', 'screen', 'rotat', 'not', 'work', 'minim', 'use', 'phone', 'batteri', 'hour', 'one', 'minut', 'call', 'one', 'answer', 'text', 'one', 'short', 'email', 'cortana', 'not', 'activ', 'proxim', 'sensor', 'not', 'work', 'use', 'phone', 'put', 'ear', 'screen', 'stay', 'live', 'caus', 'heat', 'face', 'quick', 'plus', 'light', 'factor', 'disgust', 'qualiti', 'nokia', 'product', 'case'], ['love', 'featur', 'love', 'camera', 'user', 'friend', 'batteri', 'life', 'could', 'littl', 'better', 'app', 'store', 'not', 'mani', 'app', 'itun', 'android', 'phone', 'great', 'not', 'someon', 'app', 'talk', 'text', 'featur', 'spot', 'better', 'iphon', 'previous', 'iphon', 'eas', 'useus', 'friend', 'interfacecamera', 'camera', 'featur', 'camera', 'appstalk', 'text', 'featurecon', 'batteri', 'life', 'not', 'realli', 'con', 'unless', 'use', 'phone', 'long', 'time', 'mani', 'app', 'iphon', 'androidoveral', 'love', 'phone', 'would', 'high', 'recommend'], ['full', 'complacido'], ['bought', 'two', 'product', 'open', 'packag', 'cover', 'plastic', 'suspici', 'qualiti', 'product', 'charg', 'phone', 'use', 'one', 'immedi', 'keyboard', 'becam', 'chines', 'languag', 'also', 'phone', 'went', 'could', 'open', 'decid', 'not', 'risk', 'money', 'return', 'immedi', 'amazon', 'allow', 'not', 'fake', 'phone', 'market', 'detriment', 'effect', 'market', 'reput', 'good', 'thing', 'amazon', 'return', 'money', 'day', 'perfect', 'reput', 'question', 'would', 'advis', 'not', 'take', 'phone', 'like', 'packag', 'plaster'], ['rate', 'phone', 'five', 'star', 'fluiditi', 'function', 'window', 'os', 'came', 'long', 'way', 'sinc', 'alway', 'hope', 'see', 'app', 'gap', 'lessen', 'great', 'phone', 'price', 'conscienti', 'like'], ['love', 'phone', 'stabl', 'fast', 'app', 'show', 'store', 'big', 'fan', 'wp', 'also', 'great', 'camera'], ['gadget', 'best', 'got', 'especi', 'take', 'clear', 'pictur', 'captur', 'event', 'moment', 'ambl', 'memori', 'capac'], ['phone', 'came', 'chines', 'not', 'order', 'china', 'pay', 'get', 'english', 'also', 'came', 'crack', 'four', 'corner', 'bought', 'someon', 'not', 'realli', 'smartphon', 'user', 'found', 'difficult', 'navig', 'around', 'love', 'tho', 'camera', 'qualiti', 'excel', 'iphon', 'samsung', 'blue', 'blackberri', 'beat', 'camera', 'great', 'pictur', 'qualiti', 'bought', 'phone', 'not', 'user', 'friend', 'simpl', 'thing', 'find', 'quick', 'smart', 'phone', 'take', 'long', 'time', 'window'], ['i', 'use', 'window', 'phone', 'sinc', 'first', 'generat', 'phone', 'clear', 'winner', 'love', 'style', 'design', 'amaz', 'pureview', 'problem', 'i', 'phone', 'arriv', 'without', 'sim', 'tray', 'contact', 'seller', 'everyth', 'agre', 'sent', 'sim', 'tray', 'i', 'use', 'phone', 'without', 'problem'], ['damag', 'smartphon', 'poor', 'repair', 'wast', 'money', 'warranti'], ['got', 'phone', 'great', 'amaz', 'desktop', 'tablet', 'week', 'purchas', 'touch', 'screen', 'quit', 'work', 'took', 'repair', 'center', 'said', 'motherboard', 'melt', 'use', 'equat', 'hour', 'read', 'document', 'onlin', 'etc'], ['great', 'phone'], ['batteri', 'charg', 'slow', 'slow', 'discharg', 'fast', 'realli', 'fast', 'electr', 'defect', 'use', 'two', 'week'], ['excelent', 'producto'], ['recent', 'bought', 'new', 'lumia', 'stun', 'batteri', 'life', 'phenomen', 'use', 'main', 'send', 'email', 'text', 'web', 'brows', 'day', 'not', 'charg', 'almost', 'day', 'screen', 'look', 'amaz', 'love', 'sync', 'window', 'devic', 'well', 'worth', 'money'], ['stop', 'work', 'sound'], ['excel', 'equip', 'fast', 'user', 'interfac', 'good', 'resolut', 'camera', 'video', 'short', 'batteri', 'life', 'hour', 'recharg'], ['everyth', 'awesom', 'phone', 'great', 'everyth', 'not', 'unsatisfi', 'littl', 'bit', 'heavi', 'perfect'], ['not', 'hesit', 'recommend', 'buy', 'phone', 'go', 'solut', 'product', 'came', 'describ', 'origin', 'nokia', 'box', 'specif', 'josh', 'supplier', 'super', 'respons', 'question', 'might', 'order'], ['intern', 'logo', 'use', 'think', 'everyth', 'ok', 'mayb', 'need', 'buy', 'phone', 'case'], ['alway', 'nokia', 'lover', 'realli', 'realli', 'like', 'window', 'phone', 'keep', 'support', 'nokia', 'microsoft', 'system', 'keep', 'good', 'work', 'love', 'product', 'better', 'appl', 'product', 'easi', 'use'], ['good', 'phone', 'like', 'phone', 'made', 'clear', 'phone', 'nigeria', 'absolut', 'warranti', 'work', 'well', 'usa', 'also', 'softbank', 'japan'], ['lovin', 'phone'], ['month', 'batteri', 'start', 'drain', 'fast', 'cell', 'overh', 'issu'], ['excelent'], ['mobil', 'phone', 'damag', 'not', 'work', 'proper'], ['perfect', 'batteri', 'life', 'not', 'strong'], ['good', 'phone', 'i', 'enjoy'], ['thank', 'contact', 'seem', 'softwar', 'challeng', 'screen', 'went', 'blank', 'tri', 'restart', 'avail', 'day', 'use', 'sim', 'card', 'similar', 'phone', 'start', 'far', 'problem'], ['great', 'phone', 'pricepro', 'great', 'camera', 'pretti', 'fast', 'durabl', 'good', 'qualiti', 'generalcon', 'polycarbon', 'back', 'scratchi', 'not', 'care', 'seller', 'not', 'buy', 'ipartstor', 'not', 'sell', 'origin', 'finnish', 'product'], ['order', 'att', 'unlock', 'phone', 'get', 'quick', 'replac', 'daughter', 'broken', 'lumia', 'phone', 'use', 'lumina', 'att', 'coupl', 'year', 'love', 'easi', 'back', 'broken', 'phone', 'put', 'sim', 'card', 'unlock', 'phone', 'updat', 'phone', 'arriv', 'quick', 'glad', 'find', 'amazon', 'not', 'avail', 'att', 'store'], ['great', 'phone', 'look', 'nice', 'work', 'well'], ['bought', 'phone', 'due', 'fact', 'seller', 'state', 'unlock', 'get', 'came', 'back', 'argentina', 'put', 'local', 'chip', 'phone', 'recogn', 'problem', 'far', 'realiz', 'not', 'abl', 'use', 'data', 'connect', 'telco', 'call', 'compani', 'telecom', 'person', 'sever', 'chang', 'includ', 'configur', 'apn', 'updat', 'phone', 'latest', 'versión', 'result', 'simpli', 'not', 'work', 'flash', 'os', 'not', 'work', 'either', 'spent', 'hour', 'tri', 'solv', 'problema', 'final', 'realiz', 'someth', 'phone', 'not', 'work', 'spent', 'dollar', 'phone', 'not', 'work', 'worst', 'experi', 'amazon', 'sinc', 'first', 'purchas', 'year', 'not', 'know'], ['open', 'slip', 'sim', 'not', 'work', 'call', 'verizon', 'sent', 'new', 'sim', 'next', 'day', 'still', 'not', 'work', 'clear', 'not', 'unlock', 'use', 'sim', 'anoth', 'lumina', 'verizon', 'work'], ['phone', 'amaz', 'former', 'iphon', 'droid', 'user', 'nokia', 'lumia', 'featur', 'app', 'could', 'need', 'smartphon', 'simplic', 'design', 'beauti', 'feel', 'solid', 'camera', 'incred', 'pictur', 'qualiti', 'far', 'beyond', 'expect', 'batteri', 'life', 'facebook', 'twitter', 'addict', 'day', 'one', 'charg', 'best', 'smartphon', 'ever', 'own'], ['work', 'great', 'i', 'satisfi', 'purchas'], ['hey', 'need', 'code', 'unlock', 'phone'], ['need', 'return', 'not', 'abl', 'setup', 'like', 'replac', 'nokia'], ['phone', 'realli', 'obvious', 'scratch', 'top', 'part', 'logo', 'bright', 'side', 'nokia', 'good', 'phone', 'realli', 'unlock'], ['excel', 'product', 'realli', 'amaz', 'good', 'buy', 'day', 'time', 'simpli', 'impress', 'perform', 'batteri', 'life'], ['nokia', 'need', 'add', 'assembl', 'requir', 'sim', 'card', 'slot', 'come', 'packag', 'not', 'instal', 'phone', 'not', 'big', 'deal', 'simpl', 'instal', 'even', 'think', 'not', 'instal', 'even', 'refus', 'instal', 'servic', 'provid', 'instal', 'card', 'slot', 'take', 'second', 'instal', 'howev', 'problem', 'purchas', 'type', 'phone', 'never', 'purchas', 'screen', 'protector', 'case', 'go', 'general', 'peopl', 'not', 'read', 'instruct', 'manual', 'phone', 'unless', 'cours', 'messag', 'assembl', 'card', 'slot', 'incred', 'phone', 'app', 'grow', 'everi', 'day', 'nokia', 'microsoft', 'servic', 'provid', 'industri', 'lead', 'compani', 'provid', 'servic', 'bottom', 'line', 'even', 'type', 'os', 'infanc', 'googl', 'never', 'beat', 'microsoft', 'nokia', 'industri', 'standard', 'sinc', 'incept', 'bell', 'laboratori', 'incred', 'track', 'record', 'engin', 'innov', 'buy', 'technolog', 'go', 'leader', 'not', 'imit'], ['arriv', 'time', 'match', 'condit', 'describ', 'complaint', 'wife', 'phone', 'yet', 'bought', 'replac', 'jerold', 'phone', 'model', 'love'], ['phone', 'surpris', 'thought', 'would', 'enjoy', 'much', 'f', 'iphon', 'like', 'lumia'], ['purchas', 'phobe', 'nokia', 'lumia', 'beautiful', 'good', 'live', 'colombia', 'chang', 'sim', 'card', 'work', 'woow', 'today', 'regist', 'celular', 'glass', 'display', 'offic', 'work', 'temperatur', 'batteri', 'highupd', 'low', 'phone', 'heat', 'quit', 'game', 'not', 'game'], ['good'], ['phone', 'week', 'love', 'came', 'time', 'work', 'great', 'not', 'sure', 'would', 'come', 'new', 'would', 'work', 'far', 'problem', 'glad', 'made', 'purchas'], ['reliabl', 'good', 'phone'], ['phone', 'perfect', 'super', 'fast', 'processor', 'hard', 'drive', 'camera', 'video', 'record', 'well', 'playback', 'slight', 'flaw', 'long', 'slight', 'bulki', 'although', 'fit', 'back', 'pocket', 'petit', 'woman', 'minor', 'issu', 'batteri', 'not', 'last', 'quit', 'long', 'hope', 'use', 'lot', 'game', 'video', 'music', 'document', 'write', 'text', 'email', 'charg', 'day', 'understand', 'altogeth', 'great', 'phone', 'like', 'window', 'phone', 'os', 'not', 'work', 'verizon', 'sprint', 'care', 'purchas'], ['love', 'featur', 'love', 'camera', 'user', 'friend', 'batteri', 'life', 'could', 'littl', 'better', 'app', 'store', 'not', 'mani', 'app', 'itun', 'android', 'phone', 'great', 'not', 'someon', 'app', 'talk', 'text', 'featur', 'spot', 'better', 'iphon', 'previous', 'iphon', 'eas', 'useus', 'friend', 'interfacecamera', 'camera', 'featur', 'camera', 'appstalk', 'text', 'featurecon', 'batteri', 'life', 'not', 'realli', 'con', 'unless', 'use', 'phone', 'long', 'time', 'mani', 'app', 'iphon', 'androidoveral', 'love', 'phone', 'would', 'high', 'recommend'], ['extemen', 'nice', 'phone', 'need'], ['alreadi', 'tri', 'write', 'review', 'amazon', 'would', 'not', 'allow', 'let', 'us', 'tri', 'phone', 'useless', 'look', 'great', 'lock', 'imposs', 'unlock', 'tri', 'everi', 'way', 'possibl', 'imposs', 'phone', 'not', 'buy', 'eagl', 'communic', 'communic', 'return', 'phone', 'cross', 'finger', 'actual', 'purchas', 'unlock', 'phone', 'discrib', 'wors', 'purchas', 'ever', 'far'], ['love', 'phone', 'fast', 'work', 'perfect', 'camera', 'good'], ['think', 'lumia', 'great', 'phone', 'one', 'came', 'brand', 'new', 'unlock', 'box', 'reason', 'updat', 'softwar', 'not', 'provid', 'cortana'], ['good'], ['use', 'phone', 'week', 'say', 'surpass', 'expect', 'give', 'pros', 'con', 'note', 'far', 'pros', 'batteri', 'life', 'bit', 'concern', 'batteri', 'life', 'phone', 'read', 'negat', 'review', 'realli', 'reliev', 'found', 'batteri', 'life', 'amaz', 'far', 'never', 'recharg', 'day', 'averag', 'batteri', 'life', 'hrs', 'consid', 'phone', 'new', 'not', 'keep', 'hand', 'configur', 'email', 'account', 'manual', 'synchron', 'shoot', 'quit', 'lot', 'pictur', 'lot', 'text', 'would', 'say', 'batteri', 'life', 'screen', 'noth', 'less', 'amaz', 'love', 'everi', 'aspect', 'color', 'oleophob', 'lair', 'make', 'best', 'display', 'use', 'far', 'filter', 'black', 'realli', 'job', 'feel', 'almost', 'like', 'use', 'amol', 'need', 'comment', 'best', 'use', 'mobil', 'matter', 'person', 'prefer', 'love', 'weight', 'devic', 'bulki', 'feel', 'great', 'hand', 'although', 'relat', 'big', 'hand', 'might', 'one', 'reason', 'enough', 'enjoy', 'great', 'although', 'not', 'mani', 'applic', 'avail', 'compar', 'android', 'io', 'least', 'instal', 'work', 'extrem', 'well', 'like', 'fact', 'applic', 'store', 'flash', 'memori', 'switch', 'not', 'drain', 'batteri', 'go', 'back', 'app', 'load', 'fist', 'though', 'not', 'feel', 'delay', 'bit', 'subject', 'suppos', 'time', 'problem', 'synchron', 'email', 'tri', 'sever', 'time', 'time', 'averag', 'email', 'get', 'synch', 'not', 'happen', 'everi', 'time', 'bit', 'annoy', 'matter', 'littl', 'problem', 'email', 'client', 'amaz', 'realli', 'love', 'read', 'email', 'sometim', 'go', 'skype', 'sever', 'time', 'not', 'start', 'screen', 'remain', 'resum', 'second', 'applic', 'close', 'not', 'problem', 'applic', 'not', 'deal', 'breaker', 'not', 'mani', 'game', 'app', 'general', 'disadvantag', 'general', 'actual', 'like', 'not', 'instal', 'game', 'yet', 'probabl', 'reason', 'pleas', 'batteri', 'life', 'realli', 'love', 'templ', 'run', 'avail', 'well', 'refrain', 'instal', 'far', 'nexus', 'game', 'facebook', 'integr', 'share', 'pictur', 'facebook', 'not', 'easi', 'android', 'not', 'intuit', 'word', 'devic', 'amaz', 'pleasant', 'surpris', 'user', 'experi', 'form', 'first', 'phone', 'admit', 'love'], ['nokia', 'lumia', 'smartphon', 'unlock', 'white', 'chosen', 'great', 'phone', 'realli', 'like', 'design', 'addit', 'oper', 'system', 'price', 'product', 'technolog', 'purchas', 'process', 'good', 'agre', 'like', 'commit', 'respons', 'seller', 'would', 'recommend', 'friend', 'thank', 'servic'], ['receiv', 'phone', 'coupl', 'day', 'ago', 'say', 'lte', 'phone', 'spent', 'hour', 'tri', 'make', 'lte', 'work', 'addit', 'spent', 'hour', 'research', 'websit', 'lye', 'fix', 'phone', 'old', 'phone', 'lte', 'work', 'fine', 'att', 'not', 'problem', 'addit', 'wfi', 'connect', 'phone', 'kept', 'drop', 'time', 'password', 'get', 'reconnect', 'time', 'decid', 'one', 'go', 'back', 'request', 'return', 'even', 'famili', 'sever', 'window', 'phone', 'work', 'fine', 'think', 'phone', 'box', 'say', 'destin', 'saudi', 'arabia', 'not', 'mayb', 'would', 'work', 'better'], ['good'], ['love', 'phone'], ['track', 'phone', 'ever', 'sinc', 'nov', 'releas', 'general', 'mix', 'feel', 'type', 'review', 'read', 'internet', 'complaint', 'weight', 'lack', 'sd', 'card', 'slot', 'window', 'phone', 'list', 'goe', 'howev', 'experienc', 'devic', 'say', 'not', 'perfect', 'smartphon', 'excel', 'phone', 'weigh', 'consider', 'direct', 'competitor', 'not', 'feel', 'like', 'anvil', 'solid', 'almost', 'unbreak', 'feel', 'though', 'i', 'not', 'go', 'test', 'samsung', 'galaxi', 'one', 'main', 'competitor', 'releas', 'date', 'though', 'lighter', 'thinner', 'lumia', 'also', 'feel', 'quit', 'frail', 'comparison', 'not', 'find', 'weight', 'phone', 'negat', 'concern', 'environ', 'would', 'treat', 'well', 'document', 'demonstr', 'window', 'app', 'store', 'leagu', 'behind', 'googl', 'io', 'obvious', 'miss', 'popular', 'app', 'not', 'least', 'instagram', 'youtub', 'abl', 'find', 'ampl', 'replac', 'far', 'metrotub', 'job', 'not', 'one', 'obsess', 'name', 'find', 'app', 'capabl', 'handl', 'not', 'phone', 'boast', 'silki', 'smooth', 'perform', 'great', 'visual', 'averag', 'speaker', 'output', 'far', 'media', 'storag', 'goe', 'i', 'not', 'concern', 'lack', 'sd', 'card', 'slot', 'devic', 'alreadi', 'come', 'flagship', 'releas', 'date', 'top', 'not', 'offer', 'sd', 'storag', 'camera', 'probabl', 'strongest', 'sell', 'point', 'high', 'end', 'nokia', 'phone', 'believ', 'guy', 'right', 'brag', 'camera', 'simpli', 'amaz', 'bunch', 'imag', 'app', 'make', 'photo', 'experi', 'much', 'life', 'would', 'call', 'averag', 'smartphon', 'day', 'probabl', 'biggest', 'negat', 'point', 'mind', 'right', 'depend', 'upon', 'usag', 'set', 'batteri', 'life', 'vari', 'great', 'one', 'user', 'turn', 'screen', 'bright', 'way', 'turn', 'servic', 'keep', 'phone', 'run', 'barebon', 'featur', 'crank', 'day', 'batteri', 'easili', 'like', 'moder', 'heavi', 'user', 'keep', 'screen', 'set', 'automat', 'not', 'bother', 'turn', 'thing', 'locat', 'set', 'get', 'upward', 'hour', 'full', 'charg', 'i', 'seen', 'better', 'i', 'also', 'seen', 'i', 'satisfi', 'phone', 'either', 'xperia', 'z', 'soni', 'two', 'total', 'differ', 'experi', 'strong', 'weak', 'point', 'price', 'differ', 'probabl', 'play', 'role', 'decis', 'well', 'torn', 'though', 'releas', 'sure', 'drop', 'z', 'price', 'anybodi', 'question', 'chose', 'lumia', 'reason', 'onboard', 'storag', 'oppos', 'not', 'camera', 'much', 'better', 'not', 'come', 'red'], ['came', 'earli', 'excel', 'condit', 'even', 'though', 'post', 'offic', 'crush', 'box', 'phone', 'pack', 'well', 'perfect', 'condit', 'not', 'tell', 'phone', 'use', 'work', 'perfect', 'though', 'charger', 'not', 'good', 'one', 'alreadi', 'sim', 'work', 'turn', 'simpl', 'put', 'use', 'earring', 'wire', 'sim', 'viola', 'work', 'like', 'window', 'phone', 'compar', 'lg', 'though', 'heavi', 'app', 'may', 'not', 'resolut', 'good', 'call', 'qualiti', 'good', 'without', 'blue', 'tooth', 'cours', 'sound', 'excel', 'bought', 'first', 'save', 'whole', 'lot', 'money'], ['excel', 'phone', 'got', 'special', 'edit', 'bought', 'girlfriend', 'doubt', 'window', 'phone', 'love', 'simplic', 'built', 'qualiti', 'nokia', 'phone'], ['bought', 'phone', 'replac', 'one', 'like', 'lost', 'featur', 'old', 'not', 'like', 'screen', 'freez', 'day', 'resolv', 'soon', 'batteri', 'die', 'not', 'freez', 'sinc', 'new', 'featur', 'take', 'time', 'get', 'use', 'navig', 'phone', 'fair', 'well', 'carrier', 'tmobil', 'phone', 'came', 'preload', 'bunch', 'att', 'junk', 'uninstal', 'serious', 'issu'], ['nice', 'phone', 'problem', 'better', 'android', 'io', 'recommend', 'phone', 'anyon'], ['oh', 'man', 'phone', 'fast', 'realli', 'fast', 'i', 'android', 'fan', 'damn', 'lag', 'could', 'not', 'stand', 'take', 'day', 'two', 'get', 'use', 'stick', 'window'], ['purchas', 'contact', 'seller', 'make', 'sure', 'version', 'sell', 'us', 'enabl', 'lte', 'box', 'got', 'tmobil', 'box', 'even', 'includ', 'microsimcard', 'week', 'get', 'lte', 'speed', 'everyth', 'seem', 'work', 'well', 'happi', 'purchas', 'amazon', 'seller', 'price', 'less', 'regular', 'price', 'custom', 'make', 'sure', 'ask', 'seller', 'direct', 'version', 'version', 'lumia', 'intern', 'us', 'version', 'tmobil', 'asia', 'version', 'sourc', 'wikipedia', 'got', 'lte', 'work', 'great'], ['problem', 'light', 'detector', 'end', 'call', 'take', 'phone', 'away', 'ear', 'suppos', 'turn', 'screen', 'back', 'one', 'sometim', 'work', 'everyth', 'els', 'great'], ['phone', 'new', 'cell', 'like', 'nokia', 'lumina', 'get', 'usedto'], ['not', 'work', 'despit', 'band', 'oper', 'say', 'block', 'descript', 'say', 'limit', 'region'], ['solid', 'phone', 'run', 'latest', 'build', 'window', 'mobil', 'well'], ['beauti', 'stabl', 'phone', 'phone', 'perform', 'flawless', 'sharp', 'window', 'os', 'recommend', 'anyon', 'fun', 'see', 'tile', 'constant', 'jump', 'true', 'black', 'screen', 'let', 'us', 'tile', 'color'], ['person', 'favorit', 'phone', 'ever', 'great', 'camera', 'good', 'batteri', 'life', 'glitch', 'order', 'one', 'replac', 'last', 'one', 'foolish', 'broke', 'case', 'cover', 'must', 'though', 'phone', 'quit', 'slipperi', 'stupid', 'drop', 'glass', 'crack', 'trust', 'get', 'case', 'love', 'call', 'block', 'featur', 'window', 'phone', 'built', 'right', 'need', 'app', 'godsend'], ['bought', 'teenag', 'cousin', 'seem', 'happi', 'good', 'phone', 'good', 'price'], ['excel', 'phone', 'nice', 'price', 'get', 'recommend'], ['fast', 'great', 'condit', 'phone', 'equal', 'samsung', 'galaxi', 'iphon', 'camera', 'featur', 'surpass', 'phone'], ['gripe', 'beauti', 'wide', 'screen', 'crack', 'easili', 'fall', 'one', 'corner', 'otherwis', 'impress', 'phone', 'except', 'camera', 'window', 'take', 'get', 'use', 'actual', 'quit', 'refresh', 'use', 'appl', 'i', 'never', 'use', 'android', 'app', 'store', 'not', 'biggest', 'best', 'known', 'applic', 'nokia', 'app', 'except', 'includ', 'filter', 'photo', 'gps', 'drive', 'function', 'drain', 'batteri', 'fast', 'use', 'charger', 'oper', 'phone', 'eleg', 'pocket', 'comput', 'free', 'verizon', 'contract'], ['great', 'phone', 'except', 'verizon', 'softwar', 'useless', 'gsm', 'provid', 'network', 'like', 'one', 'bigger', 'issu', 'send', 'text', 'messag', 'not', 'work', 'lte', 'mode', 'highest', 'network', 'speed', 'switch', 'everi', 'time', 'want', 'sent', 'sms'], ['well', 'built', 'easi', 'navig'], ['love', 'like', 'person', 'secretari', 'cortana'], ['bought', 'phone', 'use', 'haiti', 'gsm', 'work', 'well', 'phone', 'interest', 'recommend', 'buy'], ['good'], ['phone', 'good', 'first', 'month', 'would', 'problem', 'screen', 'random', 'turn', 'static', 'peopl', 'call', 'not', 'even', 'hear', 'unless', 'yell', 'phone', 'sinc', 'bought', 'phone', 'amazon', 'not', 'cover', 'warranti', 'make', 'situat', 'troubl'], [], ['phone', 'unus', 'go', 'phone', 'verison', 'not', 'unlock', 'therefor', 'lock', 'unlock', 'market', 'bull'], ['like', 'everyth', 'phone', 'function', 'short', 'lack', 'support', 'miracast', 'phone', 'version', 'window', 'unlik', 'pc', 'os', 'thing', 'work', 'great', 'i', 'hope', 'futur', 'updat', 'phone', 'os', 'bring', 'miracast', 'function', 'back', 'begin'], ['month', 'screen', 'keep', 'lock', 'switch', 'differ', 'app', 'random', 'time', 'wast', 'money'], ['phone', 'not', 'work', 'buy', 'new', 'batteri', 'could', 'even', 'get', 'turn', 'final', 'get', 'work', 'could', 'not', 'send', 'receiv', 'pictur', 'anyth', 'els', 'pertain', 'media', 'center', 'phone', 'good', 'call', 'joke'], ['arriv', 'time', 'work', 'great'], ['came', 'requir', 'thing', 'charger', 'ear', 'phone', 'manual', 'cd', 'pc', 'cabl', 'etc', 'unlock', 'work', 'well', 'new', 'subscrib', 'asia'], ['bought', 'phone', 'nokia', 'spare', 'would', 'bought', 'howev', 'use', 'wi', 'fi', 'gps', 'chose', 'not', 'dissapoint', 'excel', 'phone', 'took', 'hr', 'flight', 'breez', 'listen', 'watch', 'music', 'video', 'real', 'player', 'play', 'roger', 'feder', 'tenni', 'need', 'speed', 'soduku', 'etc', 'read', 'section', 'book', 'reviw', 'excel', 'pdf', 'file', 'download', 'camera', 'pictur', 'awesom', 'phone', 'reason', 'come', 'bluish', 'cast', 'fix', 'easili', 'photosohop', 'fix', 'slr', 'pictur', 'well', 'big', 'deal', 'fm', 'radio', 'handi', 'keep', 'meet', 'lotus', 'note', 'synchron', 'plus', 'less', 'not', 'worri', 'carri', 'phone', 'pocket', 'said', 'like', 'recommend', 'nokia', 'not', 'mean', 'outdat', 'underpow', 'less', 'featur', 'big', 'deal'], ['excel', 'without', 'mishap'], ['bought', 'two', 'disappoint'], ['product', 'great', 'love', 'love', 'love', 'love', 'love', 'love', 'love', 'yess', 'yes', 'yes'], ['great', 'phone', 'nice', 'cam', 'includ', 'tv', 'output', 'mani', 'function', 'mani', 'softwar', 'mani', 'gamesth', 'cam', 'kind', 'slow', 'take', 'amaz', 'pic', 'video', 'great', 'game', 'great', 'cell', 'chip', 'even', 'quak', 'opengl', 'acceler', 'game', 'use', 'thisth', 'bad', 'slow', 'mani', 'thing', 'menus', 'contact', 'etc', 'even', 'mb', 'ram', 'suck', 'updat', 'mayb', 'fix', 'not', 'updat', 'yet'], ['phone', 'month', 'say', 'phone', 'beauti', 'not', 'typic', 'smartphon', 'curvatur', 'screen', 'pleasant', 'got', 'quit', 'compliment', 'friend', 'regard', 'appear', 'nokia', 'notic', 'screen', 'develop', 'kind', 'scratch', 'kind', 'imposs', 'polish', 'probabl', 'due', 'wear', 'polar', 'phone', 'not', 'peopl', 'want', 'plenti', 'app', 'good', 'app', 'download', 'buy', 'use', 'sinc', 'nokia', 'drop', 'meego', 'oper', 'great', 'would', 'not', 'suggest', 'friend', 'buy'], ['best'], ['realli', 'great', 'cell', 'phone', 'good', 'hardwar', 'good', 'unfortun', 'deprec', 'oper', 'system', 'lack', 'applic', 'nokia', 'look', 'not', 'care', 'anymor', 'look', 'like', 'peopl', 'phone', 'limit', 'current', 'set', 'applic', 'one', 'abl', 'download', 'nokia', 'sdk', 'phone', 'deprec', 'workaround', 'stuff', 'instal', 'sdk', 'fedora', 'system', 'packag', 'avail', 'fedora', 'fedora', 'look', 'like', 'anoth', 'packag', 'anoth', 'ose', 'also', 'deprec', 'good', 'cellphon', 'attent', 'nokia', 'make', 'imho', 'bad', 'buy', 'bought', 'almost', 'pure', 'linux', 'without', 'mani', 'modif', 'like', 'android', 'tbh', 'android', 'phone', 'look', 'better', 'choic'], ['shame', 'nokia', 'stop', 'support', 'even', 'still', 'amaz', 'less', 'euro', 'realli', 'good', 'deal', 'special', 'gb', 'memori'], ['bought', 'instead', 'iphon', 'want', 'linux', 'termin', 'got', 'exact', 'look'], ['phone', 'deliv', 'yesterday', 'proud', 'choos', 'phone', 'contempl', 'buy', 'one', 'high', 'price', 'phone', 'felt', 'expens', 'settl', 'nokia', 'base', 'friend', 'recommend', 'glad', 'went', 'could', 'not', 'settl', 'anyth', 'els', 'size', 'total', 'make', 'great', 'wonder', 'not', 'much', 'nois', 'made', 'phone', 'compar', 'popular', 'one', 'troubl', 'size', 'sim', 'sinc', 'mine', 'could', 'not', 'fit', 'read', 'review', 'could', 'use', 'cutter', 'get', 'micro', 'sim', 'hope', 'work', 'sinc', 'love', 'keep', 'phone'], ['best', 'around', 'devic', 'everyth', 'work', 'well', 'hard', 'imagin', 'devic', 'small', 'modern', 'day', 'gadget', 'built', 'phone', 'gps', 'bluetooth', 'camcord', 'fine', 'camera', 'qualiti', 'built', 'unlik', 'mani', 'high', 'end', 'korean', 'phone', 'clear', 'high', 'res', 'screen', 'batteri', 'life', 'excel', 'wish', 'devic', 'expand', 'storag', 'like', 'model', 'order', 'amazon', 'deliveri', 'arriv', 'time', 'high', 'recommend', 'want', 'around', 'devic', 'work', 'set', 'bit', 'complic', 'complic', 'devic', 'patient', 'nokia', 'websit', 'good', 'support', 'softwar', 'howev', 'bit', 'buggi', 'work', 'fine', 'xp', 'spent', 'day', 'set', 'work', 'small', 'wonder', 'also', 'iphon', 'nokia', 'far', 'featur', 'better', 'phone', 'esp', 'unlock', 'use', 'oversea', 'restrict', 'iphon', 'worst', 'thing', 'otherwis', 'great', 'devic', 'kind', 'well', 'worth', 'price'], ['origin', 'genuin', 'product', 'full', 'set'], ['want', 'cellphon', 'need', 'awsom', 'real', 'real', 'comput'], ['perfect', 'phone', 'perfect', 'pictur', 'realli', 'good', 'gps', 'hudg', 'memori', 'great', 'smartphon', 'better', 'final', 'nokia', 'phone', 'realli', 'beati', 'weak', 'sound', 'ring', 'not', 'load', 'de', 'vibrat', 'weak'], ['power', 'user', 'not', 'buy', 'comparison', 'blackberri', 'want', 'line', 'front', 'not', 'buy', 'i', 'would', 'rather', 'take', 'risk', 'htc', 'touch', 'pro', 'wait', 'unlock', 'wait', 'longer', 'see', 'android', 'phone', 'come', 'bore', 'discuss', 'origin', 'chose', 'let', 'us', 'get', 'experi', 'major', 'longer', 'receiv', 'text', 'messag', 'except', 'send', 'within', 'month', 'buy', 'exchang', 'email', 'sync', 'lock', 'regular', 'normal', 'manual', 'sync', 'work', 'also', 'note', 'not', 'sync', 'even', 'instal', 'everyth', 'phone', 'memori', 'phone', 'small', 'intern', 'memori', 'still', 'fill', 'caus', 'phone', 'basic', 'lock', 'find', 'reboot', 'phone', 'regular', 'get', 'web', 'browser', 'becom', 'unrespons', 'load', 'page', 'pictur', 'page', 'not', 'load', 'not', 'brows', 'rest', 'page', 'find', 'regular', 'wait', 'page', 'load', 'rather', 'read', 'alreadi', 'load', 'also', 'even', 'load', 'page', 'not', 'scroll', 'around', 'softwar', 'avail', 'much', 'less', 'expect', 'mayb', 'i', 'bad', 'googl', 'seem', 'like', 'program', 'want', 'us', 'us', 'develop', 'seem', 'develop', 'order', 'iphon', 'blackberri', 'window', 'mobil', 'not', 'develop', 'reason', 'never', 'fine', 'european', 'equival', 'program', 'want', 'also', 'program', 'seem', 'updat', 'even', 'someon', 'done', 'softwar', 'not', 'necessarili', 'work', 'phone', 'includ', 'nokia', 'batteri', 'life', 'not', 'enough', 'make', 'entir', 'day', 'use', 'regular', 'throughout', 'day', 'make', 'leav', 'pocket', 'work', 'leav', 'desk', 'say', 'work', 'block', 'websit', 'want', 'visit', 'better', 'plan', 'plug', 'whole', 'call', 'log', 'stop', 'record', 'not', 'see', 'call', 'leav', 'vibrat', 'not', 'ring', 'work', 'yet', 'rare', 'actual', 'feel', 'ring', 'not', 'know', 'not', 'vibrat', 'week', 'not', 'tell', 'miss', 'call', 'get', 'i', 'not', 'look', 'direct', 'phone', 'app', 'not', 'interact', 'well', 'app', 'like', 'screw', 'call', 'app', 'get', 'altern', 'regular', 'troubl', 'actual', 'hang', 'not', 'think', 'red', 'button', 'bezel', 'work', 'end', 'call', 'soft', 'take', 'least', 'click', 'basic', 'anyth', 'whether', 'run', 'program', 'view', 'contact', 'pick', 'send', 'text', 'messag', 'noth', 'well', 'laid', 'configur', 'option', 'buri', 'obscur', 'unavail', 'hunt', 'tri', 'configur', 'facebook', 'app', 'requir', 'click', 'tell', 'connect', 'internet', 'everi', 'time', 'open', 'pretti', 'consist', 'everyth', 'want', 'person', 'interact', 'tell', 'connect', 'internet', 'easi', 'avail', 'use', 'wifi', 'not', 'use', 'cellular', 'anoth', 'option', 'not', 'even', 'facebook', 'app', 'stop', 'load', 'not', 'come', 'password', 'keeper', 'option', 'mediocr', 'phone', 'option', 'none', 'consid', 'accept', 'could', 'entir', 'post', 'wrong', 'differ', 'password', 'keeper', 'ovi', 'store', 'not', 'let', 'program', 'know', 'bought', 'not', 'let', 'reload', 'podcast', 'program', 'not', 'automat', 'download', 'podcast', 'background', 'not', 'save', 'spot', 'howev', 'found', 'play', 'podcast', 'music', 'player', 'save', 'spot', 'long', 'not', 'play', 'anyth', 'els', 'screen', 'not', 'redraw', 'music', 'player', 'mediocr', 'best', 'seem', 'dig', 'song', 'play', 'anyth', 'i', 'would', 'like', 'hit', 'random', 'song', 'play', 'accept', 'player', 'mayb', 'year', 'ago', 'today', 'peopl', 'expect', 'reason', 'thought', 'rss', 'reader', 'built', 'web', 'browser', 'dug', 'not', 'hit', 'rss', 'app', 'rss', 'updat', 'fingertip', 'ok', 'know', 'throw', 'bone', 'keyboard', 'quirki', 'regular', 'hit', 'key', 'tri', 'type', 'send', 'cursor', 'front', 'text', 'type', 'half', 'sentenc', 'realiz', 'also', 'regular', 'confus', 'key', 'use', 'regular', 'slow', 'caus', 'retyp', 'lot', 'also', 'i', 'get', 'key', 'lock', 'place', 'type', 'whole', 'sentenc', 'number', 'not', 'find', 'reason', 'game', 'want', 'simpl', 'rpg', 'keep', 'busi', 'not', 'cellular', 'connect', 'not', 'find', 'one', 'cut', 'past', 'poor', 'said', 'not', 'complet', 'terribl', 'general', 'hardwar', 'good', 'got', 'decent', 'platfrom', 'abus', 'terribl', 'get', 'ton', 'use', 'memori', 'like', 'memori', 'stick', 'long', 'got', 'like', 'podcast', 'phone', 'softwar', 'bit', 'better', 'would', 'perfect', 'let', 'download', 'background', 'play', 'car', 'whenev', 'drive', 'thing', 'consid', 'morn', 'addit', 'not', 'least', 'kind', 'sync', 'brought', 'exchang', 'contact', 'calendar', 'pretti', 'nice', 'though', 'i', 'not', 'sure', 'actual', 'chang', 'like', 'integr', 'gps', 'nokia', 'program', 'googl', 'map', 'etc', 'even', 'program', 'gps', 'tag', 'camera', 'take', 'great', 'photo', 'reason', 'video', 'qik', 'cool', 'video', 'keyboard', 'not', 'bad', 'inher', 'key', 'definit', 'ok', 'type', 'size', 'feel', 'phone', 'pretti', 'good', 'flip', 'widget', 'nice', 'though', 'not', 'use', 'facebook', 'bit', 'never', 'realli', 'care', 'anyth', 'show', 'weather', 'weather', 'solid', 'background', 'ugli', 'contrast', 'widget', 'make', 'great', 'modem', 'laptop', 'whether', 'wifi', 'access', 'point', 'tether', 'modem', 'said', 'wish', 'hardwar', 'support', 'wpa', 'defcon', 'week', 'wep', 'ask', 'someon', 'crack', 'help', 'other', 'avoid', 'expens', 'mistak', 'i', 'probabl', 'tri', 'sell', 'ebay', 'go', 'back', 'wait', 'get', 'htc', 'touch', 'pro', 'hope', 'not', 'crippl', 'way'], ['first', 'let', 'say', 'i', 'user', 'devic', 'year', 'even', 'aw', 'goofbal', 'round', 'keypad', 'top', 'head', 'i', 'use', 'even', 'half', 'day', 'return', 'found', 'capabl', 'hopeless', 'bork', 'fortun', 'user', 'got', 'fix', 'never', 'jump', 'back', 'though', 'crazi', 'version', 'number', 'jump', 'asid', 'read', 'someth', 'consid', 'unlucki', 'number', 'asian', 'cultur', 'skip', 'jazz', 'hood', 'symbian', 'underpin', 'i', 'grown', 'know', 'love', 'year', 'slick', 'new', 'touch', 'interfac', 'even', 'went', 'launch', 'parti', 'nyc', 'commerci', 'cool', 'j', 'hum', 'mama', 'said', 'knock', 'much', 'head', 'went', 'bought', 'song', 'got', 'phone', 'retir', 'cue', 'sad', 'music', 'first', 'problem', 'isync', 'support', 'worri', 'hack', 'togeth', 'plugin', 'back', 'day', 'hard', 'bzz', 'go', 'method', 'sync', 'devic', 'use', 'mail', 'exchang', 'googl', 'sync', 'sync', 'contact', 'calendar', 'event', 'work', 'most', 'bit', 'pain', 'set', 'get', 'data', 'phone', 'mac', 'googl', 'phone', 'cours', 'differ', 'sync', 'alway', 'potenti', 'chang', 'collis', 'googl', 'part', 'batteri', 'life', 'wow', 'not', 'pretti', 'bad', 'take', 'hat', 'boy', 'espoo', 'one', 'point', 'charg', 'time', 'kid', 'serious', 'keep', 'cpu', 'avail', 'memori', 'felt', 'bit', 'anem', 'not', 'much', 'cpu', 'i', 'would', 'thought', 'would', 'case', 'memori', 'common', 'messag', 'saw', 'definit', 'slower', 'i', 'would', 'like', 'must', 'also', 'say', 'cpu', 'definit', 'not', 'screen', 'oh', 'screen', 'certain', 'beauti', 'look', 'disput', 'thought', 'color', 'vibrant', 'look', 'great', 'concern', 'touchscreen', 'would', 'mean', 'would', 'hard', 'see', 'anyth', 'finger', 'mark', 'not', 'chief', 'problem', 'devic', 'ultim', 'led', 'return', 'screen', 'resist', 'touchscreen', 'employ', 'not', 'sensit', 'enough', 'found', 'touch', 'one', 'camera', 'mp', 'dual', 'led', 'flash', 'took', 'nice', 'pic', 'not', 'use', 'singl', 'xenon', 'flash', 'flash', 'best', 'i', 'ever', 'seen', 'realli', 'realli', 'tri', 'hard', 'like', 'phone', 'screen', 'not', 'realli', 'seem', 'work', 'correct', 'day', 'batteri', 'life', 'could', 'not', 'good', 'conscienc', 'keep'], ['not', 'get', 'gps', 'work', 'phone', 'work', 'fine', 'also', 'tri', 'download', 'app', 'fail'], ['luego', 'de', 'tener', 'ya', 'dos', 'semana', 'con', 'el', 'telefono', 'comprado', 'aqui', 'mismo', 'en', 'amazon', 'antiguament', 'tenia', 'un', 'bb', 'creo', 'que', 'es', 'mejor', 'que', 'est', 'visto', 'que', 'es', 'la', 'maravilla', 'que', 'esperaba', 'el', 'telefono', 'trae', 'sus', 'pro', 'sus', 'contra', 'pero', 'hablar', 'de', 'los', 'contra', 'que', 'son', 'lo', 'mas', 'molesto', 'de', 'est', 'la', 'bateria', 'baila', 'dentro', 'del', 'telefono', 'se', 'ajusta', 'al', 'telefono', 'al', 'mover', 'el', 'telefono', 'al', 'modo', 'teclado', 'se', 'sient', 'como', 'la', 'bateria', 'se', 'muev', 'la', 'tapa', 'que', 'recubr', 'la', 'bateria', 'pose', 'un', 'juego', 'nada', 'agrad', 'para', 'ser', 'un', 'nokia', 'est', 'precio', 'al', 'poner', 'el', 'telefono', 'boca', 'arriba', 'quitan', 'la', 'tapa', 'de', 'la', 'bateria', 'esta', 'cae', 'sola', 'se', 'ajusta', 'si', 'los', 'blackberri', 'se', 'congelan', 'con', 'cualquier', 'accion', 'que', 'hiciera', 'est', 'se', 'lleva', 'el', 'premio', 'mayor', 'se', 'congelan', 'al', 'girar', 'la', 'pantalla', 'al', 'abrir', 'la', 'pantalla', 'al', 'usar', 'la', 'camara', 'es', 'en', 'dond', 'mas', 'se', 'congela', 'funciona', 'la', 'camara', 'se', 'reinicia', 'sola', 'si', 'se', 'tien', 'que', 'quitar', 'la', 'bateria', 'apagar', 'el', 'equipo', 'varia', 'vece', 'por', 'que', 'razon', 'se', 'sera', 'mala', 'calidad', 'del', 'equipo', 'por', 'eso', 'sacaron', 'el', 'base', 'de', 'linux', 'por', 'que', 'el', 'sirv', 'para', 'el', 'sistema', 'operativo', 'es', 'una', 'basura', 'camara', 'otro', 'problema', 'al', 'tomar', 'la', 'foto', 'con', 'flash', 'la', 'camara', 'percib', 'el', 'respandor', 'del', 'flash', 'al', 'lado', 'izquierdo', 'del', 'lent', 'osea', 'el', 'lado', 'izquierdo', 'de', 'las', 'foto', 'con', 'color', 'blanco', 'est', 'detall', 'descompenso', 'los', 'mp', 'del', 'el', 'nokia', 'messag', 'es', 'una', 'plataforma', 'de', 'correo', 'demasiado', 'lenta', 'comparacion', 'la', 'de', 'los', 'blackberri', 'eso', 'si', 'es', 'una', 'plataforma', 'los', 'email', 'que', 'llegaban', 'al', 'instant', 'en', 'mi', 'anterior', 'blackberri', 'en', 'el', 'nokia', 'llegan', 'despu', 'de', 'minuto', 'hora', 'despu', 'de', 'ser', 'enviado', 'que', 'esta', 'actualizado', 'la', 'ultima', 'version', 'del', 'softwar', 'que', 'el', 'mismo', 'telefono', 'te', 'informa', 'la', 'actualizacion', 'es', 'peor', 'que', 'la', 'la', 'velocidad', 'de', 'conexion', 'es', 'buena', 'amigo', 'de', 'amazon', 'espero', 'que', 'con', 'esto', 'les', 'haya', 'ayudado', 'decidirc', 'si', 'comprarlo', 'english', 'pleas', 'use', 'languag', 'tool', 'googl'], ['love', 'phone', 'function', 'modern', 'got', 'lot', 'stuff', 'love', 'best', 'play', 'music', 'without', 'headset', 'sound', 'pretti', 'good', 'loud', 'cool', 'great', 'purchas', 'alway', 'nokia', 'best'], ['ok'], ['muy', 'bueno'], ['phone', 'nice', 'altern', 'smart', 'phone', 'love', 'size', 'combo', 'touchscreen', 'keypad', 'featur', 'like', 'lock', 'button', 'keep', 'accident', 'dail', 'realli', 'sold', 'phone', 'camera', 'camera', 'fantast', 'screen', 'lock', 'hub', 'turn', 'back', 'i', 'phone', 'month', 'i', 'hope', 'not', 'becom', 'recur', 'problem'], ['love', 'nokia', 'everythini', 'look', 'good', 'price'], ['phone', 'work', 'great', 'recept', 'accept', 'price', 'ir', 'great', 'mixtur', 'touch', 'type', 'interest'], ['worth', 'prize', 'work', 'great'], ['excelent'], ['neat', 'effici', 'phone', 'i', 'extrem', 'satisfi'], ['awsom', 'basic', 'phone', 'useless', 'smartphon'], ['excel'], ['item', 'describ', 'deliv', 'schedul', 'work', 'expect', 'world', 'phone'], ['mother', 'love', 'phone', 'especi', 'design', 'touch', 'type', 'easi', 'carri', 'around', 'pocket', 'hassl', 'qualiti', 'touch', 'screen', 'not', 'high', 'definit', 'nokia', 'batteri', 'life', 'awesom', 'cours', 'recommend'], ['grandioso', 'funciona', 'perfectament', 'en', 'venezuela', 'levanta'], ['ecxel'], ['phone', 'good', 'problem', 'receiv', 'come', 'applic', 'viber', 'skype', 'also', 'not', 'send', 'voic', 'note', 'via', 'whatsapp', 'viber', 'think', 'issu', 'fabric'], ['work', 'great', 'night', 'stand', 'charger'], ['gorgeous', 'use', 'minus', 'one', 'star', 'cabl', 'cut', 'out', 'rout', 'need', 'littl', 'work'], ['perfect', 'charg', 'solut', 'devic', 'one', 'charg', 'issu', 'not', 'enough', 'cord', 'everythjng', 'messi', 'fall', 'nightstand', 'perfect', 'keep', 'everyth', 'neat', 'usb', 'port', 'short', 'cabl', 'need', 'charg', 'appl', 'devic'], ['good', 'product', 'love', 'purchas', 'watch', 'iphon', 'fit', 'perfect', 'usb', 'charger', 'also', 'work', 'great', 'not', 'problem'], ['devic', 'not', 'want', 'charg', 'sometim', 'often', 'forget', 'unplug', 'describ', 'love', 'sever', 'option', 'hour', 'choos', 'shut', 'help', 'especi', 'charg', 'smart', 'watch', 'shop', 'around', 'best', 'one', 'option', 'devic', 'not', 'sever', 'time', 'option', 'shut', 'far', 'good', 'time', 'would', 'recommend'], ['awesom', 'product', 'decent', 'price'], ['love', 'phone', 'good', 'valu'], ['often', 'network', 'connect', 'drop', 'alway', 'poor', 'not', 'sure', 'phone', 'common'], ['perfect'], ['overal', 'like', 'product', 'even', 'issu', 'devic', 'os', 'hung', 'open', 'switch', 'applic', 'need', 'reboot', 'phone', 'make', 'work', 'happen', 'price', 'gb', 'dual', 'sim', 'unlock', 'phone', 'found', 'better', 'samsung', 'galaxi', 'use', 'os', 'pay', 'high', 'price', 'less', 'configur'], ['good', 'econom', 'altern', 'work', 'well', 'android', 'good', 'samsung'], ['axon', 'mani', 'softwar', 'issu', 'kept', 'hit', 'power', 'button', 'end', 'send', 'back', 'oneplus', 'amaz', 'glad', 'decid', 'get'], ['best', 'phone', 'ever'], ['i', 'happi', 'servic', 'product'], ['xmas', 'gift', 'came', 'day', 'seller', 'promis', 'far', 'good', 'realli', 'look', 'forward', 'great', 'oneplus', 'one', 'phone'], ['one', 'best', 'phone', 'ever', 'well', 'built'], ['awesom', 'phone', 'deliv', 'describ', 'love'], ['awesom', 'phone', 'half', 'price', 'compar', 'samsung', 'whatev', 'phone', 'want', 'compar', 'nexus'], ['bes', 'phone', 'ever', 'offer', 'shlew', 'featur', 'amaz', 'camera', 'lowlight', 'perform', 'noth', 'fanci', 'display', 'fantast', 'also', 'tweak', 'set', 'satur', 'gave', 'fantast', 'contrast', 'phone', 'perfect', 'size', 'least', 'larg', 'hand', 'simpli', 'need', 'larger', 'devic', 'met', 'need', 'pc', 'gamer', 'love', 'option', 'custom', 'freedom', 'offer', 'much', 'realiti', 'love', 'ever', 'last', 'thing', 'phone', 'fast', 'fantast', 'batteri', 'life', 'lot', 'memori', 'well', 'ram', 'i', 'softwar', 'issu', 'sever', 'updat', 'far', 'deffin', 'well', 'taken', 'care', 'devic', 'sturdi', 'hefti', 'not', 'cinder', 'block', 'opinion', 'issu', 'ever'], ['final', 'work', 'phone', 'switch', 'nexus', 'beast', 'i', 'happi', 'switch', 'custom', 'allow', 'phone', 'price', 'includ', 'nice', 'unabl', 'purchas', 'oneplus', 'websit', 'pay', 'littl', 'worth', 'item', 'arriv', 'one', 'day', 'earlier', 'expect', 'alway', 'nice', 'love', 'oxygen', 'os', 'nice', 'miss', 'featur', 'hope', 'get', 'fix', 'soon', 'video', 'record', 'custom', 'lock', 'screen', 'profil', 'draw', 'circl', 'camera', 'doubl', 'tap', 'turn', 'receiv', 'phone', 'forc', 'root', 'devic', 'order', 'get', 'gps', 'work', 'not', 'work', 'box', 'root', 'work', 'gps', 'phone', 'function', 'better', 'nexus'], ['deliv', 'advertis', 'great', 'phone', 'hack', 'kali', 'nethunt', 'etc'], ['realli', 'one', 'best', 'phone', 'look', 'big', 'feel', 'normal', 'week', 'usag', 'back', 'love', 'recommend', 'everyon'], ['best', 'money'], ['poor', 'product'], ['grandson', 'love'], ['realli', 'like', 'size', 'function', 'phone', 'son', 'girlfriend', 'phone', 'problem', 'receiv', 'group', 'messag', 'text', 'pictur', 'larg', 'messag', 'size', 'group', 'messag', 'good', 'luck', 'figur', 'chang', 'nobodi', 'know', 'abl', 'get', 'featur', 'work', 'phone', 'otherwis', 'realli', 'like', 'phone', 'ridicul', 'miss', 'group', 'messag', 'pictur', 'text', 'not', 'download', 'function', 'phone', 'chang', 'messag', 'receiv', 'size'], ['great', 'fit', 'protect', 'camera', 'len', 'not', 'make', 'phone', 'look', 'far', 'origin', 'look', 'lip', 'around', 'screen', 'mean', 'also', 'protect', 'scratch', 'nice', 'made', 'made', 'china', 'chemic', 'smell', 'mani', 'sort', 'product', 'day', 'happi', 'would', 'buy'], ['not', 'buy', 'got', 'two', 'broken', 'ipod', 'bag', 'penni'], ['best', 'phone', 'price', 'rang'], ['got', 'hope', 'enjoy', 'new', 'phone', 'came', 'real', 'quick'], ['excel', 'fone', 'safe', 'sound', 'deliveri'], ['wors', 'phone', 'ever'], ['phone', 'slow', 'not', 'clear', 'enough', 'front', 'camera', 'not', 'bright'], ['not', 'lte', 'compat'], ['greatest', 'phone', 'ever'], ['fantast', 'valu', 'not', 'imagin', 'better', 'combin', 'hardwar', 'softwar', 'hundr', 'dollar', 'softwar', 'standard', 'android', 'almost', 'bloatwar', 'proprietari', 'app', 'naked', 'os', 'make', 'phonerun', 'fast', 'smooth', 'appar', 'bug', 'wise', 'flagship', 'calib', 'handset', 'quick', 'processor', 'plenti', 'ram', 'top', 'flight', 'camera', 'make', 'compar', 'popular', 'devic', 'market', 'screen', 'bright', 'fine', 'resolut', 'nice', 'pair', 'solid', 'audio', 'volum', 'qualiti', 'style', 'aluminum', 'high', 'qualiti', 'durabl', 'quit', 'tray', 'hold', 'sim', 'sd', 'card', 'less', 'intuit', 'somewhat', 'delic', 'not', 'real', 'hardwar', 'relat', 'caution', 'offer', 'aluminum', 'untextur', 'therefor', 'somewhat', 'slick', 'make', 'potenti', 'drop', 'hazzard', 'prone', 'problem'], ['phone', 'slow', 'not', 'clear', 'enough', 'front', 'camera', 'not', 'bright'], ['batteri', 'bad'], ['good'], ['love', 'phone', 'wish', 'knew', 'get', 'foreign', 'languag'], ['honest', 'like', 'phone'], ['excel', 'phone', 'super', 'fast', 'excel', 'finish', 'troubl', 'updat', 'lollipop'], ['nice', 'look', 'phone', 'size', 'want', 'everyth', 'look', 'great', 'price', 'good', 'true', 'usual', 'phone', 'never', 'connect', 'cell', 'manual', 'chines', 'call', 'probabl', 'six', 'custom', 'servic', 'number', 'none', 'custom', 'servic', 'us', 'lenovo', 'phone', 'tablet', 'laptop', 'ext'], ['work', 'great'], ['love', 'app', 'watch', 'chines', 'anyon', 'know', 'go', 'get', 'english', 'use', 'app', 'fullest', 'also', 'batteri', 'life', 'not', 'long', 'earlier', 'model'], ['describ'], ['love', 'watch', 'easi', 'set', 'love', 'price', 'order', 'coupl', 'chrstmas', 'gift'], ['debri', 'still', 'get', 'behind', 'screen'], ['geat', 'product', 'could', 'not', 'ask', 'stand', 'not', 'good', 'stand', 'lower', 'sorri', 'honesti'], ['excel', 'product'], ['took', 'forev', 'find', 'case', 'fit', 'rare', 'version', 'tablet', 'amaz'], ['great', 'price', 'need'], ['good', 'work', 'nice'], ['held', 'pretti', 'well', 'clumsi', 'year', 'old', 'actual', 'somehow', 'got', 'larg', 'scratch', 'screen', 'call', 'otterbox', 'send', 'pic', 'send', 'new', 'one', 'charg', 'great', 'custom', 'servic', 'would', 'get'], ['fit', 'perfect'], ['not', 'say', 'enough', 'good', 'thing', 'drop', 'tablet', 'mani', 'time', 'fine'], ['perfect', 'product', 'fast', 'send', 'receiv', 'price', 'verri', 'good'], ['nice', 'sleek', 'slim', 'durabl', 'even', 'come', 'kickstand'], ['excel', 'product', 'fast', 'ship', 'everyth', 'fulfil', 'expect'], ['great', 'price', 'great', 'case', 'great', 'job', 'protect', 'tablet'], ['great', 'product', 'save', 'tablet', 'break', 'much', 'drop'], ['provid', 'great', 'protect', 'tablet', 'allow', 'set', 'four', 'differ', 'way', 'read', 'accord', 'prefer'], ['otterbox', 'came', 'day', 'said', 'would', 'plus', 'arriv', 'otterbox', 'fit', 'samsung', 'note', 'perfect', 'glad', 'abl', 'purchas', 'item', 'sure', 'order', 'person'], ['great', 'protect', 'littl', 'heavi', 'worth', 'protect'], ['perfect', 'fit', 'like', 'alway', 'otterbox', 'fast', 'deleveri', 'thxss', 'holland', 'not', 'sell'], ['say', 'otterbox', 'case', 'surpass', 'standard', 'knowledg', 'ob', 'long', 'time', 'fan', 'ob', 'could', 'not', 'find', 'ob', 'tablet', 'sinc', 'limit', 'run', 'style', 'happen', 'amazon', 'case', 'not', 'protect', 'drop', 'escal', 'surviv', 'car', 'crash', 'fli', 'back', 'seat', 'front', 'windshield', 'thank', 'otterbox', 'protect', 'famili', 'memori'], ['describ'], ['exact', 'describ', 'excel', 'deliveri', 'easi', 'instal'], ['great', 'case', 'plastic', 'cover', 'screen', 'built', 'littl', 'bulki', 'compromis', 'make', 'protect', 'case', 'love', 'angl', 'view', 'solid', 'construct', 'superior', 'case', 'even', 'water', 'resist', 'great', 'product', 'protect', 'tablet', 'simpli', 'switch', 'color', 'like', 'got', 'white', 'tablet', 'later', 'regret', 'choic', 'love', 'case'], ['great', 'purchas', 'best', 'kind', 'hand', 'not', 'fit', 'tablet', 'though', 'lol', 'not', 'know', 'happen', 'real', 'talk'], ['product', 'protect', 'tablet', 'turn', 'save', 'money', 'cost', 'repair', 'drop'], ['fit', 'great', 'doubt', 'tablet', 'well', 'protect', 'bad', 'thing', 'hard', 'push', 'power', 'button', 'case', 'thick'], ['great'], ['good', 'job', 'put', 'right', 'product', 'box', 'got', 'could', 'custom', 'ask', 'thank'], ['glad', 'chose', 'get', 'otter', 'box', 'dynam', 'protector', 'could', 'not', 'see', 'use', 'anyth', 'els'], ['awesom', 'product', 'leather', 'case', 'feel', 'comfort', 'give', 'kid', 'need'], ['fitment', 'spot', 'use', 'tablet', 'day', 'drop', 'time', 'damag', 'case', 'tablet'], ['otterbox', 'good', 'qualiti', 'big', 'samsung', 'tablet', 'not', 'know'], ['purchas', 'spous', 'love'], ['bought', 'old', 'galazi', 'gave', 'proof', 'expect', 'sensit', 'tentat', 'reduc', 'though'], ['awesom', 'case', 'feel', 'extrem', 'protect', 'like', 'throw', 'tablet', 'brick', 'wall', 'add', 'quit', 'bit', 'weight', 'tablet', 'protect', 'valu', 'well', 'worth', 'cover', 'nice', 'keep', 'dust', 'nice', 'great', 'look', 'port', 'spot', 'hole', 'port', 'angl', 'believ', 'direct', 'sound', 'better', 'satisfi', 'otterbox', 'great', 'product'], ['love', 'got', 'huge', 'discount', 'galaxi', 'note', 'typic', 'otterbox', 'overkil', 'tablet', 'never', 'scratch'], ['absoult', 'love', 'keep', 'note', 'safe', 'sound', 'habit', 'drop', 'thing', 'worri'], ['product', 'great', 'add', 'layer', 'protect', 'tablet', 'need', 'not', 'water', 'proof', 'fine', 'get', 'littl', 'rain', 'walk', 'car', 'knew', 'order', 'case', 'still', 'star', 'side', 'alittl', 'heavi', 'protect', 'provid', 'worth'], ['case', 'not', 'case', 'need', 'need', 'case', 'samsung', 'galaxi', 'note', 'got', 'sent', 'product', 'tablet', 'not', 'fit', 'case'], ['right', 'case', 'happi', 'tgem', 'futur'], ['love'], ['bought', 'samsung', 'galaxi', 'note', 'model', 'got', 'small', 'cover', 'camera', 'hole', 'not', 'bottom', 'pen', 'come', 'wrong', 'describ', 'submit', 'return', 'hope', 'not', 'mislead', 'anyon', 'els'], ['great', 'protect', 'tablet', 'use', 'afghanistan'], ['make', 'feel', 'like', 'toss', 'around', 'surviv', 'ad', 'protect', 'come', 'ad', 'weight'], ['tough', 'well', 'fit', 'case', 'samsung', 'note'], ['love'], ['job', 'perfect'], ['screen', 'protector', 'scratch', 'within', 'day', 'though', 'would', 'phone', 'screen', 'without', 'love', 'otterbox', 'defend', 'seri', 'asmart', 'clumsi', 'worth'], ['one', 'best', 'well', 'made', 'phone', 'case', 'bought', 'year', 'love', 'color', 'first', 'pick', 'want', 'love', 'blue', 'want', 'inde', 'case', 'made', 'two', 'layer', 'inner', 'plastic', 'layer', 'cover', 'phone', 'rubber', 'outer', 'layer', 'cushion', 'phone', 'drop', 'top', 'went', 'step', 'beyond', 'actual', 'built', 'screen', 'protector', 'liter', 'built', 'right', 'plastic', 'layer', 'case', 'amaz', 'also', 'rubber', 'outer', 'key', 'volum', 'power', 'plug', 'headset', 'jack', 'plug', 'charger', 'port', 'galaxi', 'alreadi', 'built', 'charger', 'plug', 'sinc', 'phone', 'suppos', 'water', 'resist', 'also', 'receiv', 'nice', 'clip', 'holster', 'phone', 'either', 'cover', 'face', 'phone', 'clip', 'back', 'phone', 'great', 'well', 'made', 'product', 'around', 'otterbox', 'king', 'cell', 'phone', 'case', 'learn', 'throughout', 'year', 'pretti', 'nice', 'pretti', 'not', 'protect', 'much', 'damag', 'chose', 'otterbox', 'want', 'save', 'phone', 'keep', 'go', 'strong', 'next', 'two', 'year', 'even', 'case', 'thick', 'bulki', 'know', 'phone', 'well', 'protect', 'not', 'like', 'way', 'phone', 'felt', 'without', 'case', 'felt', 'thin', 'cradl', 'phone', 'babi', 'day', 'case', 'arriv'], ['awesom', 'case', 'excit', 'abl', 'get', 'afford', 'otterbox', 'case'], ['previous', 'otterbox', 'older', 'phone', 'protect', 'well', 'outer', 'coat', 'most', 'hard', 'plastic', 'sinc', 'wear', 'scrub', 'time', 'old', 'phone', 'would', 'fall', 'pocket', 'constant', 'otterbox', 'outer', 'softer', 'plastic', 'prevent', 'slip', 'pocket', 'give', 'good', 'grip', 'surfac', 'problem', 'see', 'case', 'kind', 'difficult', 'take', 'apart', 'need', 'clean', 'screen', 'protector', 'open', 'fingerprint', 'scanner', 'allow', 'pocket', 'lint', 'dirt', 'work', 'way', 'underneath', 'inadvert', 'make', 'phone', 'look', 'littl', 'gross', 'time', 'come', 'option', 'clip', 'case', 'not', 'end', 'use'], ['awesom', 'cover', 'exact', 'describ', 'built', 'screen', 'cover', 'definit', 'plus', 'pleas', 'cover', 'recommend', 'everybodi', 'packag', 'awesom', 'well'], ['cover', 'fine', 'return', 'refib', 'phone', 'cheap', 'horribl'], ['next', 'day', 'deliv', 'great'], ['wonder', 'product'], ['expect'], ['gift'], ['alway', 'great', 'qualiti'], ['bought', 'case', 'parent', 'love', 'first', 'month', 'outer', 'rubber', 'began', 'get', 'loos', 'power', 'volum', 'button', 'not', 'make', 'proper', 'contact', 'press', 'button', 'would', 'not', 'recommend', 'model', 'otterbox', 'commut', 'model', 'like', 'one', 'much', 'better'], ['exact', 'look', 'phone', 'white', 'match', 'perfect'], ['replac', 'took', 'almost', 'year', 'abus', 'one', 'alreadi', 'show', 'loos', 'otter', 'box', 'sent', 'new', 'one', 'wait', 'one', 'fall', 'apart'], ['absolut', 'love', 'case', 'thank', 'bit', 'klutz', 'life', 'saver', 'support', 'wound', 'warrior', 'project', 'made', 'great', 'product', 'even', 'better'], ['fast', 'ship', 'great', 'phone', 'case'], ['horribl', 'plastic', 'get', 'dirti', 'even', 'soft', 'scrub', 'could', 'not', 'get', 'clean'], ['great', 'fir', 'yr', 'old'], ['clunki', 'work'], ['get', 'stain', 'bit', 'definit', 'protect', 'phone', 'care'], ['case', 'not', 'even', 'fit', 'correct', 'phone', 'tab', 'press', 'one', 'volum', 'button', 'return'], ['nice'], ['good', 'price', 'fast', 'deliveri'], ['daughter', 'love'], ['product', 'expect', 'arriv', 'quick'], ['appl', 'defebd', 'warn', 'first', 'place', 'total', 'fake', 'threw', 'away', 'displeas'], ['interf', 'abil', 'type', 'text', 'messag'], ['i', 'own', 'mani', 'differ', 'brand', 'style', 'iphon', 'case', 'one', 'best', 'look', 'protect', 'phone', 'otterbox', 'defend', 'far', 'best', 'choic', 'i', 'drop', 'phone', 'asphalt', 'concret', 'granit', 'feet', 'ground', 'never', 'even', 'scratch', 'case', 'give', 'comfort', 'invest', 'protect', 'case', 'steal'], ['perfect'], ['good', 'protect'], ['perfect'], ['power', 'volum', 'button', 'stiff', 'also', 'hard', 'type', 'via', 'screen', 'protector', 'sticki', 'right', 'good', 'sturdi', 'case', 'line'], ['great', 'product', 'boyfriend', 'work', 'job', 'easi', 'damag', 'phone', 'case', 'allow', 'iphon', 'sustain', 'fair', 'share', 'danger', 'fall'], ['awesom', 'case'], ['excel', 'fit', 'iphon'], ['much', 'i', 'drop', 'phone', 'probabl', 'time', 'butter', 'finger', 'month', 'use', 'outer', 'soft', 'start', 'peel', 'not', 'waterproof', 'case', 'anyon', 'thought'], ['great', 'case', 'perfect', 'condit'], ['bought', 'case', 'not', 'fact', 'strength', 'otterbox', 'name', 'color', 'outstand', 'took', 'star', 'plastic', 'bottom', 'quit', 'sharp', 'alway', 'put', 'pinki', 'type', 'thing', 'outer', 'rubber', 'bubbl', 'top', 'littl', 'unattract'], ['love', 'otterbox', 'defend', 'seri', 'cell', 'phone', 'case', 'purchas', 'otterbox', 'defend', 'everi', 'cell', 'phone', 'recommend', 'one', 'everyon', 'know', 'case', 'live', 'claim', 'easi', 'put', 'look', 'great', 'best', 'part', 'protect', 'cell', 'phone', 'well', 'drop', 'phone', 'concret', 'ground', 'distanc', 'feet', 'land', 'right', 'corner', 'phone', 'vulner', 'spot', 'phone', 'bounc', 'screen', 'crack', 'everyth', 'work', 'great', 'trust', 'case', 'much', 'longer', 'take', 'time', 'research', 'case', 'see', 'would', 'compar', 'automat', 'buy', 'otterbox', 'defend', 'recent', 'purchas', 'samsung', 'galaxi', 'look', 'otterbox', 'case', 'style', 'commut', 'seri', 'etc', 'decid', 'defend', 'still', 'provid', 'best', 'protect', 'three', 'layer', 'protect', 'includ', 'screen', 'cover', 'feel', 'still', 'fit', 'purs', 'nice', 'back', 'pocket', 'even', 'though', 'larger', 'phone'], ['slight', 'bulki', 'holder', 'best', 'protect', 'phone'], ['happi', 'otter', 'case', 'would', 'definit', 'tell', 'friend', 'famili', 'buy', 'one'], ['purchas', 'pink', 'camo', 'love', 'boy', 'orang', 'black', 'case', 'want', 'us', 'match', 'love', 'case', 'look', 'good', 'protect', 'want'], ['final', 'go', 'bullet', 'proof', 'phone', 'protect', 'spent', 'repair', 'old', 'one', 'not', 'drop', 'crack', 'comfort', 'hand', 'glad', 'bought', 'expens', 'other', 'save', 'well', 'worth'], ['good', 'galaxi', 'well', 'protect'], ['not', 'first', 'not', 'last', 'good', 'qualiti', 'product'], ['not', 'beat'], ['love', 'great', 'proctect'], ['littl', 'expens', 'side', 'not', 'buy', 'new', 'lcd', 'anoth', 'cheap', 'version', 'tri', 'save', 'money', 'glass', 'crack', 'foot', 'drop', 'not', 'one', 'love'], ['outter', 'box', 'great'], ['great', 'product'], ['sturdi', 'not', 'need', 'buy', 'screen', 'protector', 'built', 'love', 'design'], ['love', 'work', 'everi', 'good'], ['case', 'almost', 'year', 'drop', 'probabl', 'twice', 'day', 'screen', 'still', 'look', 'bran', 'new'], ['ottrbox', 'defend', 'phone', 'case', 'expect'], ['come', 'pretti', 'larg', 'box', 'otterbox', 'describ'], ['broke', 'less', 'week'], ['like', 'use', 'everi', 'day', 'protect', 'phone', 'fall'], ['pro', 'duct', 'advertis'], ['great', 'case'], ['great', 'job', 'protect', 'phone', 'pretti', 'bulki', 'use', 'case', 'work', 'use', 'thinner', 'case', 'weekend', 'fit', 'pocket', 'better'], ['end', 'new', 'activ', 'screen', 'began', 'act', 'final', 'got', 'point', 'could', 'not', 'enjoy', 'pic', 'alreadi', 'store', 'phone', 'took', 'quit', 'get', 'old', 'activ', 'set', 'way', 'want', 'includ', 'wireless', 'charg', 'bought', 'samsung', 'wireless', 'charg', 'cover', 'along', 'new', 'camo', 'otterbox', 'time', 'sinc', 'old', 'ob', 'would', 'not', 'fit', 'new', 'wireless', 'charg', 'cover', 'instal', 'began', 'instal', 'otterbox', 'could', 'not', 'get', 'otterbox', 'snap', 'close', 'plus', 'late', 'even', 'tire', 'confus', 'would', 'not', 'close', 'know', 'mean', 'thought', 'perhap', 'got', 'wrong', 'one', 'sinc', 'issu', 'activ', 'hit', 'old', 'activ', 'never', 'avail', 'wireless', 'charg', 'cover', 'follow', 'youtub', 'video', 'make', 'instal', 'wireless', 'charg', 'compar', 'factori', 'one', 'oem', 'tad', 'thicker', 'not', 'abl', 'instal', 'otterbox', 'afraid', 'either', 'break', 'new', 'phone', 'otterbox', 'get', 'case', 'snap', 'close', 'realli', 'put', 'lot', 'pressur', 'case', 'tri', 'get', 'close', 'gave', 'remov', 'charg', 'cover', 'bingo', 'went', 'togeth', 'like', 'suppos', 'ob', 'look', 'great', 'phone', 'doubt', 'protect', 'yrs', 'sure', 'deal', 'ob', 'samsung', 'wireless', 'charg', 'cover'], ['work', 'great', 'need'], ['nice', 'case', 'protect', 'phone'], ['thank', 'daughter', 'love'], ['save', 'life'], ['honest', 'expect', 'cheap', 'china', 'knock', 'price', 'pleasant', 'surpris', 'product', 'receiv', 'great', 'solid', 'protect', 'phone', 'well', 'last', 'one', 'thank', 'great', 'deal', 'buy'], ['super', 'protect', 'ran', 'phone', 'lawnmow', 'thank', 'case', 'could', 'not', 'even', 'find', 'scratch', 'cover', 'fine', 'make', 'phone', 'littl', 'bulki', 'worth', 'protect', 'wish', 'came', 'fun', 'print'], ['perfect'], ['much', 'brighter', 'pink', 'expect', 'love'], ['second', 'case', 'i', 'drop', 'phone', 'numer', 'time', 'case', 'phone', 'perfect', 'work', 'order'], ['amaz', 'product', 'save', 'phone', 'fall', 'slam', 'trunk', 'lid'], ['like', 'case'], ['otterbox', 'fit', 'phone', 'perfect', 'durabl', 'color', 'true', 'color', 'site', 'i', 'satisfi'], ['item', 'perfect', 'damag', 'sever', 'phone', 'case', 'case', 'phone', 'surviv'], ['say', 'otterbox', 'qualiti', 'product', 'say', 'bought', 'wife', 'realli', 'tough', 'case', 'case', 'realli', 'seem', 'benchmark', 'keep', 'expens', 'cell', 'phone', 'safe', 'buy', 'phone', 'satisfi'], ['i', 'sure', 'excel', 'case', 'wrong', 'size', 'order'], ['good', 'phone', 'case'], ['love', 'otter', 'box', 'defend', 'seri', 'i', 'use', 'year', 'love', 'job'], ['otterbox', 'enough', 'said'], ['great', 'cover'], ['seen', 'arriv', 'earli', 'fit', 'realli', 'well'], ['got', 'wife', 'phone', 'previous', 'phone', 'crack', 'screen', 'knock', 'back', 'couch', 'chair', 'sever', 'time', 'not', 'not', 'put', 'back', 'couch', 'chair', 'yeah', 'convers', 'figur', 'went', 'case', 'realli', 'bit', 'bulki', 'tast', 'realli', 'like', 'keep', 'phone', 'break', 'far', 'good', 'i', 'happi'], ['great', 'fit'], ['daughter', 'love', 'case', 'color'], ['love', 'alreadi', 'save', 'phone', 'hard', 'drop'], ['love', 'case', 'bit', 'bulki', 'normal', 'otterbox', 'case', 'far', 'protect', 'phone', 'month', 'old', 'wrath', 'expect'], ['love', 'color'], ['would', 'like', 'option', 'replac', 'plexiglass', 'cover', 'eventu', 'get', 'scratch'], [], ['seem', 'sturdi', 'cute'], ['e', 'use', 'g', 'month', 'love', 'best', 'otterbox', 'defend', 'i', 'i', 'not', 'sure', 'one', 'work', 'better', 'button', 'work', 'much', 'better', 'way', 'cuter', 'previous', 'one'], ['great', 'protect', 'case', 'could', 'not', 'phone', 'without', 'one', 'love', 'color', 'combo'], ['excel'], ['upgrad', 'phone', 'previous', 'own', 'defend', 'found', 'big', 'bulki', 'origin', 'order', 'return', 'next', 'day', 'come', 'sticker', 'screen', 'near', 'imposs', 'get', 'bubbl', 'not', 'seem', 'like', 'much', 'protect', 'order', 'defend', 'pleas', 'see', 'come', 'along', 'way', 'giant', 'rubber', 'corner', 'much', 'sleek', 'old', 'defend', 'yet', 'still', 'screen', 'protector', 'fit', 'frame', 'phone', 'still', 'easi', 'oper', 'screen', 'problem', 'oper', 'button', 'use', 'etc', 'holster', 'not', 'use', 'big', 'heavi', 'bulki', 'see', 'might', 'want', 'use', 'one', 'work', 'not', 'need', 'recommend', 'commut', 'not', 'much', 'bigger', 'seri', 'much', 'better', 'protect', 'not', 'much', 'price', 'differ', 'either', 'although', 'ridicul', 'price', 'differ', 'among', 'differ', 'color', 'larg'], ['anoth', 'great', 'otterbox', 'product', 'arriv', 'prompt', 'exact', 'wife', 'want'], ['snug', 'fit', 'job', 'back', 'slick', 'though', 'without', 'much', 'grip'], ['noth', 'like', 'otterbox', 'defend', 'protect', 'phone'], ['great'], ['love', 'ador'], ['perfect'], ['like', 'case', 'case', 'make', 'phone', 'feel', 'protect'], ['work', 'great'], ['work', 'great', 'love', 'otterbox'], ['work', 'great', 'love', 'otterbox'], ['perfect'], ['sturdi', 'nice', 'look', 'hard', 'assembl'], ['case', 'fit', 'phone', 'perfect', 'love', 'polka', 'dot'], ['good'], ['absolut', 'wonder', 'perfect', 'condit', 'mani', 'drop'], ['like', 'case', 'case', 'make', 'phone', 'feel', 'protect'], ['great'], ['otter', 'box', 'live', 'durabl', 'time', 'actual', 'person', 'accident', 'test'], ['love'], ['sturdi', 'case'], ['good'], ['love', 'case'], ['like', 'everyth', 'except', 'two', 'card', 'much', 'fit', 'back', 'even', 'without', 'mirror', 'made', 'cardboard', 'cover', 'attract', 'fit', 'cell', 'phone', 'nice'], ['second', 'toru', 'chose', 'gold', 'black', 'time', 'love', 'first', 'one', 'two', 'year', 'would', 'still', 'go', 'strong', 'not', 'kid', 'careless', 'open', 'card', 'holder', 'debit', 'card', 'drop', 'phone', 'time', 'like', 'admit', 'phone', 'protect', 'not', 'problem', 'not', 'bulki', 'otter', 'box', 'use', 'first', 'got', 'phone', 'carri', 'licens', 'debit', 'card', 'time', 'purs'], ['exact', 'want', 'not', 'believ', 'amaz', 'price', 'real', 'otter', 'box'], ['love', 'realli', 'protect', 'phone'], ['broke', 'today', 'not', 'last', 'month'], ['love', 'case', 'fit', 'card', 'perfect', 'chose', 'take', 'mirror', 'use', 'id', 'cc', 'never', 'lose', 'never', 'take', 'ten', 'minut', 'figur', 'run', 'back', 'hous', 'forgot', 'alway'], ['great', 'case'], ['not', 'larg', 'like', 'other', 'i', 'seen', 'fit', 'well', 'pocket', 'bag', 'would', 'recommend', 'anyon', 'look', 'someth', 'not', 'bulki'], ['love', 'happi', 'woman', 'purchas'], ['realli', 'like', 'sleek', 'design', 'case', 'reason', 'give', 'instead', 'star', 'card', 'section', 'noth', 'secur', 'card', 'open', 'twinc', 'card', 'fall', 'would', 'nice', 'small', 'tab', 'keep', 'slip', 'easili', 'would', 'still', 'recommend', 'friend', 'would', 'advis', 'care', 'open', 'back'], ['good', 'look', 'case', 'even', 'come', 'mirror', 'insid', 'hide', 'card', 'carri', 'safer'], ['headphon', 'plug', 'not', 'fit', 'pretti', 'standard', 'case', 'type', 'not', 'slick', 'rubberi', 'good', 'feel', 'easi', 'grip', 'read', 'lot', 'review', 'differ', 'case', 'pick', 'one', 'glad', 'get', 'compliment', 'frequent', 'small', 'storag', 'perfect', 'fit', 'need', 'usual', 'need', 'id', 'emboss', 'debit', 'card', 'work', 'great', 'storag', 'door', 'sturdi', 'easi', 'snap', 'open', 'close', 'not', 'easi', 'never', 'open', 'accident', 'also', 'show', 'sign', 'wear', 'get', 'loos', 'around', 'hing', 'though', 'use', 'constant', 'hard', 'tell', 'storag', 'type', 'case', 'good', 'not', 'abl', 'still', 'fit', 'pocket', 'also', 'not', 'invit', 'thiev', 'mom', 'phone', 'brazen', 'stolen', 'probabl', 'big', 'motiv', 'easi', 'identifi', 'otter', 'box', 'storag', 'case', 'held', 'promis', 'cash', 'year', 'updat', 'still', 'go', 'strong', 'hing', 'door', 'still', 'sturdi', 'never', 'open', 'accid', 'use', 'sever', 'time', 'day', 'case', 'still', 'look', 'good', 'wear', 'scratch', 'perfect', 'work', 'condit', 'case', 'may', 'outlast', 'phone', 'way', 'year', 'later', 'use', 'case', 'new', 'plus', 'kid', 'complaint', 'case', 'suppos', 'not', 'fit', 'swear', 'seem', 'like', 'actual', 'tight'], ['bought', 'case', 'daughter', 'like', 'case', 'hard', 'get', 'teenag', 'girl', 'like', 'case', 'like', 'one', 'case', 'protect', 'phone', 'well', 'would', 'continu', 'buy', 'otterbox', 'case'], ['fit', 'great', 'love', 'color', 'card', 'holder', 'fit', 'card', 'plus', 'driver', 'licens', 'hold', 'well', 'far'], ['item', 'not', 'good', 'pictur', 'could', 'bare', 'fit', 'card'], ['work', 'good', 'littl', 'small'], ['real', 'side', 'product', 'limit', 'space', 'card', 'id', 'debit', 'card', 'bare', 'fit', 'fall', 'easili', 'open'], ['like', 'lot'], ['sturdi', 'easi', 'take', 'plenti', 'color', 'choos'], ['good', 'qualiti', 'good', 'deal', 'would', 'like', 'recommend', 'everi', 'one'], ['fit', 'card', 'i', 'week', 'alreadi', 'damag', 'littl', 'handl', 'open', 'case', 'gotten', 'wear', 'tear', 'probabl', 'acryl', 'nail', 'case', 'not', 'disturb', 'charger', 'head', 'phone', 'camera', 'flash', 'great'], ['love', 'case', 'much'], ['descript', 'say', 'hold', 'credit', 'card', 'case', 'bulg', 'case', 'fit', 'comfort', 'not', 'worri', 'case', 'pop', 'open', 'drop', 'card'], ['great', 'qualiti', 'great', 'case'], ['great', 'product'], ['cool', 'lot', 'room', 'fit', 'nice', 'protect', 'iphon', 'well', 'solid', 'product'], ['horribl', 'broke', 'within', 'first', 'day', 'use', 'super', 'cheap'], ['product', 'stink', 'broke', 'way', 'quick'], ['cool', 'case', 'broke', 'week', 'still', 'sort', 'use'], ['honest', 'pretti', 'good', 'case', 'expect', 'card', 'holder', 'kind', 'janki', 'unreli', 'far', 'i', 'drope', 'thing', 'like', 'hundr', 'time', 'still', 'hold'], ['still', 'function', 'broke', 'piec', 'drop', 'phone', 'phone', 'not', 'harm'], ['outsid', 'take', 'day', 'prime', 'elig', 'product', 'great'], ['great', 'product'], ['nice', 'profession', 'look', 'case'], ['case', 'not', 'big', 'pretti', 'slim', 'fit', 'two', 'card', 'mirror', 'snap', 'close', 'well', 'chanc', 'pop', 'i', 'drop', 'phone', 'twice', 'case', 'damag', 'great', 'case', 'recommend'], ['fit', 'one', 'card'], ['absolut', 'love', 'phone', 'case', 'not', 'cute', 'hold', 'card', 'perfect', 'three', 'card', 'fit', 'well', 'four', 'fit', 'sometim', 'realli', 'nice', 'alway', 'id', 'credit', 'card', 'not', 'alway', 'want', 'take', 'purs', 'great', 'high', 'recommend'], ['not', 'good', 'case', 'not', 'sturdi', 'felt', 'like', 'would', 'break', 'littl', 'use', 'glad', 'could', 'return'], ['great', 'color', 'great', 'case', 'like', 'anoth', 'person', 'said', 'work', 'card', 'work', 'better', 'either', 'way', 'best', 'wallet', 'iphon', 'case', 'follow', 'build'], ['hold', 'card', 'work', 'better', 'card', 'awesom', 'case'], ['good', 'purchas', 'happi', 'case'], ['pretti', 'poor', 'thought', 'execut', 'slot', 'id', 'slide', 'insid', 'door', 'prong', 'hold', 'small', 'not', 'seem', 'like', 'big', 'deal', 'make', 'id', 'card', 'bend', 'bulg', 'make', 'imposs', 'realli', 'fit', 'card', 'without', 'push', 'edg', 'phone', 'front', 'case', 'lose', 'lose', 'like', 'carri', 'debit', 'credit', 'id', 'anoth', 'issu', 'open', 'door', 'edg', 'card', 'catch', 'edg', 'soft', 'rubberi', 'card', 'compart', 'make', 'door', 'close', 'make', 'loud', 'click', 'final', 'door', 'not', 'open', 'degre', 'claim', 'use', 'kickstand', 'pretti', 'flimsi', 'not', 'open', 'way', 'make', 'difficult', 'get', 'card'], ['fabul', 'use', 'practic', 'protect', 'iphon', 'back', 'door', 'credit', 'card', 'close', 'secur', 'grab', 'phone', 'car', 'key', 'done', 'everyth', 'togeth', 'also', 'come', 'separ', 'mirror', 'want', 'use', 'littl', 'door', 'not', 'choic', 'color', 'electr', 'blue'], ['great', 'qualiti'], ['week', 'nice', 'sturdi', 'went', 'lifeproof', 'case', 'realli', 'not', 'want', 'spend', 'great', 'price', 'deliv', 'quick', 'free'], ['love', 'case', 'bc', 'holder', 'color'], ['bought', 'year', 'old', 'daughter', 'love', 'credit', 'card', 'case', 'big', 'enough', 'carri', 'licens', 'money', 'not', 'want', 'bring', 'purs', 'realli', 'function', 'nice', 'look'], ['love'], ['good', 'product', 'like', 'descript', 'recommend'], ['love', 'put', 'id', 'credit', 'card', 'etc', 'back', 'easi', 'go', 'go', 'gym'], ['not', 'not', 'worth', 'case', 'broke', 'less', 'month'], ['got', 'case', 'fit', 'phone', 'great', 'hold', 'id', 'card', 'pretti', 'hard', 'slide', 'id', 'slot', 'i', 'sure', 'would', 'not', 'abl', 'take', 'fast', 'need', 'wish', 'came', 'littl', 'edg', 'phone', 'feel', 'like', 'could', 'pop', 'phone', 'easi', 'drop', 'wrong', 'screen', 'could', 'hit', 'break'], ['realli', 'love', 'case', 'wallet', 'kind', 'hard', 'open', 'differ', 'wallet', 'case', 'open', 'easili', 'prefer', 'color', 'bright', 'vibrant', 'look', 'seem', 'like', 'protect', 'phone', 'well'], ['yes'], ['love', 'happi', 'woman', 'purchas'], ['great', 'way', 'peopl', 'keep', 'card', 'phone', 'togeth', 'not', 'seem', 'like', 'sturdi', 'purchas', 'two', 'love', 'idea'], ['say', 'would', 'fit', 'iphon', 'not'], ['amaz', 'omg', 'protect', 'drop', 'iphon', 'i', 'not', 'even', 'worri'], ['fit', 'card'], ['cheap', 'design', 'not', 'take', 'much', 'break'], ['wore', 'fast'], ['product', 'great', 'howev', 'blue', 'red', 'actual', 'dark', 'purpl', 'pink', 'not', 'exact', 'grandson', 'mind', 'howev', 'seahawk', 'one', 'bought', 'arriv', 'next', 'day', 'soo', 'thrill'], ['awesom'], ['receiv', 'case', 'bit', 'apprehens', 'order', 'read', 'review', 'exact', 'state', 'fit', 'perfect', 'would', 'definit', 'recommend', 'product'], ['excel'], ['great', 'thank', 'need', 'easi', 'purchas'], ['return', 'due', 'problem', 'phone', 'great', 'product', 'price', 'like', 'hot', 'pink', 'lol'], ['love', 'pink', 'otter', 'box', 'order', 'saturday', 'got', 'wedsday', 'happi'], ['break', 'phone', 'screen', 'twice', 'week', 'time', 'proper', 'protect', 'work', 'like', 'charm', 'well', 'got'], ['alway', 'put', 'otter', 'box', 'phone', 'work', 'great', 'not', 'worri', 'phone', 'drop'], ['great', 'qualiti', 'great', 'realli', 'true', 'otterbox', 'not', 'sure', 'go', 'deal', 'price', 'usual', 'run', 'pleasant', 'surpris', 'receiv', 'case', 'great', 'qualiti', 'look', 'great'], ['say', 'wow', 'skeptic', 'would', 'authent', 'otterbox', 'cover', 'screen', 'protect'], ['love', 'case'], ['fit', 'perfect'], ['great', 'case', 'fast', 'deliveri'], ['qualiti', 'seem', 'sturdi', 'color', 'true', 'photo', 'believ', 'made', 'best', 'select', 'protect', 'samsung', 'galaxi', 'phone'], ['son', 'gift', 'wife', 'mini', 'die', 'receiv', 'iphon', 'bday', 'exist', 'defend', 'case', 'stretch', 'one', 'deck', 'purpl', 'pink', 'wife', 'love', 'seem', 'better', 'fit', 'prior', 'case', 'well', 'worth', 'note', 'phone', 'came', 'old', 'case', 'perfect', 'condit', 'year', 'hard', 'abus', 'kid'], ['feel', 'secur', 'look', 'great', 'less', 'bulki', 'anticip', 'minus', 'clip', 'marin', 'color', 'scheme', 'realli', 'stand', 'lot', 'standard', 'black'], ['fast', 'ship', 'great', 'item', 'describ'], ['good', 'product', 'work', 'great'], ['definit', 'match', 'expect', 'worri', 'phone', 'know', 'phone', 'well', 'protect'], ['love'], ['first', 'one', 'fell', 'apart', 'within', 'five', 'minut', 'replac', 'one', 'also', 'rip', 'even', 'put', 'phone', 'order', 'real', 'otterbox', 'amazon', 'great'], ['great', 'phone', 'case', 'love', 'screen', 'protect'], ['good', 'phone', 'slipperi', 'i', 'clumsi', 'afraid', 'would', 'drop', 'crack', 'screen', 'not', 'worri', 'sinc', 'got', 'bulk', 'phone', 'well', 'worth', 'price', 'like', 'screen', 'protector', 'not', 'case', 'protector'], ['ideal', 'mom', 'gf', 'wife', 'etc'], ['perfect', 'exact', 'want', 'got'], ['receiv', 'expect'], ['color', 'much', 'brighter', 'person', 'photo', 'bright', 'hot', 'pink', 'not', 'expect', 'great', 'qualiti', 'case'], ['satisfi'], ['great', 'case'], ['perfect'], ['break', 'phone', 'screen', 'twice', 'week', 'time', 'proper', 'protect', 'work', 'like', 'charm', 'well', 'got'], ['fit', 'perfect'], ['great', 'love', 'case'], ['great', 'color', 'advertis', 'love'], ['two', 'year', 'go', 'strong', 'ran', 'phone', 'fire', 'truck', 'crack', 'screen', 'phone', 'still', 'work', 'amaz'], ['purchas', 'replac', 'three', 'year', 'old', 'otterbox', 'first', 'not', 'sure', 'would', 'like', 'purpl', 'pink', 'color', 'happi'], ['great'], ['want', 'protect', 'phone', 'bounc', 'pocket', 'ride', 'bike', 'street', 'case'], ['came', 'exact', 'expect', 'great', 'condit'], ['fit', 'perfect'], ['love', 'best', 'phone', 'case', 'i', 'ever', 'bought'], ['good', 'phone', 'slipperi', 'i', 'clumsi', 'afraid', 'would', 'drop', 'crack', 'screen', 'not', 'worri', 'sinc', 'got', 'bulk', 'phone', 'well', 'worth', 'price', 'like', 'screen', 'protector', 'not', 'case', 'protector'], ['awesom', 'great', 'color', 'love', 'neon', 'pink', 'get', 'lot', 'compliment'], ['commut', 'seri', 'toddler', 'not', 'enough', 'upgrad', 'defend', 'seri', 'best', 'decis'], ['amaz', 'product'], ['replac', 'case', 'old', 'ob', 'case', 'fit', 'phone', 'great', 'protect', 'well', 'belt', 'clip', 'wast', 'make', 'alreadi', 'bulki', 'item', 'one', 'wife', 'son', 'phone', 'sit', 'around', 'hous', 'take', 'space', 'far', 'protect', 'long', 'water', 'not', 'major', 'concern', 'great', 'case', 'not', 'waterproof', 'way'], ['great', 'product', 'fast', 'ship'], ['hard', 'open', 'part', 'plug', 'turn', 'ringer'], ['good', 'solid', 'case', 'built', 'screen', 'protector', 'easier', 'stick', 'on', 'love', 'yellow', 'loos', 'phone', 'lot', 'yellow', 'easi', 'spot', 'great', 'want', 'resel', 'phone', 'later', 'protect', 'flap', 'negat', 'tend', 'get', 'snag', 'rip', 'overal', 'got', 'great', 'case', 'hold'], ['otter', 'box', 'necess', 'phone', 'not', 'want', 'buy', 'insur', 'i', 'drop', 'phone', 'lot', 'crack', 'screen', 'scratch', 'still', 'work', 'like', 'new'], ['husband', 'bought', 'case', 'cheapest', 'otterbox', 'howev', 'not', 'made', 'cheapli', 'normal', 'otterbox', 'materi', 'fit', 'phone', 'perfect'], ['great', 'case'], ['son', 'love', 'case', 'drop', 'phone', 'mani', 'time', 'varga', 'liter', 'save', 'phone', 'life', 'not', 'need', 'extend', 'warranti', 'insur', 'plan', 'case', 'also', 'fast', 'deliveri'], ['great', 'product', 'fit', 'perfect'], ['perfect', 'fit', 'keep', 'everyth'], ['otter', 'box', 'ipod', 'touch', 'three', 'year', 'never', 'got', 'physic', 'damag', 'fall', 'got', 'iphon', 'se', 'made', 'sure', 'got', 'otter', 'box', 'pick', 'one', 'cheaper', 'other', 'color', 'end', 'like', 'color', 'match', 'colleg', 'color', 'alreadi', 'drop', 'four', 'five', 'feet', 'rang', 'four', 'time', 'cement', 'linoleum', 'floor', 'phone', 'damag', 'occasion', 'moistur', 'enter', 'built', 'protect', 'screen', 'via', 'open', 'home', 'button', 'take', 'cell', 'use', 'glass', 'clean', 'cloth', 'cell', 'screen', 'case', 'screen', 'work', 'great', 'especi', 'price'], ['genuin', 'otterbox', 'case', 'excel', 'product', 'price', 'high', 'recommend'], ['qualiti', 'price', 'case', 'excel', 'son', 'like', 'color', 'shop', 'amazon', 'great'], ['say', 'otter', 'speak', 'not', 'first', 'one', 'reason', 'use'], ['great', 'deal', 'great', 'product', 'satisfi'], ['otterbox', 'case', 'second', 'defend', 'case', 'not', 'say', 'enough', 'good', 'thing', 'sold', 'case', 'fact', 'left', 'phone', 'roof', 'car', 'got', 'mph', 'heard', 'phone', 'fli', 'roof', 'onto', 'pavement', 'luckili', 'phone', 'bounc', 'shoulder', 'road', 'howev', 'phone', 'unscath', 'otterbox', 'defend', 'save', 'phone', 'would', 'high', 'recommend'], ['work', 'great'], ['work', 'well'], ['bought', 'son', 'first', 'phone', 'pleas'], [], ['durabl'], ['great', 'case', 'dust', 'get', 'underneath', 'protector', 'via', 'fingerprint', 'hole', 'drop', 'phone', 'concret', 'corner', 'phone', 'not', 'case', 'would', 'crack'], ['purchas', 'cover', 'amazon', 'price', 'realli', 'good', 'inner', 'cover', 'outer', 'cover', 'screen', 'protector', 'attach', 'top', 'section', 'inner', 'cover', 'bubbl', 'worri', 'like', 'stick', 'plastic', 'type', 'belt', 'clip', 'includ', 'day', 'cover', 'job', 'recommend', 'otterbox', 'make', 'car', 'mount', 'attach', 'phone', 'case'], ['husband', 'choic', 'iphon', 'case', 'seem', 'happi', 'one', 'previous', 'version', 'firefight', 'need', 'someth', 'realli', 'tough', 'protect', 'phone', 'holster', 'also', 'work', 'great'], ['exact', 'need', 'place', 'great', 'deal', 'one'], [], ['replac', 'case', 'old', 'ob', 'case', 'fit', 'phone', 'great', 'protect', 'well', 'belt', 'clip', 'wast', 'make', 'alreadi', 'bulki', 'item', 'one', 'wife', 'son', 'phone', 'sit', 'around', 'hous', 'take', 'space', 'far', 'protect', 'long', 'water', 'not', 'major', 'concern', 'great', 'case', 'not', 'waterproof', 'way'], ['great', 'valu', 'might', 'factori', 'reject', 'cut', 'camera', 'not', 'center', 'not', 'imped', 'function', 'note'], ['love', 'case', 'replac', 'old', 'commut', 'seri', 'nice', 'like', 'clear', 'shield', 'screen', 'not', 'sticki', 'one', 'easili', 'surviv', 'fall', 'i', 'also', 'short', 'person', 'come', 'apart', 'quick', 'easi', 'hold', 'friend', 'think', 'enorm', 'love', 'easi', 'grip', 'case', 'not', 'mention', 'color'], ['love'], ['prompt', 'receiv', 'look', 'feel', 'like', 'real', 'deal', 'appropri', 'price', 'zip', 'lock', 'bag', 'not', 'posit', 'sell', 'factor', 'finger', 'cross'], ['excel', 'product'], ['otterbox', 'defend', 'case', 'fit', 'perfect', 'phone', 'feel', 'secur'], ['super', 'fast', 'ship', 'item', 'exact', 'describ'], ['otter', 'case', 'checkblack'], ['great', 'case', 'price', 'right'], ['excel'], ['happi'], ['excel', 'product', 'less', 'expens', 'local', 'store'], ['save', 'phone', 'multipl', 'time'], ['work', 'well', 'realli', 'big'], ['product', 'arriv', 'discrib', 'perfect', 'condit'], ['good'], ['love'], ['purchas', 'son', 'iphon', 'realli', 'like', 'color', 'nice', 'bright', 'far', 'held', 'well'], ['great', 'product', 'great', 'price'], ['great'], ['fit', 'daughter', 'phone', 'great', 'own', 'sever', 'otterbox', 'case', 'perform', 'well'], ['case', 'rug', 'realli', 'not', 'like', 'tab', 'cover', 'mute', 'switch', 'aux', 'port', 'charg', 'port', 'everi', 'time', 'go', 'plug', 'phone', 'pop', 'outer', 'layer', 'bottom', 'phone', 'tri', 'access', 'port'], ['good', 'product'], ['fast', 'ship', 'perfect', 'fit'], ['great', 'product', 'deliv', 'time'], ['not', 'compat', 'iphon', 'advertis'], ['otter', 'box', 'exact', 'need', 'safeti', 'phone'], ['case', 'dark', 'midnight', 'blue', 'not', 'babi', 'blue', 'pictur', 'realli', 'disappoint', 'came', 'mail', 'show', 'proper', 'case', 'buy', 'wish', 'would', 'read', 'review', 'buy', 'appar', 'happen', 'everyon', 'els', 'well', 'not', 'happi', 'fals', 'advertis', 'iphon', 'case', 'guess', 'work', 'realli', 'want', 'one', 'pictur', 'wish', 'could', 'least', 'send', 'babi', 'blue', 'rubber', 'case', 'fix', 'situat'], ['littl', 'tough', 'get', 'amaz', 'job', 'protect', 'phone'], ['great', 'product', 'great', 'price', 'local', 'att', 'store', 'charg', 'paid', 'real', 'thing', 'one', 'old', 'iphon', 'protect', 'phone', 'mani', 'drop', 'want', 'anoth', 'otter', 'box', 'se', 'iphon'], ['great'], ['fit', 'great', 'arriv', 'quick'], ['work', 'good', 'price', 'better', 'life', 'proof', 'replac'], ['sad', 'outer', 'rubber', 'sleev', 'alreadi', 'torn', 'weird', 'sinc', 'first', 'one', 'last', 'month', 'add', 'insult', 'outer', 'sleev', 'tore', 'week', 'ago', 'due', 'busi', 'fail', 'submit', 'return', 'last', 'week', 'return', 'deadlin', 'day', 'ago', 'stuck', 'junk'], ['look', 'great', 'phone', 'feel', 'secur'], ['exact', 'want', 'expect', 'terrif', 'protect', 'price', 'iphon'], ['cast', 'buy', 'great'], ['awesom', 'case', 'thing', 'lil', 'color', 'instead', 'blue', 'kind', 'look', 'purpl', 'blue', 'odd', 'enough', 'seem', 'fade', 'blue', 'use'], ['realli', 'like', 'defend', 'case', 'unlik', 'previous', 'version', 'iphon', 'defend', 'outer', 'rubber', 'cover', 'smoother', 'easier', 'mark', 'use', 'fingerprint', 'reader', 'fine', 'long', 'setup', 'fingerprint', 'case', 'height', 'case', 'slight', 'interfer', 'angl', 'thumb', 'open', 'rear', 'camera', 'flash', 'great', 'not', 'appear', 'interfer', 'take', 'photo', 'plug', 'sound', 'mute', 'switch', 'headphon', 'jack', 'lightn', 'connector', 'sit', 'flush', 'not', 'need', 'massag', 'sit', 'flat', 'like', 'old', 'case', 'said', 'plug', 'cover', 'lightn', 'port', 'fair', 'difficult', 'open', 'i', 'would', 'rather', 'open', 'time', 'let', 'summari', 'real', 'complaint', 'easi', 'case', 'mar', 'everyday', 'use', 'discolor', 'blue', 'teal', 'color', 'holster', 'rub', 'phone', 'insert'], ['good'], ['good', 'expect'], ['protect', 'phone', 'fall', 'dust', 'nick', 'love'], ['heavi', 'duti', 'great', 'protect'], ['bulki'], ['want', 'someth', 'would', 'protect', 'iphon', 'realli', 'want', 'abl', 'use', 'touchid', 'wonder'], ['part', 'round', 'button', 'bottom', 'iphon', 'rip', 'i', 'sever', 'month', 'last', 'otter', 'box', 'last', 'iphon', 'last', 'three', 'year', 'disappoint'], ['repeat', 'purchas', 'otterbox', 'defend', 'new', 'phone', 'get', 'not', 'find', 'cut', 'amount', 'dust', 'work', 'outdoor', 'constant', 'cloud', 'dirt', 'expect', 'suffer', 'bang', 'continu', 'perform', 'splendid', 'experi', 'rubber', 'fatigu', 'time', 'otterbox', 'warranti', 'cover', 'replac', 'custom', 'servic', 'staff', 'great', 'work'], ['great', 'protect', 'yet', 'touch', 'screen', 'remain', 'sensit'], ['item', 'arriv', 'advertis', 'work', 'well', 'price', 'cheaper', 'elsewher', 'protect', 'phone', 'well', 'littl', 'bulki', 'cheaper', 'phone', 'break', 'drop', 'wish', 'would', 'also', 'waterproof', 'otterbox', 'not', 'waterproof', 'one', 'avail', 'need', 'box'], ['otterbox', 'case', 'save', 'phone', 'time', 'count', 'drop', 'vacay', 'hubbi', 'said', 'not', 'sound', 'good', 'otterbox', 'rescu', 'damag', 'keep', 'iphon', 'great', 'shape', 'yeah', 'not', 'one', 'bit', 'dayum', 'work'], ['love', 'iphon', 'want', 'good', 'case', 'got', 'best', 'receiv', 'best', 'thank'], ['case', 'pretti', 'easi', 'put', 'like', 'photo'], ['work', 'great'], ['good'], ['got', 'time', 'work', 'well', 'phone'], ['not', 'fit', 'phone'], ['describ', 'brand', 'name', 'otterbox'], ['otterbox', 'best', 'practic', 'phone', 'case', 'market'], ['absolut', 'garbag', 'not', 'worth', 'money'], ['second', 'one', 'i', 'protect', 'phone', 'well', 'thing', 'care', 'cover', 'charger', 'headphon', 'break', 'time', 'allow', 'dust', 'get'], ['star', 'shabbi', 'screen', 'protector', 'not', 'durabl', 'week', 'alreadi', 'major', 'scratch'], ['great', 'price', 'perfect', 'protect', 'phone'], ['son', 'love', 'great', 'color', 'not', 'get', 'dirti', 'protect', 'phone', 'favorit', 'part'], ['not', 'fit', 'child', 'iphon', 'push', 'volum', 'side', 'case'], ['case', 'not', 'fit', 'phone', 'poor', 'qualiti', 'otterbox', 'sister', 'believ'], ['excel', 'product'], ['hard', 'rubber', 'not', 'like', 'previous', 'otter', 'box'], ['thought', 'case', 'great', 'qualiti', 'case', 'money', 'alittl', 'bulki', 'side', 'got', 'sacrific', 'safeti'], ['great', 'husband', 'drop', 'phone', 'lot', 'give', 'great', 'protect', 'includ', 'screen'], ['love'], ['case', 'excel'], ['love', 'phone', 'even', 'peel', 'back', 'rubber', 'button', 'fingerprint', 'scan', 'want', 'feel', 'sturdi', 'protect', 'total', 'worth'], ['poor', 'qualiti', 'plastic', 'snap', 'crack', 'pop', 'unus', 'two', 'week', 'left', 'pile', 'plastic', 'shard'], ['good', 'clip', 'replac', 'one', 'broke'], ['metal', 'belt', 'clip', 'broke', 'first', 'time', 'use', 'kickstand', 'watch', 'video'], ['like', 'order', 'provid', 'must', 'say', 'great', 'job'], ['cheap'], ['alreadi', 'broke'], ['work'], ['seem', 'exact', 'origin', 'littl', 'hard', 'get', 'phone', 'clip', 'one', 'first'], ['receiv', 'clip', 'right', 'away', 'fit', 'perfect', 'thank'], ['broke', 'week'], ['ecel'], ['need', 'thank'], ['broke', 'day', 'poor', 'assembl', 'part', 'poor', 'fuse', 'togeth', 'suspect', 'otterbox'], ['work', 'great'], ['exact', 'expect', 'great', 'price', 'servic'], ['everyth', 'expect', 'deliv', 'time', 'thank'], ['work', 'like', 'origin'], ['look', 'good', 'price'], ['item', 'not', 'fit', 'galaxi', 'otter', 'box'], ['look', 'true', 'otterbox', 'replac', 'not', 'choos', 'one', 'clip', 'work', 'not', 'otterbox', 'impli', 'pictur', 'site', 'look', 'otterbox', 'bad'], ['happi', 'find', 'thought', 'could', 'not', 'buy', 'clip'], ['fit', 'galaxi', 'phone', 'disappoint', 'secur', 'phone', 'face', 'inward', 'previous', 'otterbox', 'halter', 'could', 'secur', 'phone', 'face', 'either', 'direct'], ['case', 'great', 'feel', 'not', 'bulki', 'everi', 'case', 'gotten', 'differ', 'phone', 'model', 'terrif', 'definit', 'check', 'first', 'case', 'need'], ['good', 'expect'], ['case', 'held', 'great', 'far'], ['case', 'look', 'stylish', 'not', 'bulki', 'classic', 'otter', 'box', 'howev', 'offer', 'great', 'protect', 'phone', 'accident', 'drop', 'along', 'temper', 'glass', 'screen', 'protector', 'case', 'ensur', 'heart', 'not', 'skip', 'beat', 'drop', 'phone', 'super', 'recommend', 'got', 'admir', 'blue', 'eleg', 'shade', 'blue'], ['love', 'new', 'case', 'amaz', 'love', 'color'], ['love'], ['realli', 'good', 'case', 'protect', 'phone', 'well'], ['good'], ['fit', 'phone', 'perfect', 'love', 'otterbox', 'allow', 'teenag', 'daughter', 'brand', 'i', 'still', 'pay', 'phone', 'alreadi', 'seen', 'mani', 'friend', 'bust', 'screen', 'case', 'drop', 'got', 'iphon', 'birthday', 'old', 'iphon', 'look', 'brand', 'new', 'otterbox', 'alway', 'buy', 'brand', 'recommend'], ['great', 'case'], ['true', 'size', 'pretti', 'normal', 'go', 'defend', 'otter', 'box', 'safer', 'phone', 'protect', 'fit', 'easili', 'hand', 'button', 'cover', 'true', 'size', 'make', 'sure', 'order', 'temper', 'glass', 'screen', 'protector', 'case', 'not', 'come', 'one', 'feel', 'great', 'purchas'], ['hardi', 'case', 'back', 'smooth', 'not', 'imposs', 'put', 'pocket', 'front', 'littl', 'rubber', 'textur', 'not', 'slip', 'around', 'much', 'screen', 'not', 'extrem', 'well', 'protect', 'case', 'surviv', 'short', 'drop'], ['otter', 'cool'], ['look', 'amaz', 'got', 'blue', 'print', 'color', 'great', 'i', 'would', 'describ', 'color', 'matt', 'blue', 'finish', 'case', 'one', 'piec', 'two', 'differ', 'materi', 'soft', 'rubber', 'insid', 'edg', 'follow', 'dri', 'back', 'blue', 'part', 'fit', 'perfect', 'seem', 'sturdi', 'enough', 'protect', 'drop', 'eh', 'volum', 'power', 'button', 'littl', 'lose', 'cours', 'normal', 'user', 'i', 'sure', 'would', 'not', 'even', 'notic', 'shi', 'perfect', 'case', 'i', 'would', 'say'], ['solid', 'drop', 'floor', 'time', 'bounc', 'without', 'mark', 'love'], ['good', 'phone', 'protect'], ['thin', 'protect', 'phone', 'not', 'like', 'bulki', 'case', 'work'], ['absolut', 'live', 'new', 'case'], ['love', 'cute', 'save', 'everi', 'time', 'drop'], ['like', 'not', 'glass', 'thing', 'like', 'slimmer', 'one', 'use', 'sinc', 'walk', 'need', 'slimmer', 'lighter', 'bought', 'glass', 'protect', 'happi'], ['great'], ['ship', 'faster', 'estim', 'date', 'came', 'new', 'box', 'everyth', 'perfect', 'fit', 'great', 'price', 'super', 'happi', 'wish', 'color', 'choic', 'design'], ['get', 'product', 'love'], ['clear', 'samsung', 'phone', 'not', 'iphon', 'packag', 'say', 'iphon', 'well'], ['love', 'color'], ['like'], ['awesom', 'case', 'love'], ['omg', 'case'], ['excel', 'case', 'fast', 'ship'], ['absolut', 'disappoint', 'product', 'screen', 'protector', 'broken', 'mine', 'crack', 'place', 'fiancé', 'done', 'place', 'week', 'not', 'drop', 'phone', 'protector', 'break'], ['life', 'long', 'otterbox', 'fan', 'fianc', 'love', 'not', 'bulki', 'protect', 'phone', 'drop'], ['case', 'not', 'authent', 'deep', 'scratch'], ['yes'], ['fit', 'great', 'item', 'describ'], ['fine'], ['phone', 'ubelivabk', 'spec', 'useless', 'fact', 'not', 'support', 'disappoint', 'grow', 'old', 'tri', 'get', 'anyth', 'net', 'data', 'slow', 'wish', 'would', 'care', 'understand', 'capabl', 'phone', 'paper', 'weight', 'great', 'batteri', 'life', 'not', 'wast', 'time', 'money', 'like'], ['not', 'wast', 'time', 'money', 'product', 'receiv', 'product', 'fair', 'quick', 'upsid', 'phone', 'not', 'give', 'network', 'charger', 'receiv', 'defect', 'th', 'camera', 'qualiti', 'not', 'great', 'phone', 'would', 'not', 'charg', 'tri', 'charg', 'find', 'charger', 'not', 'work', 'tri', 'anoth', 'charger', 'still', 'would', 'not', 'charg', 'mayb', 'not', 'work', 'great', 'area', 'use', 'network', 'e', 'whatev', 'mean', 'buy', 'risk', 'studi', 'purchas'], ['good', 'phone', 'love'], ['love', 'expect'], ['touchscreen', 'not', 'sensit', 'problem', 'answer'], ['phone'], ['sorri', 'horribl', 'not', 'wast', 'money', 'returd'], ['would', 'work', 'would', 'not', 'work', 'bottom', 'line', 'get', 'paid'], ['phone', 'awesom'], ['phone', 'good', 'sim', 'card', 'not', 'fit', 'kept', 'phone', 'gave', 'nephew', 'love'], ['less', 'hrs', 'entir', 'screen', 'went', 'blurri', 'could', 'not', 'see', 'anyth'], ['not', 'buy', 'cell', 'phone'], ['worst', 'phone', 'not', 'work', 'anymor'], ['return', 'soon', 'get', 'surgeri'], ['freak', 'love', 'phone', 'big', 'gold', 'color', 'cute', 'plus', 'came', 'clear', 'case', 'straight', 'talk', 'sim', 'card', 'work', 'great', 'definit', 'better', 'thought', 'go', 'must', 'buy', 'mom', 'go', 'buy', 'white', 'one', 'next'], ['descript', 'said', 'phone', 'work', 'straight', 'talk', 'servic', 'not', 'servic', 'said', 'phone', 'lock'], ['not', 'like', 'much'], ['like', 'everyth', 'phone'], ['work', 'fine', 'bit', 'hassl', 'get', 'messag', 'data', 'function', 'run', 'still', 'not', 'gotten', 'mms', 'pictur', 'messag', 'send', 'phone', 'work', 'great', 'add', 'new', 'apn', 'run', 'carrier', 'data', 'plan', 'sound', 'qualiti', 'headphon', 'jack', 'bit', 'poor', 'much', 'background', 'static', 'noth', 'play', 'wish', 'intern', 'memori', 'not', 'alway', 'pick', 'memori', 'card'], ['place', 'would', 'get', 'signal', 'phone', 'outsid', 'hous', 'horrobl', 'phone'], ['not', 'like'], ['phone'], ['item', 'reason', 'price', 'ship', 'prompt', 'arriv', 'describ', 'work', 'phone', 'peopl', 'use', 'palm', 'pre', 'plus', 'want', 'continu', 'experi'], ['got', 'daughter', 'nice', 'phone', 'webo', 'probabl', 'best', 'webo', 'phone', 'ever', 'made', 'work', 'great', 'not', 'know', 'ho', 'think', 'get', 'busi'], ['shame', 'phone', 'discontinu', 'matter', 'palm', 'compani', 'oper', 'system', 'palm', 'pre', 'webo', 'ahead', 'time', 'mani', 'phone', 'featur', 'user', 'interfac', 'use', 'appl', 'samsung', 'touch', 'quit', 'respons', 'screen', 'nice', 'resolut', 'camera', 'hit', 'miss', 'sometim', 'take', 'incred', 'pictur', 'time', 'kind', 'calendar', 'main', 'reason', 'kept', 'phone', 'around', 'sync', 'pretti', 'decent', 'ton', 'way', 'modifi', 'patch', 'tweak', 'phone', 'use', 'homebrew', 'palm', 'app', 'store', 'stop', 'receiv', 'support', 'coupl', 'year', 'ago', 'sore', 'dissapoint', 'not', 'realli', 'care', 'app', 'biggi', 'need', 'shut', 'reset', 'everi', 'day', 'thing', 'get', 'littl', 'touchston', 'technolog', 'super', 'handi', 'surpris', 'compani', 'not', 'util', 'charg', 'station', 'simpl', 'work', 'box', 'lot', 'compani', 'pageplus', 'etc', 'anoth', 'reason', 'keep', 'want', 'smart', 'phone', 'not', 'need', 'fanci', 'app', 'consid', 'pay', 'anywher', 'month', 'excel', 'voic', 'text', 'data', 'plan', 'also', 'hate', 'keyboard', 'physic', 'button', 'awesom', 'littl', 'tini', 'though', 'larg', 'finger', 'peopl', 'probabl', 'learn', 'trick', 'use', 'nail', 'adjust', 'not', 'shi', 'away', 'phone', 'great', 'step', 'stone', 'smart', 'phone'], ['phone', 'put', 'generic', 'box', 'usb', 'charger', 'usb', 'cabl', 'not', 'palm', 'brand', 'generic', 'also', 'without', 'ear', 'plus', 'usb', 'inlet', 'phone', 'lacer'], ['web', 'os', 'oper', 'system', 'run', 'palm', 'hp', 'devic', 'longer', 'offici', 'support', 'chang', 'date', 'juli', 'instal', 'store', 'updat', 'switch', 'date', 'network', 'time', 'right', 'away', 'not', 'not', 'abl', 'updat', 'store', 'devic', 'old', 'outdat', 'unsupport', 'processor', 'phone', 'nowaday', 'dual', 'quad', 'core', 'processor', 'quarter', 'ram', 'use', 'modern', 'phone', 'display', 'low', 'pixel', 'densiti', 'time', 'phone', 'releas', 'world', 'none', 'stuff', 'matter', 'consid', 'fast', 'enough', 'time', 'pleas', 'not', 'forget', 'phone', 'almost', 'five', 'year', 'old', 'time', 'use', 'access', 'email', 'calendar', 'contact', 'listen', 'music', 'podcast', 'access', 'facebook', 'twitter', 'sort', 'take', 'pictur', 'better', 'basic', 'phone', 'verizon', 'sell', 'cost', 'signific', 'nos', 'new', 'old', 'stock', 'palm', 'pre', 'geek', 'charm', 'pain', 'butt', 'sometim', 'never', 'abl', 'use', 'instagram', 'pinterest', 'anyth', 'newer', 'facebook', 'twitter', 'use', 'frustrat', 'come', 'newer', 'devic', 'simpli', 'hardwar', 'not', 'keep', 'modern', 'lot', 'becom', 'condit', 'tap', 'swipe', 'screen', 'homebrew', 'communiti', 'maintain', 'app', 'patch', 'must', 'sideload', 'onto', 'devic', 'add', 'featur', 'function', 'never', 'made', 'web', 'os', 'due', 'cost', 'phone', 'reason', 'think', 'buy', 'one', 'afford', 'even', 'use', 'iphon', 'android', 'window', 'phone', 'go', 'buy', 'one', 'instead', 'poor', 'want', 'someth', 'play', 'go', 'pre', 'would', 'not', 'buy', 'pixi', 'pre', 'plus', 'day', 'pre', 'pre', 'much', 'expens', 'viabl', 'palm', 'devic', 'use', 'other', 'slow'], ['perfect', 'devic', 'term', 'function', 'vs', 'cost', 'run', 'intuit', 'simpl', 'use', 'softwar', 'sell', 'point', 'happi', 'put', 'somewhat', 'outdat', 'hardwar'], ['not', 'big', 'phone', 'user', 'one', 'annoy', 'reason', 'occasion', 'freez', 'remov', 'batteri', 'button', 'text', 'tini', 'would', 'not', 'recommend', 'avid', 'texter', 'also', 'simplest', 'thing', 'like', 'time', 'miss', 'call', 'come', 'add', 'number', 'new', 'contact', 'not', 'easi', 'navig', 'need', 'verizon', 'friend', 'phone', 'compani', 'fit', 'bill', 'need', 'use', 'would', 'look', 'replac'], ['phone', 'great', 'origin', 'pre', 'plus', 'love', 'android', 'phone', 'start', 'pain', 'neck', 'saw', 'one', 'less', 'brand', 'new', 'purchas', 'app', 'avail', 'essenti', 'mayb', 'eventu', 'webo', 'make', 'comeback', 'better', 'support', 'phone', 'trick'], ['not', 'work'], ['phone', 'neat', 'bought', 'latest', 'sprint', 'updat', 'let', 'us', 'use', 'sdhc', 'card', 'i', 'got', 'gig', 'mine', 'plus', 'lot', 'free', 'app', 'palm', 'use', 'googl', 'map', 'word', 'app', 'everyday', 'work'], ['would', 'love', 'give', 'product', 'star', 'not', 'first', 'instruct', 'small', 'even', 'super', 'human', 'vision', 'need', 'magnifi', 'glass', 'second', 'icon', 'took', 'week', 'figur', 'put', 'vibrat', 'last', 'figur', 'fiance', 'mother', 'want', 'one', 'purchas', 'week', 'still', 'not', 'work', 'proper', 'still', 'not', 'know', 'understand', 'capabl', 'sorri', 'wish', 'could', 'say', 'better'], ['cheap', 'loo', 'cheap', 'dosent', 'anyth', 'worth', 'besid', 'see', 'text', 'messag', 'aomeon', 'sent', 'fb', 'app', 'work', 'fit', 'sim', 'card', 'even', 'take', 'apart', 'micro', 'sd', 'never', 'wor', 'either', 'worthless', 'buy', 'rang', 'call', 'limit'], ['nice', 'watch'], ['good', 'watch', 'price', 'look', 'modern'], ['soo', 'nice'], ['nice', 'watch'], ['product', 'junk', 'not', 'work', 'mobil', 'wast', 'buck'], ['thank'], ['product', 'not', 'work', 'well', 'big', 'pedomet', 'stop', 'work', 'day'], ['watch', 'stop', 'work', 'second', 'day', 'receiv', 'screen', 'black', 'never', 'came'], ['not', 'work', 'sim', 'card', 'back', 'watch'], ['nice', 'look', 'like', 'appl', 'worth', 'everi', 'money', 'batteri', 'last', 'hour'], ['wrong', 'color', 'receiv', 'scratch', 'camera', 'go', 'return', 'not', 'worth', 'time', 'get', 'pay', 'would', 'buy', 'expens', 'one', 'next', 'time', 'least', 'would', 'right', 'color', 'user', 'interfac', 'terribl'], ['awesom', 'product', 'grandson', 'happi', 'worri', 'qualiti', 'function', 'price', 'low', 'wrong', 'would', 'put', 'watch', 'higher', 'price', 'model'], ['work', 'great'], ['simpl', 'phone', 'job', 'peopl', 'look', 'realli', 'frill', 'phone'], ['love', 'phone', 'would', 'not', 'come', 'sim', 'card', 'insert', 'tri', 'everyth', 'not', 'know', 'phone', 'defect', 'not', 'return', 'could', 'not', 'use', 'disappoint'], ['exact', 'husband', 'want'], ['product', 'came', 'describ', 'arriv', 'schedul', 'date', 'plus'], ['order', 'arriv', 'earli', 'expect', 'set', 'breez', 'great', 'experi'], ['great', 'flip', 'phone', 'someon', 'not', 'need', 'internet'], ['hi', 'old', 'john', 'deer', 'gt', 'lawn', 'tractor', 'particular', 'seri', 'tractor', 'propens', 'break', 'hood', 'hing', 'us', 'took', 'hood', 'keep', 'eye', 'peel', 'guarente', 'see', 'one', 'anyway', 'coupl', 'littl', 'headlight', 'hood', 'miss', 'work', 'well', 'lot', 'year', 'recent', 'chang', 'work', 'hour', 'get', 'home', 'sunset', 'acr', 'mount', 'auxbeam', 'front', 'littl', 'john', 'deer', 'bit', 'disappoint', 'not', 'look', 'redneck', 'actual', 'look', 'pretti', 'good', 'use', 'exist', 'dashboard', 'switch', 'easi', 'mount', 'wire', 'put', 'work', 'day', 'got', 'applic', 'thing', 'perfect', 'plenti', 'adjust', 'ever', 'light', 'night', 'i', 'discov', 'realli', 'like', 'mow', 'night', 'weird', 'huh', 'nice', 'cool', 'sunscreen', 'hat', 'thing', 'last', 'least', 'year', 'quit', 'bargain'], ['nice', 'good', 'cell'], ['work', 'advertis'], ['excel', 'slight', 'use', 'phone', 'look', 'perform', 'like', 'new', 'excel', 'product', 'excel', 'price'], ['good'], ['super'], ['love', 'phone', 'soo', 'easi', 'root', 'search', 'pantech', 'presto', 'via', 'googl', 'see', 'mean'], [], ['order', 'last', 'year', 'pass', 'second', 'child', 'love', 'touch', 'screen', 'proven', 'pretti', 'durabl', 'littl', 'phone', 'batteri', 'life', 'also', 'quit', 'good'], ['work', 'great'], ['phone', 'suppos', 'unlock', 'not', 'found', 'unlock', 'code', 'side', 'much'], ['husband', 'love', 'pantech', 'said', 'reliabl', 'easi', 'use'], ['bought', 'replac', 'anoth', 'pantech', 'jest', 'love', 'lost', 'not', 'like', 'model', 'much', 'glad', 'abl', 'purchas', 'phone', 'bring', 'verizon', 'longer', 'sell'], ['great', 'keep', 'front', 'pocket', 'jame', 'bond', 'secret', 'compart', 'button', 'littl', 'hard', 'find', 'work', 'fine', 'good', 'batt', 'life', 'etc'], ['exel'], ['bought', 'mom', 'not', 'like', 'use', 'blackberri', 'year', 'start', 'use', 'not', 'like', 'keyboard', 'thought', 'great', 'littl', 'cheep', 'phone'], ['first', 'smartphon', 'i', 'pleas', 'three', 'method', 'text', 'entri', 'touchscreen', 'keyboard', 'qwerti', 'keyboard', 'nice', 'simpl', 'menu', 'layout', 'not', 'complic', 'learn', 'interact', 'unit', 'heavier', 'larger', 'phone', 'feel', 'sturdi', 'back', 'design', 'attract', 'imposs', 'hold', 'onto', 'without', 'rubber', 'textur', 'case', 'especi', 'slide', 'keyboard', 'suit', 'need', 'music', 'player', 'camera', 'messag', 'devic'], ['not', 'like', 'lock', 'time', 'would', 'never', 'buy', 'anoth', 'one'], ['love', 'phone', 'bought', 'new', 'one', 'replac', 'old', 'one', 'think', 'phone', 'better', 'smartphon', 'easi', 'use'], ['good', 'devic', 'price', 'unlock', 'compani', 'role', 'various', 'accept'], ['problem', 'phone', 'could', 'not', 'connect', 'internet', 'via', 'current', 'carrier', 'want', 'unlock', 'phone', 'access', 'internet', 'text', 'etc', 'phone', 'function', 'fine', 'wish', 'could', 'internet', 'sinc', 'return', 'phone', 'back', 'seller'], ['want', 'get', 'basic', 'phone', 'not', 'spend', 'ton', 'money', 'renew', 'contract', 'carrier', 'pantech', 'great', 'purchas', 'call', 'qualiti', 'good', 'phone', 'light', 'easi', 'get', 'use', 'text', 'situat', 'would', 'definit', 'recommend', 'phone'], ['excel', 'phone'], ['phone', 'mani', 'sign', 'heavi', 'wear', 'tear', 'pretti', 'bad', 'shape', 'button', 'would', 'not', 'respond', 'phone', 'broken', 'screen', 'went', 'black', 'week', 'later', 'use'], ['differ', 'batteri', 'replac', 'die', 'within', 'coupl', 'hour', 'final', 'return', 'phone', 'horribl', 'hard', 'use'], ['purchas', 'phone', 'mom', 'test', 'total', 'touch', 'screen', 'phone', 'spend', 'hundr', 'super', 'high', 'tech', 'cell', 'still', 'live', 'world', 'flip', 'phone', 'thank', 'god', 'drove', 'banana', 'question', 'final', 'got', 'hang', 'time', 'graduat', 'seller', 'product', 'work', 'perfect', 'well', 'packag', 'scratch', 'problem'], ['bought', 'phone', 'month', 'ago', 'peopl', 'realli', 'hear', 'talk', 'power', 'button', 'stop', 'work', 'plug', 'usb', 'turn', 'speaker', 'speaker', 'phone', 'crap', 'sound', 'like', 'blown', 'kept', 'money', 'i', 'never', 'buy', 'thing', 'amazon'], ['receiv', 'phone', 'phone', 'not', 'unlock', 'phone', 'list', 'unlock', 'categori', 'not', 'unlock', 'high', 'disapoint'], ['read', 'review', 'buy', 'phone', 'disappoint', 'certain', 'user', 'not', 'true', 'start', 'phone', 'run', 'complet', 'slow', 'could', 'not', 'even', 'sli', 'pic', 'put', 'memori', 'card', 'buy', 'not', 'worth', 'money'], ['lousi'], ['disappoint', 'could', 'not', 'send', 'pic', 'setup', 'voic', 'mail'], ['junk'], ['bought', 'husband', 'christma', 'gift', 'use', 'samsung', 'galaxi', 'love', 'phone', 'impress', 'expeci', 'flashlight', 'app'], ['memori', 'way', 'par', 'load', 'facebook', 'invas', 'game', 'memori', 'opinion', 'not', 'wast', 'money', 'gig', 'not', 'enough', 'wast', 'money'], ['phone', 'talk', 'black', 'time', 'not', 'download', 'anyth', 'phone', 'basic', 'show'], ['stop', 'work'], ['audio', 'less', 'expect', 'perform', 'equal', 'price', 'sorri'], ['give', 'memori', 'not', 'put', 'pictur', 'even', 'sd', 'card', 'would', 'not', 'recommend', 'anyon', 'wish', 'could', 'get', 'money', 'back'], ['not', 'work', 'net', 'super', 'lame', 'specif', 'say', 'thank', 'wast', 'time', 'money', 'plum'], ['excelent'], ['not', 'thought', 'would'], ['user', 'interfac', 'need', 'much', 'pretti', 'rug', 'not', 'worth', 'money', 'softwar', 'punish', 'mistak', 'mani', 'messag', 'organ', 'not', 'button', 'broke', 'sudden', 'would', 'depress', 'would', 'not', 'return', 'keep', 'breast', 'pocket', 'hour', 'phone', 'fail', 'need', 'bad', 'not', 'buy', 'recommend', 'not', 'buy', 'either'], ['not', 'buy'], ['not', 'thought', 'would'], ['great'], ['good'], ['sorri', 'late', 'ask', 'guy', 'realiz', 'phone', 'bought', 'not', 'unlock', 'polaroid', 'search', 'say', 'unlock', 'lock', 'phone'], ['phone', 'work', 'fine', 'wish', 'loader', 'ring'], ['good'], ['excel'], ['internet', 'not', 'work', 'proper', 'show'], ['not', 'connect', 'network', 'call', 'support', 'said', 'defect', 'not', 'dare', 'tri', 'anoth', 'one', 'even', 'though', 'connect', 'wireless', 'amazon', 'alway', 'took'], ['polaroid', 'stick', 'camera'], ['awsom', 'color'], ['junk', 'not', 'wast', 'money'], ['bought', 'phone', 'mom', 'not', 'need', 'sophist', 'phone', 'simpl', 'good', 'size', 'compat', 'high', 'speed', 'data', 'download', 'regular', 'app', 'playstor', 'downsid', 'poor', 'batteri', 'life'], ['like', 'phone', 'phone', 'act', 'funni', 'week', 'year', 'warranti', 'want', 'anoth', 'phone', 'not', 'refund'], ['look', 'pretti', 'good', 'spec', 'soon', 'power', 'display', 'screen', 'show', 'floweri', 'line', 'whole', 'screen', 'becam', 'invis', 'return', 'immedi'], ['part', 'good', 'phone', 'run', 'fair', 'fast', 'keyboard', 'work', 'great', 'screen', 'big', 'clear', 'speaker', 'nice', 'realli', 'love', 'phone', 'except', 'disappoint', 'camera', 'would', 'think', 'camera', 'compani', 'could', 'put', 'good', 'camera', 'phone', 'i', 'own', 'four', 'phone', 'ask', 'camera', 'suck', 'also', 'custom', 'servic', 'joke', 'need', 'phone', 'replac', 'due', 'problem', 'charg', 'took', 'almost', 'two', 'month', 'phone', 'mail', 'new', 'york', 'idaho'], ['yes', 'figur'], ['not', 'anyth', 'would', 'say', 'warranti', 'not', 'cover', 'not', 'find', 'screen', 'phone'], ['junk', 'not', 'wast', 'money'], ['not', 'buy', 'phone', 'batteri', 'life', 'hour', 'charger', 'not', 'fit', 'phone', 'proper', 'mcgiver', 'get', 'charger', 'stay', 'place', 'charg', 'photo', 'qualiti', 'poor', 'phone', 'keep', 'shut', 'even', 'full', 'charg', 'difficult', 'turn', 'back', 'hard', 'hear', 'hard', 'other', 'hear', 'huge', 'disappoint', 'call', 'report', 'problem', 'told', 'need', 'factori', 'reset', 'reset', 'noth', 'chang'], ['text', 'not', 'download', 'either', 'pictur', 'contact', 'screen', 'touch', 'sensit', 'bad', 'liter', 'pound', 'lower', 'portion', 'screen', 'slow', 'processor', 'return', 'look', 'someth', 'els'], ['i', 'phone', 'month', 'smart', 'phone', 'batteri', 'life', 'short', 'brows', 'via', 'wifi', 'cell', 'data', 'not', 'spybook', 'check', 'email', 'simpl', 'stuff', 'camera', 'ok', 'bright', 'light', 'need', 'depend', 'flash', 'forget', 'video', 'tend', 'blur', 'lot', 'movement', 'call', 'qualiti', 'take', 'case', 'make', 'mike', 'hole', 'protect', 'cover', 'hole', 'bigger', 'peopl', 'hear', 'os', 'stabl', 'rare', 'lock', 'restart', 'app', 'would', 'buy', 'recommend', 'person', 'not', 'need', 'lot', 'app', 'basic', 'phone', 'user', 'price', 'right'], ['great', 'phone'], ['love', 'camera', 'not', 'take', 'good', 'photo', 'thought'], ['look', 'pretti', 'good', 'spec', 'soon', 'power', 'display', 'screen', 'show', 'floweri', 'line', 'whole', 'screen', 'becam', 'invis', 'return', 'immedi'], ['appear', 'nice', 'phone', 'problem', 'verizon', 'wireless', 'would', 'not', 'allow', 'use', 'phone', 'verizon', 'account'], ['nice', 'phone'], ['nice', 'phone'], ['speaker', 'not', 'work', 'proper', 'order', 'replac', 'hope', 'phone', 'not', 'problem'], ['love', 'phone', 'big', 'iphon', 'realli', 'like', 'love'], ['beauti', 'simpl', 'phablet', 'meet', 'desir', 'ever', 'use', 'love', 'design', 'feel', 'phone', 'camera', 'could', 'better', 'everi', 'thing', 'els', 'standard'], ['hard', 'open', 'back', 'put', 'sim', 'card'], ['use', 'samsung', 'galaxi', 'not', 'total', 'not', 'intuit', 'i', 'quit', 'good', 'figur', 'stuff', 'imposs'], ['not', 'best'], ['stop', 'charger', 'month'], ['not', 'buy', 'phone', 'batteri', 'life', 'hour', 'charger', 'not', 'fit', 'phone', 'proper', 'mcgiver', 'get', 'charger', 'stay', 'place', 'charg', 'photo', 'qualiti', 'poor', 'phone', 'keep', 'shut', 'even', 'full', 'charg', 'difficult', 'turn', 'back', 'hard', 'hear', 'hard', 'other', 'hear', 'huge', 'disappoint', 'call', 'report', 'problem', 'told', 'need', 'factori', 'reset', 'reset', 'noth', 'chang'], ['good', 'product', 'price'], ['not', 'anyth', 'would', 'say', 'warranti', 'not', 'cover', 'not', 'find', 'screen', 'phone'], ['phone', 'suck', 'internet', 'suck', 'not', 'recommend'], ['i', 'phone', 'month', 'absolut', 'love', 'everyth', 'i', 'lot', 'peopl', 'ask', 'got', 'phone', 'told', 'go', 'amazon', 'great', 'phone', 'thank'], ['not', 'bad', 'phone', 'text', 'speaker', 'horribl'], ['speaker', 'not', 'work', 'proper', 'order', 'replac', 'hope', 'phone', 'not', 'problem'], ['not', 'bad', 'phone', 'realli', 'except', 'microphon', 'mine', 'defect', 'produc', 'muffl', 'approxim', 'voic', 'camera', 'produc', 'blurri', 'unus', 'photo', 'return', 'button', 'bottom', 'screen', 'otherwis', 'screen', 'fine', 'batteri', 'life', 'adequ', 'like', 'clear', 'plastic', 'case', 'came', 'sorri', 'send', 'return', 'difficult', 'gave', 'web', 'site', 'call', 'custom', 'servic', 'got', 'straighten'], ['love', 'phone', 'big', 'iphon', 'realli', 'like', 'love'], ['gift', 'recipi', 'happi'], ['text', 'not', 'download', 'either', 'pictur', 'contact', 'screen', 'touch', 'sensit', 'bad', 'liter', 'pound', 'lower', 'portion', 'screen', 'slow', 'processor', 'return', 'look', 'someth', 'els'], ['phone', 'garbag', 'got', 'phone', 'batteri', 'dead', 'not', 'even', 'return', 'paper', 'weight', 'anymor', 'screw', 'buy'], ['not', 'wright', 'review', 'not', 'alow'], ['love', 'phone', 'work', 'i', 'would', 'recommend', 'take', 'nice', 'pictur', 'nice', 'phone'], ['metro', 'internet', 'noth', 'phone', 'valu', 'less'], ['perfect'], ['purchas', 'phone', 'friend', 'oversea', 'love', 'almost', 'month', 'say', 'great', 'love', 'big', 'screen', 'clariti', 'love', 'price', 'pay', 'recomend', 'oversea', 'work', 'exel'], ['exel', 'wokr', 'mexico', 'cell', 'compani'], ['phone', 'got', 'noot', 'work'], ['like'], ['great', 'valu', 'money', 'plus', 'stylish'], ['excel'], ['overal', 'nice', 'phone', 'turn', 'speaker', 'phone', 'sound', 'muffl', 'someth', 'cover', 'reason', 'anoth', 'not', 'receiv', 'signal', 'insid', 'apart', 'internet', 'not', 'send', 'brochur', 'explain', 'featur', 'phone', 'would', 'realli', 'like', 'money', 'back', 'not', 'satisfi', 'someth', 'basic', 'figur', 'use', 'phone', 'purchas', 'littl', 'manual', 'let', 'know', 'phone', 'not', 'one'], ['not', 'bad', 'phone', 'text', 'speaker', 'horribl'], ['could', 'not', 'ask', 'better', 'come', 'bang', 'buck', 'meet', 'need', 'wifi', 'problem', 'date', 'screen', 'appear', 'hold', 'littl', 'bit', 'dust', 'dirt', 'i', 'use', 'fire', 'hd', 'live'], ['posh', 'mobil', 'come', 'cheap', 'price', 'still', 'plenti', 'nice', 'featur', 'awar', 'ui', 'littl', 'laggi', 'phone', 'not', 'regist', 'tap', 'well'], ['outstand', 'transact', 'super', 'fast', 'deliveri', 'excel', 'product', 'high', 'recommend', 'thank'], ['not', 'hold', 'charg'], ['not', 'happi', 'phone', 'day', 'screen', 'went'], ['phone', 'not', 'work', 'well', 'mobil', 'servic', 'slow', 'return'], ['made', 'move', 'posh', 'blu', 'studio', 'ii', 'decid', 'month', 'longer', 'want', 'power', 'well', 'power', 'screen', 'stay', 'black', 'warranti', 'never', 'got', 'around', 'send', 'receipt', 'whatev', 'first', 'not', 'see', 'benchmark', 'anoth', 'person', 'state', 'fast', 'iphon', 'not', 'rate', 'fast', 'iphon', 'not', 'deal', 'breaker', 'light', 'slimmer', 'blu', 'descript', 'say', 'compat', 'microsd', 'start', 'move', 'seen', 'move', 'file', 'long', 'dunno', 'happi', 'plus', 'plus', 'devic', 'not', 'lock', 'point', 'not', 'abl', 'move', 'app', 'quibbl', 'ram', 'phoneblet', 'still', 'work', 'not', 'use', 'make', 'call', 'metropc', 'lte', 'much', 'much', 'faster', 'previous', 'blu', 'impress', 'instal', 'epic', 'citadel', 'run', 'one', 'thing', 'resolut', 'kind', 'woursh', 'fix', 'use', 'adw', 'launcher', 'ubuntu', 'theme', 'clear', 'graphic', 'not', 'appear', 'posh', 'go', 'updat', 'marshmallow', 'websit', 'list', 'mod', 'version', 'lollipop', 'overal', 'hsppi', 'hope', 'last', 'longer', 'blu', 'updat', 'left', 'yada', 'yada', 'yada', 'devic', 'mine', 'glorifi', 'piec', 'junk', 'sorri', 'posh', 'folk', 'true', 'i', 'go', 'notic', 'cours', 'week', 'becom', 'progress', 'slower', 'slowwer', 'not', 'certain', 'whether', 'app', 'updat', 'lazi', 'confirm', 'chrome', 'not', 'respond', 'ok', 'wait', 'actual', 'app', 'receiv', 'dread', 'not', 'respond', 'thank', 'posh', 'use', 'commut', 'train', 'possibl', 'backup', 'phone', 'devic', 'nix', 'went', 'ipad', 'pro', 'cellular', 'could', 'not', 'happier', 'minus', 'inabl', 'make', 'call', 'well', 'app', 'well', 'facetim', 'soo', 'posh', 'releg', 'xbmc', 'remot', 'guess', 'low', 'ram', 'certain', 'play', 'part', 'could', 'wrong', 'tri', 'confirm'], ['absolut', 'love', 'phone', 'first', 'like', 'wow', 'big', 'use', 'awhil', 'love', 'would', 'definit', 'purchas'], ['mobil', 'tablet', 'larg', 'view', 'screen', 'work', 'well', 'android', 'app', 'howev', 'issu', 'unit', 'own', 'first', 'issu', 'button', 'make', 'difficult', 'oper', 'sent', 'replac', 'amazon', 'arriv', 'day', 'return', 'defect', 'replac', 'item', 'similar', 'issu', 'restart', 'shut', 'fore', 'appar', 'reason', 'attempt', 'return', 'item', 'yet', 'inform', 'past', 'return', 'period', 'contact', 'posh', 'will', 'replac', 'item', 'howev', 'must', 'agre', 'return', 'item', 'posh', 'pay', 'pocket', 'ship', 'wait', 'approxim', 'fore', 'exchang', 'item', 'may', 'fact', 'refurbish', 'servic', 'said', 'would', 'ship', 'unit', 'stock', 'fill', 'form', 'accomplish', 'sever', 'week', 'past', 'yet', 'contact', 'posh', 'custom', 'may', 'naught', 'good', 'conscious', 'recommend', 'item', 'base', 'amazon', 'return', 'polici', 'posh', 'ineffectu', 'custom', 'servic', 'polici'], ['softwar', 'pretti', 'glitchi', 'like', 'size', 'phone'], ['best', 'choic', 'ever'], ['one', 'week', 'phone', 'not', 'hold', 'charg', 'longer', 'ten', 'minut', 'one', 'day', 'later', 'not', 'even', 'turn', 'not', 'buy', 'phone', 'wast', 'money'], ['phone', 'not', 'even', 'turn'], ['posh', 'good', 'nice', 'pic', 'game', 'everyth'], ['phone', 'pretti', 'cool', 'come', 'case', 'charger', 'phone', 'screen', 'protector', 'headphon', 'like', 'phone', 'lot', 'reason', 'not', 'rate', 'star', 'kind', 'slow', 'get', 'android', 'app', 'probabl', 'best', 'phone', 'purchas', 'price', 'app', 'problem', 'use', 'googl', 'map', 'huge', 'howev', 'consid', 'accessori', 'come', 'includ', 'screen', 'protector', 'case', 'would', 'give', 'not', 'option', 'amazon', 'lol', 'compat', 'lifestyl', 'colleg', 'student', 'mom', 'would', 'recommend', 'buy', 'look', 'phone', 'simpl', 'cheap', 'effect'], ['i', 'happi', 'posh', 'android', 'phone', 'put', 'lot', 'app', 'along', 'music', 'speed', 'still', 'great', 'price', 'not', 'go', 'wrong'], ['first', 'love', 'exact', 'month', 'later', 'phone', 'dead', 'water', 'not', 'charg', 'late', 'return'], ['like', 'best', 'thing', 'ever'], ['god', 'cellular'], ['screen', 'act', 'not', 'even', 'phone', 'long', 'get', 'replac'], ['first', 'love', 'exact', 'month', 'later', 'phone', 'dead', 'water', 'not', 'charg', 'late', 'return'], ['not', 'work', 'metro', 'pcs', 'carrier', 'suppos', 'horribl', 'camera', 'horribl', 'internet', 'connect'], ['surpris', 'better', 'blu', 'phone', 'actual', 'order', 'two', 'phone', 'one', 'slight', 'expens', 'blu', 'phone', 'around', 'one', 'turn', 'one', 'function', 'better', 'blu', 'price', 'one', 'way', 'cheaper', 'phone', 'second', 'posh', 'phone', 'third', 'blu', 'phone', 'blu', 'alway', 'problem', 'freez', 'restart', 'never', 'experienc', 'anyon', 'posh', 'phone', 'samsung', 'depend', 'model', 'want', 'rite', 'mind', 'would', 'spend', 'much', 'money', 'phone', 'phone', 'break', 'get', 'lost', 'sometim', 'give', 'problem', 'includ', 'expens', 'phone', 'phone', 'fall', 'atlant', 'ocean', 'fish', 'realli', 'not', 'give', 'rat', 'ass', 'buck'], ['excel'], ['product', 'pretti', 'good', 'overal', 'not', 'seem', 'find', 'help', 'issu', 'get', 'custom', 'servic', 'need', 'assist', 'figur', 'not', 'receiv', 'imag', 'via', 'text'], ['love', 'new', 'phone', 'need', 'case', 'wallet', 'not', 'use', 'magnet', 'card', 'small', 'big', 'not', 'peopl', 'case', 'fit', 'phone', 'stupid', 'case', 'phone', 'happen', 'case'], ['small', 'look', 'function', 'phone', 'superior', 'sound', 'qualiti', 'need', 'train', 'use', 'tini', 'keyboard'], ['brilliant', 'littl', 'absurd', 'tini', 'hard', 'type', 'requir', 'funki', 'enlong', 'micro', 'usb', 'adapt', 'limit', 'storag', 'not', 'instal', 'mani', 'app', 'lollipop', 'better', 'not', 'avail', 'not', 'move', 'app', 'sd', 'absurd', 'absurd', 'absurd', 'work', 'qualiti', 'save', 'bacon', 'xperia', 'screen', 'crack', 'would', 'not', 'accept', 'touch', 'input', 'still', 'busi', 'work', 'phone', 'swap', 'sim', 'sd', 'card', 'bought', 'not', 'want', 'carri', 'heavi', 'phone', 'bicycl', 'race', 'still', 'want', 'case', 'accid', 'etc', 'realli', 'love', 'thing', 'price', 'point', 'surpass', 'order', 'new', 'iphon', 'se', 'replac', 'soni', 'like', 'littl', 'phone', 'much', 'i', 'go', 'maintain', 'separ', 'phone', 'number'], ['not', 'fastest', 'phone', 'not', 'hd', 'screen', 'not', 'charg', 'wireless', 'not', 'waterproof', 'not', 'use', 'remot', 'unnecessari', 'stuff', 'way', 'niftiest', 'littl', 'phone', 'could', 'ever', 'essenti', 'util', 'need', 'phone', 'speed', 'gsm', 'carrier', 'wifi', 'bluetooth', 'use', 'micro', 'usb', 'charger', 'warn', 'use', 'long', 'tip', 'approxim', 'longer', 'normal', 'micro', 'usb', 'tip', 'either', 'get', 'new', 'trim', 'back', 'like', 'includ', 'cabl', 'trim', 'back', 'plastic', 'surround', 'port', 'normal', 'micro', 'usb', 'cabl', 'fit', 'phone', 'tini', 'mah', 'batteri', 'sound', 'comic', 'honesti', 'tho', 'batteri', 'last', 'day', 'like', 'mah', 'batteri', 'would', 'regular', 'smart', 'phone', 'yes', 'perform', 'not', 'mind', 'blow', 'mb', 'ram', 'board', 'storag', 'probabl', 'closer', 'due', 'android', 'take', 'space', 'spec', 'horribl', 'compar', 'flagship', 'obvious', 'small', 'lag', 'spike', 'use', 'devic', 'fact', 'run', 'android', 'first', 'pace', 'phenomen', 'need', 'tini', 'phone', 'reason', 'ever', 'get', 'whether', 'use', 'fit', 'devic', 'player', 'actual', 'phone', 'well', 'worth', 'money', 'anoth', 'note', 'children', 'love', 'like', 'phone', 'kid', 'size'], ['lot', 'featur', 'wifi', 'hotspot', 'get', 'good', 'connect', 'ipad', 'macbook', 'realli', 'poor', 'qualiti', 'wifi', 'signal', 'bar', 'phone', 'qualiti', 'pretti', 'well', 'use', 'grand', 'total', 'five', 'minut', 'phone', 'quit', 'plug', 'charger', 'screen', 'empti', 'batteri', 'lighten', 'bolt', 'show', 'charg', 'not', 'fire', 'noth', 'basic', 'dead', 'minut', 'use', 'cute', 'phone', 'never', 'charg', 'correct', 'even', 'new', 'i', 'would', 'pass'], ['could', 'not', 'even', 'use', 'phone', 'would', 'not', 'turn', 'bought', 'thing', 'happen'], ['advertis'], ['phone', 'stop', 'work'], ['great', 'display', 'batteri', 'life', 'littl', 'suspect'], ['excelent'], ['good', 'altern', 'phone'], ['use', 'media', 'devic', 'work', 'not', 'know', 'function', 'actual', 'phone', 'think', 'use', 'phone', 'actual', 'way', 'i', 'would', 'use', 'phone', 'i', 'would', 'go', 'crazi', 'giant', 'phablet', 'love', 'play', 'game', 'read', 'ebook', 'thing', 'make', 'great', 'make', 'horribl', 'work', 'went', 'look', 'someth', 'small', 'inexpens', 'use', 'phone', 'fit', 'bill', 'fantast', 'would', 'gone', 'star', 'option', 'real', 'downsid', 'keyboard', 'like', 'review', 'said', 'absolut', 'ridicul', 'not', 'think', 'could', 'bad', 'said', 'not', 'exagger', 'near', 'imposs', 'use', 'even', 'stylus', 'not', 'larg', 'finger', 'general', 'not', 'problem', 'keyboard', 'get', 'sign', 'android', 'app', 'want', 'use', 'took', 'far', 'long', 'made', 'want', 'throw', 'darn', 'thing', 'across', 'room', 'download', 'free', 'trial', 'swype', 'help', 'littl', 'realli', 'much', 'work', 'screen', 'i', 'sign', 'set', 'great', 'i', 'use', 'week', 'everyth', 'i', 'would', 'hope', 'could', 'small', 'relat', 'flat', 'fit', 'pocket', 'run', 'short', 'design', 'key', 'app', 'need', 'work', 'fine', 'wifi', 'bluetooth', 'headphon', 'lack', 'app', 'drawer', 'odd', 'sinc', 'not', 'use', 'much', 'app', 'put', 'one', 'need', 'home', 'screen', 'not', 'realli', 'mess', 'other', 'thing', 'kind', 'slow', 'open', 'understand', 'i', 'compar', 'much', 'power', 'phone', 'open', 'work', 'look', 'media', 'devic', 'wifi', 'bluetooth', 'small', 'enough', 'fit', 'tini', 'littl', 'key', 'pocket', 'built', 'run', 'short', 'perfect'], ['great', 'phone', 'buy'], ['phone', 'pretti', 'charg', 'aw', 'not', 'buy', 'phone', 'never', 'sudden', 'charg', 'turn'], ['respons', 'touchscreen', 'slow', 'unreli'], ['excel', 'phone', 'use', 'tablet', 'phone', 'servic', 'much', 'better', 'tablet', 'unless', 'need', 'larger', 'tablet', 'doubl', 'laptop', 'size', 'perfect', 'stocki', 'hand', 'less', 'ounc', 'beat', 'even', 'small', 'tablet', 'like', 'fire', 'hd', 'weigh', 'ounc', 'screen', 'size', 'iphon', 'plus', 'good', 'reason', 'anyth', 'bigger', 'would', 'awkward', 'carri', 'around', 'sim', 'card', 'defunct', 'tracfon', 'not', 'even', 'android', 'phone', 'work', 'posh', 'see', 'new', 'sim', 'cours', 'want', 'cellphon', 'servic', 'purchas', 'sim', 'servic', 'provid', 'straight', 'talk', 'etc', 'screen', 'resolut', 'quit', 'adequ', 'practic', 'purpos', 'come', 'ppi', 'far', 'coupl', 'week', 'usag', 'would', 'high', 'recommend', 'phone', 'want', 'android', 'phone', 'small', 'tablet', 'note', 'intend', 'use', 'tablet', 'turn', 'airplan', 'mode', 'not', 'constant', 'search', 'cell', 'signal', 'drain', 'batteri', 'turn', 'wifi', 'order'], ['purchas', 'phone', 'year', 'ago', 'satisfi', 'need', 'updat', 'longer', 'access', 'googl', 'play', 'store', 'sd', 'card', 'not', 'recogn', 'camera', 'not', 'work', 'etc', 'factori', 'reset', 'not', 'resolv', 'problem', 'posh', 'said', 'need', 'updat', 'phone', 'unabl', 'updat', 'flash', 'file', 'inform', 'sent', 'via', 'email', 'husband', 'phone', 'get', 'automat', 'updat', 'sent', 'phone', 'regular', 'basi', 'not', 'understand', 'posh', 'not', 'automat', 'send', 'updat', 'phone', 'instead', 'expect', 'custom', 'updat', 'via', 'email', 'not', 'work', 'not', 'offer', 'assist', 'point', 'regret', 'purchas', 'think', 'would', 'better', 'well', 'known', 'name', 'brand', 'phone', 'sinc', 'longer', 'access', 'featur', 'phone', 'posh', 'custom', 'servic', 'not', 'correct', 'issu'], ['phone', 'batteri', 'die', 'fast', 'camera', 'would', 'not', 'load'], ['thing', 'actual', 'work', 'like', 'regular', 'smart', 'phone', 'although', 'look', 'like', 'toy', 'iphon', 'slow', 'sinc', 'upgrad', 'io', 'thing', 'fast', 'respons', 'thing', 'hard', 'figur', 'android', 'stuff', 'come', 'io', 'basic', 'download', 'visual', 'voic', 'mail', 'app', 'free', 'also', 'must', 'download', 'keyboard', 'app', 'thing', 'keyboard', 'realli', 'small', 'use', 'download', 'fleksi', 'make', 'key', 'much', 'bigger', 'make', 'type', 'breez', 'get', 'phone', 'great'], ['respons', 'touchscreen', 'slow', 'unreli'], ['excel', 'price'], ['love', 'new', 'phone', 'need', 'case', 'wallet', 'not', 'use', 'magnet', 'card', 'small', 'big', 'not', 'peopl', 'case', 'fit', 'phone', 'stupid', 'case', 'phone', 'happen', 'case'], ['key', 'board', 'way', 'small', 'hard', 'text', 'daughter', 'like'], ['realli', 'like', 'phone', 'small', 'work', 'pretti', 'well', 'may', 'think', 'weak', 'not', 'app', 'run', 'plasticki', 'batteri', 'life', 'good', 'monitor', 'screen', 'bright', 'kill', 'batteri'], ['work', 'great', 'troubl', 'get', 'data', 'work', 'first', 'good'], ['not', 'great', 'batteri', 'life'], ['excelent'], ['psych', 'receiv', 'phone', 'beauti', 'nice', 'display', 'android', 'platform', 'everyth', 'look', 'need', 'unlock', 'gsm', 'phone', 'travel', 'se', 'asia', 'howev', 'tri', 'use', 'vietnam', 'would', 'not', 'work', 'went', 'coupl', 'mobil', 'phone', 'shop', 'great', 'hope', 'even', 'though', 'want', 'sell', 'sim', 'card', 'air', 'time', 'unabl', 'make', 'work', 'end', 'buy', 'inexpens', 'nokia', 'store', 'first', 'tri', 'use', 'trip'], ['great', 'littl'], ['came', 'broken', 'lol'], ['great', 'littl', 'phone', 'weigh', 'oz', 'postal', 'scale', 'one', 'star', 'recess', 'charg', 'port', 'other', 'mention', 'take', 'util', 'knife', 'case', 'go', 'back', 'kitkat', 'bit', 'weird', 'everyth', 'work', 'great', 'got', 'second', 'phone', 'take', 'run', 'without', 'weigh', 'switch', 'sim', 'card', 'take', 'bit', 'not', 'bad', 'small', 'use', 'everyday', 'phone', 'would', 'buy', 'brand', 'great', 'deal'], ['not', 'good', 'choic', 'son', 'like', 'small', 'drop', 'screen', 'black', 'line', 'thru', 'seem', 'cheapli', 'made', 'even', 'though', 'small', 'still', 'expect', 'decent', 'qualiti'], ['stop', 'work', 'day'], ['excelent'], ['cellphon', 'work', 'well', 'case', 'inadequ', 'protect', 'everyday', 'bump', 'scuff', 'minor', 'drop', 'recommend', 'find', 'differ', 'case', 'modifi', 'exist', 'case', 'protect', 'camera', 'corner', 'accident', 'damag', 'also', 'batteri', 'life', 'somewhat', 'short', 'hour', 'minim', 'phone', 'use', 'last', 'latest', 'support', 'android', 'version', 'phone', 'fall'], ['realli', 'like', 'first', 'day', 'want', 'kid', 'fond', 'sudden', 'day', 'start', 'show', 'line', 'screen', 'return', 'posh', 'make', 'better', 'qualiti', 'phone', 'size', 'wonderful', 'meaniatur', 'friend', 'like'], ['purchas', 'phone', 'sale', 'day', 'use', 'one', 'even', 'die', 'send', 'back', 'refund'], ['kitkat', 'would', 'love', 'star', 'phone', 'run', 'old', 'version', 'android', 'result', 'root', 'instal', 'cyanogenmod', 'make', 'use'], ['love', 'phone'], ['love', 'phone', 'nice', 'size', 'phone', 'price', 'great'], ['fifth', 'phone', 'model', 'within', 'month', 'let', 'us', 'hope', 'honor', 'year', 'not', 'honest', 'recommend', 'phone', 'anyon', 'previous', 'model', 'solid', 'phone', 'rendit', 'certain', 'not'], ['phone', 'come', 'across', 'nice', 'phone', 'not', 'let', 'fool', 'brought', 'novemb', 'stop', 'work', 'begin', 'januari', 'let', 'tell', 'phone', 'junk'], ['good'], ['good', 'phone', 'would', 'recommend', 'friend'], ['nice', 'surpris', 'batteri', 'quit', 'good', 'work', 'great', 'son'], ['dual', 'sim', 'capabl', 'work', 'great'], ['spent', 'hour', 'life', 'fiddl', 'phone', 'never', 'get', 'back', 'problem', 'almost', 'numer', 'mention', 'start', 'doubt', 'phone', 'went', 'phone', 'section', 'text', 'overlaid', 'horizont', 'black', 'stripe', 'point', 'wonder', 'late', 'buy', 'extend', 'warranti', 'phone', 'howev', 'still', 'will', 'give', 'chanc', 'start', 'load', 'app', 'onto', 'phone', 'phone', 'would', 'freez', 'would', 'rebootit', 'note', 'facebook', 'could', 'never', 'get', 'app', 'work', 'time', 'phone', 'screen', 'would', 'total', 'black', 'not', 'respond', 'reboot', 'sever', 'minut', 'could', 'usual', 'turn', 'phone', 'complet', 'hard', 'reset', 'turn', 'not', 'sure', 'whether', 'person', 'test', 'phone', 'request', 'tri', 'load', 'app', 'onto', 'phone', 'first', 'turn', 'seem', 'work', 'fine', 'howev', 'not', 'abl', 'add', 'app', 'phone', 'freez', 'screen', 'turn', 'black', 'not', 'respond', 'reboot', 'much', 'handl', 'said', 'gave', 'hour', 'life', 'phone', 'never', 'get', 'back', 'return', 'phone', 'next', 'day', 'thank', 'amazon', 'return', 'polici'], ['not', 'abl', 'us', 'viber', 'call', 'purchas', 'phone', 'hope', 'would', 'better', 'connect', 'howev', 'everi', 'time', 'call', 'use', 'viber', 'connect', 'get', 'lost', 'call', 'get', 'pick', 'viber', 'text', 'work', 'not', 'viber', 'call', 'disappoint'], ['person', 'phone', 'accompani', 'samsung', 'work', 'phone', 'excel', 'valu', 'full', 'day', 'samsung', 'featur', 'lower', 'screen', 'not', 'read', 'card', 'seem', 'respons', 'dual', 'unlock', 'sim', 'areal', 'plus'], ['excel'], ['thought', 'sprint', 'compat', 'state'], ['purchas', 'phone', 'dad', 'not', 'happi'], ['look', 'like', 'dummi', 'phone'], ['solid', 'dumbphon'], ['muy', 'buen', 'producto'], ['perfect'], ['purchas', 'phone', 'dad', 'not', 'happi'], ['total', 'disappoint'], ['cell', 'phone', 'great', 'phone', 'look', 'basic', 'inexpens', 'cell', 'phone', 'phone', 'draw', 'back', 'get', 'voic', 'mail', 'program', 'voic', 'mail', 'number', 'phone', 'pressv', 'reach', 'mail', 'box'], ['excel', 'comprehens', 'batteri', 'power', 'fantast'], ['great', 'phone'], ['good', 'phone'], ['arriv', 'broken', 'scratch', 'batteri', 'sent', 'right', 'back'], ['far', 'fantast', 'phone', 'fast', 'web', 'look', 'good', 'feel', 'good', 'take', 'beauti', 'pic', 'great', 'selfi', 'sound', 'play', 'music', 'sound', 'realli', 'good', 'batteri', 'life', 'would', 'not', 'believ', 'good', 'batteri', 'life', 'phone', 'yeah', 'happi', 'phone', 'happi'], ['one', 'three', 'month', 'receiv', 'broke', 'charg', 'port', 'technician', 'not', 'fine', 'part', 'phone', 'contact', 'manufactur', 'ask', 'usa', 'year', 'guaranti'], ['phone', 'not', 'charg', 'not', 'turn', 'get', 'fix'], ['first', 'smart', 'phone', 'not', 'even', 'comparison', 'top', 'line', 'phone', 'realli', 'like', 'phone', 'featur', 'want', 'without', 'dollar', 'price', 'tag', 'big', 'yet', 'fit', 'gig', 'remov', 'memori', 'someth', 'not', 'expect', 'oper', 'mobil', 'hot', 'spot', 'movi', 'download', 'show', 'great', 'screen', 'resolut', 'fine', 'not', 'high', 'expens', 'phone', 'tablet', 'cast', 'tv', 'not', 'big', 'camera', 'mega', 'pixel', 'deal', 'breaker', 'recommend', 'back', 'gift', 'like', 'first', 'smart', 'phone'], ['physic', 'aspect', 'phone', 'beauti', 'honest', 'get', 'paid', 'not', 'import', 'app', 'took', 'three', 'time', 'get', 'amazon', 'way', 'dl', 'music', 'comput', 'not', 'bluetooth', 'capabl', 'camera', 'ha', 'good', 'speed', 'dling', 'app', 'posh', 'allow', 'like', 'tunnel', 'make', 'call', 'make', 'great', 'paper', 'weight', 'soon'], ['terribl', 'stuck', 'boot', 'loop', 'right', 'box', 'never', 'got', 'tri', 'phone'], ['smaller', 'thought', 'awesom', 'best', 'ever', 'spent'], ['pros', 'small', 'batteri', 'hold', 'depend', 'usag', 'display', 'start', 'show', 'vertic', 'line', 'black', 'oper', 'white', 'mani', 'web', 'page', 'not', 'usabl', 'due', 'low', 'resolut', 'letter', 'l', 'difficult', 'type'], ['excel', 'phone', 'great', 'featur', 'high', 'recommend', 'price', 'excel', 'qualiti', 'great', 'camera', 'front', 'back', 'con', 'flash', 'second', 'slower', 'actual', 'snap'], ['amaz', 'phone', 'price', 'got', 'sure', 'not', 'complain', 'love', 'pcs', 'wireless'], ['phone', 'bell', 'whistl', 'mani', 'not', 'smaller', 'difficult', 'time', 'use', 'laptop', 'messag', 'use', 'clear', 'mobil', 'phone', 'call', 'piec', 'velcro', 'help', 'slipperi', 'plastic'], ['came', 'broken', 'lol'], ['total', 'worth', 'money'], ['surpris', 'function', 'devic', 'small', 'size', 'handl', 'gps', 'wifi', 'mobil', 'data', 'well', 'full', 'suit', 'googl', 'app', 'gmail', 'play', 'store', 'type', 'hard', 'due', 'devic', 'size'], ['first', 'time', 'bought', 'posh', 'replac', 'blu', 'surpris', 'thin', 'posh', 'touch', 'screen', 'react', 'much', 'faster', 'blu', 'posh', 'octacor', 'price', 'quadcor', 'love', 'design', 'color', 'dark', 'blue', 'almost', 'piti', 'put', 'cover', 'till', 'enjoy', 'posh', 'much'], ['product', 'amaz', 'high', 'recommend', 'anyon', 'look', 'phone', 'take', 'less', 'space', 'still', 'abl', 'check', 'email', 'stream', 'music', 'video', 'extrem', 'portabl', 'call', 'sound', 'clear', 'peopl', 'hear', 'well', 'includ', 'headphon', 'nice', 'crisp', 'clean', 'sound', 'overal', 'top', 'notch', 'product', 'price', 'not', 'beat', 'use', 'tmobil', 'immedi', 'detect', 'network', 'insert', 'sim', 'card', 'turn', 'easi', 'fit', 'finish', 'top', 'notch', 'batteri', 'back', 'cover', 'sim', 'card', 'fit', 'right', 'also', 'custom', 'support', 'posh', 'mobil', 'liter', 'call', 'within', 'minut', 'receiv', 'email', 'question', 'micro', 'sd', 'card', 'buy', 'custom', 'servic', 'posh', 'mobil', 'amazon', 'five', 'star', 'way', 'origin', 'bought', 'someth', 'convers', 'piec', 'i', 'impress', 'actual', 'handl', 'everi', 'task', 'ask', 'far', 'bright', 'screen', 'nice', 'audio', 'link', 'gb', 'card', 'give', 'maximum', 'storag', 'make', 'impress', 'phone', 'https'], ['bought', 'phone', 'small', 'emerg', 'phenomen', 'everyth', 'work', 'even', 'better', 'drop', 'black', 'line', 'diplay', 'well', 'ahv', 'magic', 'repair', 'themself', 'month', 'top', 'qualiti', 'top', 'function'], ['phone', 'suck', 'contact', 'list', 'alway', 'freez', 'unabl', 'use', 'phone'], ['size'], ['great', 'phone', 'use', 'galaxi', 'never'], ['amaz', 'phone', 'month', 'ago', 'bought', 'posh', 'titan', 'hd', 'famili', 'say', 'five', 'phone', 'work', 'great', 'work', 'fast', 'camera', 'nice', 'good', 'memori', 'happi', 'purchas', 'recommend', 'give', 'five', 'star', 'phone'], ['sound', 'system', 'not', 'good', 'not', 'option', 'chang', 'set', 'call', 'volum', 'everi', 'call', 'incom', 'not', 'loud', 'enough', 'even', 'hear', 'anyth'], ['phone', 'gorrilla', 'glass', 'fast', 'ship', 'great', 'deal', 'excel', 'phone'], ['phone', 'batteri', 'die', 'fast', 'camera', 'would', 'not', 'load'], ['great', 'littl', 'phone', 'weigh', 'oz', 'postal', 'scale', 'one', 'star', 'recess', 'charg', 'port', 'other', 'mention', 'take', 'util', 'knife', 'case', 'go', 'back', 'kitkat', 'bit', 'weird', 'everyth', 'work', 'great', 'got', 'second', 'phone', 'take', 'run', 'without', 'weigh', 'switch', 'sim', 'card', 'take', 'bit', 'not', 'bad', 'small', 'use', 'everyday', 'phone', 'would', 'buy', 'brand', 'great', 'deal'], [], ['purchas', 'phone', 'husband', 'want', 'someth', 'small', 'lightweight', 'featur', 'larger', 'touch', 'screen', 'littl', 'phone', 'super', 'cool', 'easi', 'use', 'phone', 'light', 'small', 'may', 'forget', 'actual', 'pocket', 'everyth', 'phone', 'small', 'text', 'app', 'micro', 'read', 'glass', 'must', 'sight', 'challeng', 'keypad', 'display', 'incred', 'small', 'purchas', 'micro', 'stylus', 'help', 'unless', 'small', 'littl', 'fingertip', 'phone', 'supercool', 'servic', 'attend', 'att', 'gather', 'around', 'us', 'examin', 'like', 'small', 'foreign', 'object', 'outer', 'space', 'must', 'give', 'shout', 'mike', 'posh', 'tech', 'support', 'mike', 'thank', 'help'], ['phone', 'work', 'coupl', 'thing', 'not', 'like', 'sensit', 'touch', 'screen', 'not', 'great', 'sometim', 'touch', 'sever', 'time', 'acknowledg', 'intern', 'memori', 'not', 'enough', 'memori', 'free', 'slow', 'respons', 'posit', 'touch', 'screen', 'not', 'accur', 'think', 'touch', 'could', 'q', 'instead', 'cell', 'use', 'android', 'not', 'allow', 'file', 'transfer', 'intern', 'memori', 'sd', 'card', 'run', 'memori', 'quick', 'not', 'expect', 'upgrad', 'os', 'time', 'soon'], ['search', 'accessori', 'cycl', 'need', 'ran', 'phone', 'immedi', 'caught', 'attent', 'alway', 'lookout', 'player', 'bring', 'cycl', 'look', 'like', 'fit', 'bill', 'order', 'one', 'deliv', 'dayth', 'good', 'size', 'need', 'fit', 'coin', 'pocket', 'jean', 'without', 'deal', 'bulk', 'regular', 'phone', 'screen', 'bright', 'enough', 'not', 'respons', 'galaxi', 'respons', 'enough', 'use', 'daili', 'app', 'download', 'play', 'store', 'one', 'case', 'play', 'said', 'phone', 'not', 'compat', 'mountain', 'bike', 'pro', 'abl', 'sideload', 'work', 'fine', 'sound', 'surpris', 'good', 'someth', 'size', 'work', 'flawless', 'bluetooth', 'headset', 'drive', 'game', 'blast', 'smooth', 'playback', 'responsiveth', 'bad', 'keyboard', 'input', 'small', 'download', 'big', 'keyboard', 'app', 'help', 'app', 'text', 'big', 'not', 'read', 'whole', 'thing', 'due', 'small', 'screen', 'bluetooth', 'issu', 'pair', 'one', 'devic', 'tri', 'pair', 'anoth', 'devic', 'seem', 'problem', 'unless', 'unpair', 'first', 'devicenet', 'star', 'like', 'much', 'end', 'buy', 'give', 'famili', 'use', 'navig', 'music', 'player', 'cycl', 'plus', 'phone', 'capabl', 'within', 'tip', 'load', 'ampm', 'play', 'playlist', 'time', 'surround', 'sound', 'experi', 'cycl', 'groupcool', 'tip', 'gvs', 'gesutr', 'launcher', 'let', 'us', 'draw', 'screen', 'launch', 'app', 'shortcut', 'work', 'well', 'small', 'screen'], ['charg', 'port', 'finicki', 'qualiti', 'exact', 'expect', 'price', 'good', 'basic', 'phone', 'great', 'use'], ['key', 'board', 'way', 'small', 'hard', 'text', 'daughter', 'like'], ['good', 'product'], ['product', 'amaz', 'high', 'recommend', 'anyon', 'look', 'phone', 'take', 'less', 'space', 'still', 'abl', 'check', 'email', 'stream', 'music', 'video', 'extrem', 'portabl', 'call', 'sound', 'clear', 'peopl', 'hear', 'well', 'includ', 'headphon', 'nice', 'crisp', 'clean', 'sound', 'overal', 'top', 'notch', 'product', 'price', 'not', 'beat', 'use', 'tmobil', 'immedi', 'detect', 'network', 'insert', 'sim', 'card', 'turn', 'easi', 'fit', 'finish', 'top', 'notch', 'batteri', 'back', 'cover', 'sim', 'card', 'fit', 'right', 'also', 'custom', 'support', 'posh', 'mobil', 'liter', 'call', 'within', 'minut', 'receiv', 'email', 'question', 'micro', 'sd', 'card', 'buy', 'custom', 'servic', 'posh', 'mobil', 'amazon', 'five', 'star', 'way', 'origin', 'bought', 'someth', 'convers', 'piec', 'i', 'impress', 'actual', 'handl', 'everi', 'task', 'ask', 'far', 'bright', 'screen', 'nice', 'audio', 'link', 'gb', 'card', 'give', 'maximum', 'storag', 'make', 'impress', 'phone', 'https'], ['came', 'broken', 'lol'], ['great', 'littl', 'phone', 'weigh', 'oz', 'postal', 'scale', 'one', 'star', 'recess', 'charg', 'port', 'other', 'mention', 'take', 'util', 'knife', 'case', 'go', 'back', 'kitkat', 'bit', 'weird', 'everyth', 'work', 'great', 'got', 'second', 'phone', 'take', 'run', 'without', 'weigh', 'switch', 'sim', 'card', 'take', 'bit', 'not', 'bad', 'small', 'use', 'everyday', 'phone', 'would', 'buy', 'brand', 'great', 'deal'], ['great', 'product'], ['not', 'great', 'batteri', 'life'], ['either', 'batteri', 'phone', 'die', 'less', 'week', 'look', 'get', 'help', 'via', 'one', 'year', 'warrenti', 'form', 'factor', 'tini', 'phone', 'realli', 'nice', 'may', 'littl', 'tini', 'complet', 'use', 'great', 'stealth', 'factor', 'though', 'quit', 'convers', 'posh', 'micro', 'x', 'fulli', 'function', 'android', 'phone', 'useabl', 'app', 'vari', 'due', 'tini', 'screen', 'success', 'vari', 'app', 'think', 'cell', 'phone', 'general', 'get', 'big', 'miss', 'old', 'lg', 'optimus', 'v', 'right', 'size', 'keypad', 'micro', 'x', 'small', 'sinc', 'messag', 'via', 'mightytext', 'comput', 'not', 'huge', 'problem', 'buy', 'app', 'call', 'big', 'button', 'realli', 'help', 'tri', 'differ', 'experi', 'sound', 'good', 'backup', 'plan'], ['love', 'gotten', 'one', 'color', 'one', 'fyi', 'other', 'sim', 'card', 'not', 'regular', 'mini', 'middl', 'size', 'care', 'cut', 'sim', 'card', 'size', 'good', 'thing', 'old', 'one', 'copi', 'size'], ['batteri', 'not', 'stay', 'charg', 'long', 'plus', 'text', 'button', 'small'], ['purchas', 'phone', 'sale', 'day', 'use', 'one', 'even', 'die', 'send', 'back', 'refund'], ['system', 'seem', 'work', 'without', 'issu', 'screen', 'crack', 'without', 'drop', 'stress', 'within', 'week'], ['realli', 'want', 'love', 'phone', 'disappoint', 'bluetooth', 'not', 'work', 'none', 'devic', 'find', 'matter', 'i', 'never', 'troubl', 'sync', 'car', 'even', 'window', 'phone', 'phone', 'gps', 'keep', 'drop', 'batteri', 'life', 'crap', 'minut', 'today', 'drop', 'phone', 'freez', 'often', 'facebook', 'instagram', 'i', 'less', 'week', 'return'], ['excel', 'price', 'devic', 'perform', 'well', 'phone', 'cost', 'twice', 'much'], ['good'], ['pros', 'look', 'good', 'exact', 'pictur', 'construct', 'well', 'feel', 'solid', 'not', 'flimsi', 'otherwis', 'not', 'thin', 'esp', 'compar', 'recent', 'releas', 'phone', 'like', 'googl', 'nexus', 'iphon', 'time', 'even', 'case', 'come', 'not', 'feel', 'screen', 'bright', 'enough', 'prefer', 'backlight', 'turn', 'near', 'way', 'preserv', 'batteri', 'life', 'good', 'batteri', 'life', 'day', 'one', 'uniqu', 'thing', 'menu', 'button', 'right', 'bottom', 'row', 'instead', 'middl', 'far', 'i', 'tri', 'not', 'move', 'not', 'yet', 'taken', 'advantag', 'capabl', 'tri', 'phone', 'outsid', 'us', 'signal', 'ty', 'factori', 'bloatwar', 'imposs', 'uninstal', 'unlik', 'samsung', 'phone', 'exampl', 'like', 'help', 'batteri', 'life', 'con', 'despit', 'camera', 'actual', 'camera', 'app', 'default', 'pictur', 'still', 'come', 'bit', 'speaker', 'volum', 'call', 'quieter', 'i', 'use', 'even', 'highest', 'volum', 'make', 'bit', 'difficult', 'hear', 'not', 'quiet', 'environ'], ['great', 'screen', 'size', 'great', 'volum', 'like', 'head', 'phone', 'confess', 'screen', 'protector', 'case', 'great', 'love'], ['good'], ['inexpens', 'great', 'phone', 'wait', 'buy'], ['i', 'phone', 'month', 'yet', 'problem', 'batteri', 'one', 'best', 'i', 'seen', 'last', 'well', 'throughout', 'day', 'night', 'taken', 'sever', 'drop', 'not', 'scratch', 'fast', 'camera', 'qualiti', 'nice', 'price', 'great', 'get', 'i', 'posh', 'mobil', 'phone', 'realli', 'compar', 'unless', 'dollar'], ['buy', 'not', 'regret'], ['use', 'devic', 'month', 'problem', 'work', 'great'], ['phone', 'suck', 'freez', 'constant', 'constant', 'turn', 'work', 'might', 'not', 'not', 'work', 'proper', 'never', 'purchas', 'phone', 'not', 'phone', 'want'], ['good', 'basic', 'call', 'text', 'pictur', 'not', 'much', 'game', 'phone'], ['receiv', 'replac', 'revel', 'pro', 'phone', 'spend', 'day', 'play', 'would', 'say', 'phone', 'great', 'replac', 'origin', 'purchas', 'phone', 'dual', 'sim', 'card', 'function', 'although', 'mani', 'perk', 'phone', 'call', 'clariti', 'fm', 'radio', 'speed', 'would', 'say', 'impress', 'phone', 'compar', 'galaxi', 'phone', 'market', 'time', 'tell', 'softwar', 'actual', 'devic', 'withstand', 'normal', 'use', 'overal', 'satisfi', 'replac', 'posh', 'mobil', 'sent', 'pleas', 'feel', 'free', 'ask', 'question', 'felt', 'review', 'help', 'anyway', 'pleas', 'click', 'yes'], ['nice', 'phone'], ['good', 'product', 'recommend'], ['i', 'done', 'pay', 'phone', 'everyth', 'need'], ['meet', 'expect', 'fantast', 'sale', 'price'], ['broke', 'galaxi', 'instead', 'pay', 'million', 'dollar', 'replac', 'heard', 'posh', 'mobil', 'decid', 'give', 'phone', 'go', 'get', 'exponenti', 'pay', 'go', 'understand', 'not', 'samsung', 'appl', 'would', 'tremend', 'surpris', 'like', 'mine', 'enough', 'would', 'rather', 'stick', 'posh', 'inexpens', 'chang', 'next', 'new', 'phone', 'whenev', 'feel', 'like', 'oppos', 'get', 'two', 'year', 'contract', 'samsung', 'appl', 'pay', 'carrier', 'thought', 'base', 'use', 'phone', 'work', 'love', 'look', 'sleek', 'stylish', 'enough', 'peopl', 'ask', 'type', 'phone', 'style', 'someth', 'posh', 'tri', 'go', 'unlock', 'liter', 'plug', 'sim', 'boom', 'run', 'screen', 'perfect', 'fine', 'term', 'qualiti', 'not', 'anyth', 'like', 'also', 'five', 'inch', 'screen', 'bare', 'notic', 'i', 'watch', 'netflix', 'someth', 'process', 'speed', 'hair', 'slow', 'notic', 'especi', 'type', 'not', 'respons', 'not', 'realli', 'notic', 'much', 'not', 'use', 'swipe', 'featur', 'type', 'touch', 'screen', 'function', 'tight', 'understand', 'differ', 'lte', 'perfect', 'surf', 'text', 'etc', 'howev', 'top', 'lte', 'least', 'three', 'time', 'faster', 'though', 'i', 'never', 'stream', 'video', 'outsid', 'wifi', 'anyway', 'i', 'mobil', 'data', 'i', 'surf', 'text', 'almost', 'notic', 'differ', 'keep', 'stream', 'thing', 'mind', 'buy', 'watch', 'video', 'wifi', 'not', 'issu', 'not', 'miss', 'lte', 'lack', 'storag', 'space', 'pretti', 'irrelev', 'upgrad', 'gb', 'mp', 'camera', 'take', 'pretti', 'nice', 'sharp', 'pic', 'not', 'particular', 'vibrant', 'perfect', 'clear', 'app', 'take', 'photo', 'add', 'bright', 'camera', 'come', 'accessori', 'phone', 'gel', 'case', 'pretti', 'nice', 'not', 'detract', 'phone', 'line', 'lot', 'phone', 'lot', 'less', 'money', 'contract', 'plan', 'like', 'straight', 'talk', 'like', 'market', 'buy', 'posh', 'mobil', 'realli', 'consid', 'regardless', 'sinc', 'unlock', 'take', 'essenti', 'carrier', 'except', 'mayb', 'sprint'], ['compar', 'revel', 'posh', 'revel', 'android', 'kit', 'kat', 'camera', 'dual', 'sim', 'smartphon', 'white', 'far', 'superior', 'phone', 'price', 'purchas', 'six', 'month', 'ago', 'issu', 'get', 'one', 'full', 'function', 'order', 'final', 'get', 'one', 'bought', 'wife', 'qualiti', 'control', 'issu', 'phone', 'perfect', 'work', 'order', 'box', 'silicon', 'case', 'come', 'clear', 'better', 'transluc', 'back', 'screen', 'protector', 'great', 'sort', 'paperi', 'feel', 'seem', 'tad', 'quicker', 'great', 'phone', 'wife', 'tri', 'decid', 'go', 'unless', 'realli', 'want', 'color', 'come', 'partial', 'appl', 'green'], ['bad', 'cell', 'phoen', 'pleas', 'not', 'wast', 'money', 'bought', 'item', 'week', 'go', 'current', 'block', 'button', 'not', 'work', 'adn', 'sometim', 'phone', 'still', 'block', 'buy', 'anoth', 'phone', 'guy', 'phone', 'not', 'follow', 'advic', 'phone', 'bad', 'option'], ['bought', 'one', 'dad', 'husband', 'not', 'tech', 'savi', 'think', 'great', 'phone', 'awesom', 'price'], ['great', 'phone', 'foe', 'price', 'i', 'problem', 'everyth', 'run', 'without', 'issu', 'second', 'posh', 'decid', 'go', 'larger', 'screen', 'easi', 'see', 'even', 'read', 'book'], ['far', 'love', 'phone', 'larg', 'screen', 'light', 'weight', 'prettymuch', 'everyth', 'need', 'found', 'great', 'case', 'use', 'galaxi', 'mega', 'one', 'nokia', 'lumia', 'g', 'flex', 'vertic', 'leather', 'case', 'magnet', 'closur', 'belt', 'clip', 'belt', 'loop', 'fit', 'otterbox', 'commut', 'case', 'not', 'defend', 'case', 'packag', 'wonderfli'], ['awesom', 'phone', 'glad', 'found'], ['phone', 'month', 'start', 'shut', 'not', 'want', 'turn', 'reboot'], ['good', 'phone', 'camera', 'not', 'work'], ['purchas', 'yo', 'complaint', 'far', 'good', 'month', 'later'], ['love', 'phone', 'nice', 'feel', 'look', 'fast', 'lag', 'two', 'hour', 'case', 'would', 'nice', 'need', 'ebook', 'game', 'also', 'tri', 'dl', 'someth', 'need', 'anoth', 'app', 'like', 'adob', 'not', 'not', 'abl', 'see', 'read', 'file', 'alway', 'give', 'error', 'messag', 'not', 'not', 'read', 'file'], ['phone', 'work', 'excel', 'last', 'week', 'hard', 'hear', 'incom', 'call', 'batteri', 'die', 'fast', 'not', 'find', 'armor', 'case', 'fit', 'not', 'return', 'impress', 'yr', 'warranti'], ['great', 'phone', 'never', 'problem', 'peopl', 'support', 'great', 'email', 'got', 'back', 'day', 'ask', 'updat', 'got', 'link', 'afternoon', 'i', 'go', 'buy', 'anoth', 'lot', 'posh'], ['love', 'great', 'phone'], ['phone', 'month', 'start', 'shut', 'not', 'want', 'turn', 'reboot'], ['want', 'smartphon', 'not', 'want', 'pay', 'fee', 'everi', 'month', 'purchas', 'posh', 'titan', 'max', 'hd', 'smartphon', 'tri', 'other', 'one', 'unlock', 'gsm', 'phone', 'use', 'tracfon', 'sim', 'activ', 'kit', 'purchas', 'walmart', 'see', 'attach', 'photo', 'download', 'pdf', 'manual', 'contact', 'support', 'web', 'page', 'let', 'tell', 'support', 'fantast', 'sever', 'question', 'email', 'respons', 'contact', 'tracfon', 'run', 'time', 'go', 'play', 'store', 'download', 'tracfon', 'app', 'keep', 'track', 'servic', 'day', 'etc', 'not', 'pay', 'attens', 'user', 'say', 'app', 'updat', 'tripl', 'minut', 'txt', 'one', 'fantast', 'phone', 'size', 'perfect', 'screen', 'size', 'iphon', 'case', 'avail', 'search', 'amazon', 'samsung', 'galaxi', 'mega', 'phone', 'find', 'mani', 'style', 'choos', 'take', 'littl', 'modif', 'husband', 'cut', 'notch', 'right', 'side', 'power', 'sound', 'button', 'use', 'clear', 'plastic', 'case', 'fit', 'phone', 'short', 'updat', 'review', 'coupl', 'tell', 'i', 'happi', 'phone', 'buy', 'one', 'not', 'disappoint'], ['not', 'make', 'mistak', 'buy', 'phone', 'bigger', 'not', 'alway', 'better', 'return', 'next', 'day', 'blurri', 'screen', 'never', 'would', 'hold', 'charg', 'not', 'recommend', 'phone'], ['excel'], ['love', 'phone', 'nice', 'feel', 'look', 'fast', 'lag', 'two', 'hour', 'case', 'would', 'nice', 'need', 'ebook', 'game', 'also', 'tri', 'dl', 'someth', 'need', 'anoth', 'app', 'like', 'adob', 'not', 'not', 'abl', 'see', 'read', 'file', 'alway', 'give', 'error', 'messag', 'not', 'not', 'read', 'file'], ['terribl', 'phone', 'not', 'wast', 'money'], ['great', 'phone', 'good', 'size', 'great', 'camera', 'wonder', 'valu', 'money', 'even', 'doubl', 'money', 'howev', 'two', 'problem', 'everi', 'time', 'boot', 'get', 'launcher', 'stop', 'work', 'must', 'fix', 'moment', 'app', 'work', 'main', 'problem', 'case', 'wallet', 'style', 'phone', 'much', 'bigger', 'phone', 'slide', 'mechan', 'enabl', 'use', 'phone', 'break', 'easili', 'wish', 'posh', 'would', 'come', 'clamshel', 'case'], ['phone', 'great', 'opinion', 'mine', 'year', 'best', 'thing', 'batteri', 'replac', 'bought', 'extra', 'origin', 'still', 'work', 'fine', 'oper', 'system', 'android', 'instal', 'minim', 'load', 'app', 'custom', 'remov', 'one', 'not', 'want', 'not', 'case', 'devic', 'use', 'add', 'sd', 'card', 'basic', 'put', 'everyth', 'without', 'constraint', 'partit', 'phone', 'memori', 'permit', 'small', 'amount', 'app', 'octacor', 'processor', 'quick', 'reliabl', 'never', 'freez', 'issu', 'confess', 'not', 'game', 'phone', 'not', 'comment', 'phone', 'high', 'resourc', 'usag', 'say', 'phone', 'big', 'wife', 'love', 'phone', 'use', 'everyth', 'camera', 'not', 'super', 'high', 'grade', 'adequ', 'averag', 'user', 'would', 'definit', 'recommend', 'phone'], ['excel', 'phone', 'pleas'], ['love', 'camera', 'posh', 'mobil', 'custom', 'servic', 'awesom', 'help', 'question', 'support', 'regard', 'phone'], ['fiance', 'love', 'want', 'get', 'dual', 'sim', 'phone', 'visit', 'home', 'one', 'larg', 'screen', 'dual', 'sim', 'phone', 'decent', 'spec', 'ship', 'countri', 'small', 'eastern', 'europ', 'complaint', 'whatsoev', 'thank'], ['awesom'], ['money', 'simpli', 'best', 'phone'], ['phone', 'hard', 'time', 'locat', 'gps', 'not', 'work', 'look', 'phone', 'use', 'gps', 'forget', 'not', 'pick', 'five', 'gigahertz', 'practic', 'stand', 'next', 'router', 'order', 'get', 'good', 'signal', 'camera', 'hard', 'time', 'focus', 'object', 'caus', 'blurri', 'pictur', 'not', 'recommend', 'phone', 'know', 'price', 'reduc', 'favor', 'spend', 'extra', 'buy', 'samsung', 'note', 'i', 'one', 'i', 'sorri', 'switch', 'not', 'blow', 'like', 'crap'], ['order', 'new', 'phone', 'sent', 'ring', 'level', 'low', 'miss', 'call', 'ringer', 'not', 'set', 'individu', 'caller', 'wife', 'never', 'miss', 'call', 'hand', 'free', 'speaker', 'not', 'capabl', 'pick', 'voic', 'not', 'direct', 'hand', 'alarm', 'terribl', 'wake', 'music', 'instead', 'gentl', 'wake', 'jolt', 'awak', 'although', 'choic', 'not', 'suitabl', 'wake', 'set', 'doze', 'button', 'minimum', 'alarm', 'set', 'worst', 'part', 'phone', 'keep', 'make', 'small', 'ding', 'sound', 'tell', 'phone', 'messag', 'usual', 'program', 'want', 'read', 'contact', 'locat', 'phone', 'not', 'tell', 'program', 'set', 'differ', 'tone', 'go', 'crazi', 'time', 'alway', 'one', 'hour', 'ahead', 'roam', 'way', 'correct', 'tri', 'chang', 'gmt', 'set', 'cell', 'provid', 'time', 'neither', 'camera', 'workabl', 'long', 'flash', 'not', 'need', 'flash', 'not', 'coordin', 'shutter', 'flash', 'pictur', 'dark', 'not', 'usabl', 'pictur', 'stabil', 'mani', 'pictur', 'come', 'blur'], ['surpris', 'function', 'devic', 'small', 'size', 'handl', 'gps', 'wifi', 'mobil', 'data', 'well', 'full', 'suit', 'googl', 'app', 'gmail', 'play', 'store', 'type', 'hard', 'due', 'devic', 'size'], ['got', 'phone', 'time', 'came', 'case', 'screen', 'protector', 'case', 'not', 'fit', 'well', 'run', 'decent', 'not', 'top', 'dollar', 'phone', 'averag', 'person', 'work', 'great', 'batteri', 'life', 'ok', 'screen', 'look', 'good'], ['good', 'batteri', 'go', 'earli'], ['toughest', 'phone', 'solid', 'featur', 'sharp', 'knife', 'beauti', 'camera', 'qualiti', 'fraction', 'price', 'big', 'name', 'second', 'one', 'drop', 'first', 'gutter', 'water', 'februari', 'kept', 'chug', 'august', 'defect', 'drop', 'one', 'could', 'hear', 'speak', 'phone', 'bluetooth', 'hear', 'consid', 'phone', 'would', 'total', 'unus', 'glitch', 'mad', 'amaz', 'tri', 'buy', 'temporari', 'blue', 'studio', 'phone', 'camer', 'suck', 'chunki', 'wherea', 'larg', 'slim', 'profil', 'without', 'flimsi', 'come', 'protect', 'case', 'find', 'thought', 'love', 'love', 'love', 'phone', 'dual', 'sim', 'peopl', 'like', 'outsid', 'countri', 'travel', 'one', 'two', 'certain', 'one', 'often', 'not', 'lose', 'contact', 'home', 'base', 'folk', 'gone', 'not', 'keep', 'track', 'foreign', 'number', 'not', 'great', 'stuff'], ['mobil', 'data', 'not', 'call', 'lg', 'sim', 'chip', 'not', 'recogn'], ['nice', 'phone', 'howev', 'gps', 'not', 'work', 'wifi', 'would', 'not', 'stay', 'connect', 'sim', 'could', 'not', 'found', 'time', 'contact', 'posh', 'tri', 'fix', 'product', 'fix', 'not', 'work'], ['bought', 'mom', 'not', 'even', 'work', 'first', 'day', 'not', 'abl', 'receiv', 'call', 'found', 'custom', 'call', 'back', 'later', 'tell', 'call', 'could', 'not', 'get', 'anoth', 'disappoint', 'moment', 'touch', 'phone', 'tell', 'made', 'cheap', 'plastic', 'pay', 'get'], ['great', 'telephon', 'hard', 'text', 'not', 'imposs', 'make', 'sure', 'small', 'hand'], ['first', 'time', 'bought', 'posh', 'replac', 'blu', 'surpris', 'thin', 'posh', 'touch', 'screen', 'react', 'much', 'faster', 'blu', 'posh', 'octacor', 'price', 'quadcor', 'love', 'design', 'color', 'dark', 'blue', 'almost', 'piti', 'put', 'cover', 'till', 'enjoy', 'posh', 'much'], ['love', 'phone', 'light', 'weight', 'great', 'size', 'best', 'phone', 'ever', 'owe', 'move', 'area', 'cdma', 'work'], ['batteri', 'not', 'stay', 'charg', 'long', 'plus', 'text', 'button', 'small'], ['i', 'day', 'far', 'far', 'better', 'expect', 'note', 'issu', 'user', 'phone', 'not', 'work', 'metropc', 'save', 'time', 'least', 'not', 'area', 'att', 'fine', 'believ', 'entri', 'amazon', 'say', 'work', 'metropc', 'incorrect', 'work', 'network', 'accept', 'unlock', 'gsm', 'usb', 'charger', 'not', 'hard', 'work', 'around', 'take', 'standard', 'length', 'microusb', 'plug', 'take', 'hardwar', 'store', 'razor', 'blade', 'slice', 'away', 'angl', 'plastic', 'connector', 'metal', 'part', 'realli', 'not', 'difficult', 'need', 'worri', 'slight', 'longer', 'includ', 'cabl', 'cut', 'away', 'degre', 'angl', 'standard', 'cabl', 'fit', 'fine', 'case', 'slight', 'angl', 'connector', 'meet', 'bodi', 'side', 'cut', 'away', 'slight', 'without', 'cabl', 'mod', 'connect', 'errat', 'use', 'standard', 'usb', 'cabl', 'standbi', 'batteri', 'life', 'quit', 'good', 'use', 'anyth', 'batteri', 'drain', 'fast', 'weigh', 'gram', 'not', 'expect', 'tini', 'batteri', 'long', 'life', 'not', 'littl', 'phone', 'amaz', 'actual', 'manag', 'cram', 'full', 'android', 'smart', 'phone', 'onto', 'devic', 'type', 'delic', 'sinc', 'key', 'icon', 'tini', 'actual', 'get', 'hang', 'unless', 'thicker', 'term', 'size', 'phone', 'liter', 'size', 'top', 'lid', 'part', 'old', 'flip', 'phone', 'not', 'think', 'better', 'phone', 'thing', 'like', 'backpack', 'need', 'phone', 'ride', 'etc', 'prefer', 'small', 'size', 'almost', 'never', 'carri', 'full', 'size', 'smart', 'phone', 'not', 'like', 'not', 'know', 'year', 'durabl', 'thing', 'actual', 'honest', 'price', 'not', 'even', 'care', 'fail', 'buy', 'everi', 'galaxi', 'iphon', 'buy', 'not', 'near', 'ador'], ['work', 'great', 'troubl', 'get', 'data', 'work', 'first', 'good'], ['amaz', 'phone', 'price', 'got', 'sure', 'not', 'complain', 'love', 'pcs', 'wireless'], ['exelent'], ['camera', 'stop', 'work', 'month', 'buy', 'app', 'start', 'freez', 'phone', 'start', 'glitch', 'would', 'not', 'even', 'power'], ['not', 'live', 'venezuela', 'return', 'phone', 'damag', 'not', 'oper', 'touch', 'not', 'not', 'achiev', 'help', 'pleas', 'feel', 'lost', 'money', 'hard', 'buy', 'phone', 'nsosotro', 'pleas', 'help', 'repair', 'not', 'achiev', 'send', 'thank'], ['surpris', 'function', 'devic', 'small', 'size', 'handl', 'gps', 'wifi', 'mobil', 'data', 'well', 'full', 'suit', 'googl', 'app', 'gmail', 'play', 'store', 'type', 'hard', 'due', 'devic', 'size'], ['fast', 'ship', 'love', 'phone', 'tini', 'everyth', 'bigger', 'phone', 'great', 'great', 'seller'], ['screen', 'broken'], ['warn', 'posh', 'micro', 'x', 'unlock', 'smartphon', 'gsm', 'not', 'worth', 'screen', 'lock', 'devic', 'slow', 'recept', 'poor', 'call', 'often', 'week', 'give', 'chanc', 'bought', 'anoth', 'attempt', 'return', 'amazon', 'well', 'day', 'return', 'small', 'small', 'though', 'attract', 'would', 'not', 'suggest', 'depend', 'upon', 'lifelin', 'not', 'depend', 'upon', 'take', 'care', 'item', 'not', 'buyer', 'bewar', 'floyd', 'reed', 'amazon', 'prime', 'custom'], ['junk', 'not', 'power', 'anymor', 'screen', 'start', 'fade', 'away'], ['either', 'batteri', 'phone', 'die', 'less', 'week', 'look', 'get', 'help', 'via', 'one', 'year', 'warrenti', 'form', 'factor', 'tini', 'phone', 'realli', 'nice', 'may', 'littl', 'tini', 'complet', 'use', 'great', 'stealth', 'factor', 'though', 'quit', 'convers', 'posh', 'micro', 'x', 'fulli', 'function', 'android', 'phone', 'useabl', 'app', 'vari', 'due', 'tini', 'screen', 'success', 'vari', 'app', 'think', 'cell', 'phone', 'general', 'get', 'big', 'miss', 'old', 'lg', 'optimus', 'v', 'right', 'size', 'keypad', 'micro', 'x', 'small', 'sinc', 'messag', 'via', 'mightytext', 'comput', 'not', 'huge', 'problem', 'buy', 'app', 'call', 'big', 'button', 'realli', 'help', 'tri', 'differ', 'experi', 'sound', 'good', 'backup', 'plan'], ['final', 'look', 'small', 'android', 'media', 'player', 'year', 'wast', 'coupl', 'complet', 'useless', 'one', 'look', 'perfect', 'fit', 'pocket', 'googl', 'play', 'store', 'audibl', 'app', 'load', 'without', 'glitch', 'book', 'play', 'discret', 'work', 'sound', 'equal', 'big', 'devic', 'also', 'well', 'posh', 'feel', 'like', 'one', 'design', 'specif', 'think', 'bypass', 'one', 'sever', 'time', 'find', 'decent', 'leather', 'case'], ['handi', 'littl', 'thing', 'not', 'tri', 'intern', 'yet', 'look', 'great', 'littl', 'slow', 'heavier', 'app', 'keyboard', 'littl', 'small', 'make', 'great', 'backup', 'travel', 'phone', 'handi', 'littl', 'player'], ['use', 'media', 'devic', 'work', 'not', 'know', 'function', 'actual', 'phone', 'think', 'use', 'phone', 'actual', 'way', 'i', 'would', 'use', 'phone', 'i', 'would', 'go', 'crazi', 'giant', 'phablet', 'love', 'play', 'game', 'read', 'ebook', 'thing', 'make', 'great', 'make', 'horribl', 'work', 'went', 'look', 'someth', 'small', 'inexpens', 'use', 'phone', 'fit', 'bill', 'fantast', 'would', 'gone', 'star', 'option', 'real', 'downsid', 'keyboard', 'like', 'review', 'said', 'absolut', 'ridicul', 'not', 'think', 'could', 'bad', 'said', 'not', 'exagger', 'near', 'imposs', 'use', 'even', 'stylus', 'not', 'larg', 'finger', 'general', 'not', 'problem', 'keyboard', 'get', 'sign', 'android', 'app', 'want', 'use', 'took', 'far', 'long', 'made', 'want', 'throw', 'darn', 'thing', 'across', 'room', 'download', 'free', 'trial', 'swype', 'help', 'littl', 'realli', 'much', 'work', 'screen', 'i', 'sign', 'set', 'great', 'i', 'use', 'week', 'everyth', 'i', 'would', 'hope', 'could', 'small', 'relat', 'flat', 'fit', 'pocket', 'run', 'short', 'design', 'key', 'app', 'need', 'work', 'fine', 'wifi', 'bluetooth', 'headphon', 'lack', 'app', 'drawer', 'odd', 'sinc', 'not', 'use', 'much', 'app', 'put', 'one', 'need', 'home', 'screen', 'not', 'realli', 'mess', 'other', 'thing', 'kind', 'slow', 'open', 'understand', 'i', 'compar', 'much', 'power', 'phone', 'open', 'work', 'look', 'media', 'devic', 'wifi', 'bluetooth', 'small', 'enough', 'fit', 'tini', 'littl', 'key', 'pocket', 'built', 'run', 'short', 'perfect'], ['great', 'buy', 'price', 'best'], ['aesthet', 'pleas', 'phone', 'look', 'horribl', 'camera', 'imag', 'blurri', 'despit', 'imag', 'appear', 'focus', 'right', 'snap', 'pic'], ['junk', 'lock', 'updat', 'app', 'not', 'even', 'access', 'devic'], ['love', 'phone', 'wish', 'batteri', 'last', 'littl', 'longer', 'great', 'size', 'pecfect', 'price'], ['first', 'time', 'bought', 'posh', 'replac', 'blu', 'surpris', 'thin', 'posh', 'touch', 'screen', 'react', 'much', 'faster', 'blu', 'posh', 'octacor', 'price', 'quadcor', 'love', 'design', 'color', 'dark', 'blue', 'almost', 'piti', 'put', 'cover', 'till', 'enjoy', 'posh', 'much'], ['sound', 'system', 'not', 'good', 'not', 'option', 'chang', 'set', 'call', 'volum', 'everi', 'call', 'incom', 'not', 'loud', 'enough', 'even', 'hear', 'anyth'], ['cool', 'size', 'small', 'near', 'useless', 'phone', 'read', 'sms', 'respond', 'anyth', 'via', 'keyboard', 'tax', 'small', 'digit', 'not', 'ver', 'accur', 'make', 'impract', 'devic', 'android', 'kitkat', 'os', 'strip', 'glitchi', 'not', 'intuit', 'clock', 'kept', 'disappear', 'status', 'bar', 'otg', 'support', 'usb', 'charg', 'port', 'deep', 'cabl', 'near', 'useless', 'poor', 'design', 'screen', 'small', 'app', 'webpag', 'etc', 'forc', 'screen', 'text', 'forc', 'intoler', 'vertic', 'format', 'batteri', 'poor', 'indic', 'useless', 'softkey', 'light', 'light', 'goe', 'fast', 'make', 'navig', 'frustrat', 'almost', 'set', 'control', 'anyth', 'set', 'not', 'one', 'place', 'find', 'tri', 'chang', 'lock', 'screen', 'said', 'run', 'netflix', 'stream', 'servic', 'bluetooth', 'devic', 'pair', 'work', 'fine', 'tan', 'nes', 'snes', 'emul', 'littl', 'lag', 'use', 'bt', 'game', 'pad', 'fm', 'radio', 'cool', 'bonus', 'face', 'us', 'releas', 'awesom', 'neat', 'near', 'useless', 'screen', 'area', 'larger', 'phone', 'outer', 'size', 'would', 'nova', 'launcher', 'tweak', 'phone', 'not', 'practic', 'daili', 'use', 'good', 'backup', 'emerg', 'devic'], ['tini', 'lot', 'peopl', 'think', 'toy', 'i', 'use', 'month', 'work', 'great', 'want', 'someth', 'talk', 'text', 'use', 'tablet', 'web', 'search', 'facebook', 'want', 'someth', 'fit', 'small', 'purs', 'nice', 'download', 'swype', 'app', 'could', 'text', 'better', 'realli', 'difficult', 'text', 'without', 'also', 'get', 'random', 'text', 'everi', 'two', 'week', 'godaddi', 'one', 'onlin', 'place', 'assum', 'got', 'info', 'phone', 'purchas', 'never', 'got', 'henc', 'star', 'rate', 'definit', 'convers', 'piec', 'use', 'real', 'android', 'technolog', 'googl', 'calendar', 'thing', 'hope', 'would', 'not', 'lose', 'went', 'smaller'], ['littl', 'thing', 'amaz', 'cute', 'love', 'color', 'work', 'pretti', 'good'], ['phone', 'novelti', 'realli', 'cheap', 'cheapli', 'built', 'slow', 'low', 'resolut', 'run', 'outdat', 'version', 'android', 'screen', 'terribl', 'use', 'slight', 'larger', 'averag', 'size', 'hand', 'work', 'phone', 'realli', 'would', 'not', 'want', 'use', 'daili', 'basi', 'much', 'better', 'phone', 'price', 'sell', 'phone', 'good', 'show', 'friend', 'small'], ['great', 'telephon', 'hard', 'text', 'not', 'imposs', 'make', 'sure', 'small', 'hand'], ['good'], ['pros', 'small', 'batteri', 'hold', 'depend', 'usag', 'display', 'start', 'show', 'vertic', 'line', 'black', 'oper', 'white', 'mani', 'web', 'page', 'not', 'usabl', 'due', 'low', 'resolut', 'letter', 'l', 'difficult', 'type'], ['use', 'phone', 'most', 'work', 'small', 'dose', 'not', 'take', 'lot', 'space', 'lot', 'equip', 'person', 'secur', 'guard', 'honest', 'day', 'time', 'forget', 'front', 'shir', 'pocket'], ['not', 'substitut', 'real', 'smartphon', 'find', 'good', 'price', 'great', 'portabl', 'secondari', 'phone', 'smallest', 'portabl', 'smartphon', 'i', 'ever', 'seen', 'would', 'best', 'use', 'swap', 'sim', 'specif', 'need', 'phone', 'one', 'reason', 'perhap', 'not', 'want', 'someth', 'happen', 'regular', 'expens', 'phone', 'realist', 'scenario', 'expect', 'use', 'phone', 'lot', 'compromis', 'get', 'size', 'price', 'point', 'slow', 'run', 'outdat', 'version', 'os', 'limit', 'intern', 'storag', 'small', 'batteri', 'worst', 'display', 'tini', 'not', 'difficult', 'see', 'interfac', 'element', 'not', 'fit', 'overlap', 'forget', 'tri', 'type', 'simultan', 'see', 'type', 'said', 'otherwis', 'work', 'would', 'expect', 'android', 'devic', 'long', 'not', 'tri', 'instal', 'ton', 'app', 'limit', 'storag', 'manag', 'pretti', 'much', 'everyth', 'instal', 'work', 'fine', 'stream', 'audio', 'video', 'includ', 'play', 'media', 'plex', 'server', 'batteri', 'small', 'also', 'suffici', 'standbi', 'mode', 'use', 'percentag', 'point', 'everi', 'hour', 'tri', 'continu', 'use', 'phone', 'drain', 'notic', 'standbi', 'time', 'probabl', 'measur', 'day', 'wherea', 'continu', 'use', 'might', 'last', 'hour', 'lead', 'use', 'case', 'i', 'decid', 'sinc', 'multipl', 'devic', 'anyway', 'habit', 'not', 'take', 'along', 'phablet', 'not', 'think', 'i', 'need', 'larger', 'practic', 'i', 'leav', 'sim', 'posh', 'toss', 'pocket', 'realli', 'not', 'notic', 'carri', 'around', 'day', 'case', 'still', 'phablet', 'nexus', 'pixel', 'c', 'etc', 'want', 'actual', 'use', 'practic', 'android', 'devic', 'summar', 'posh', 'not', 'practic', 'devic', 'surpris', 'usabl', 'phone', 'not', 'let'], ['product', 'amaz', 'high', 'recommend', 'anyon', 'look', 'phone', 'take', 'less', 'space', 'still', 'abl', 'check', 'email', 'stream', 'music', 'video', 'extrem', 'portabl', 'call', 'sound', 'clear', 'peopl', 'hear', 'well', 'includ', 'headphon', 'nice', 'crisp', 'clean', 'sound', 'overal', 'top', 'notch', 'product', 'price', 'not', 'beat', 'use', 'tmobil', 'immedi', 'detect', 'network', 'insert', 'sim', 'card', 'turn', 'easi', 'fit', 'finish', 'top', 'notch', 'batteri', 'back', 'cover', 'sim', 'card', 'fit', 'right', 'also', 'custom', 'support', 'posh', 'mobil', 'liter', 'call', 'within', 'minut', 'receiv', 'email', 'question', 'micro', 'sd', 'card', 'buy', 'custom', 'servic', 'posh', 'mobil', 'amazon', 'five', 'star', 'way', 'origin', 'bought', 'someth', 'convers', 'piec', 'i', 'impress', 'actual', 'handl', 'everi', 'task', 'ask', 'far', 'bright', 'screen', 'nice', 'audio', 'link', 'gb', 'card', 'give', 'maximum', 'storag', 'make', 'impress', 'phone', 'https'], ['slow', 'imposs', 'type', 'high', 'recommend', 'voic', 'keyboard', 'inde', 'work', 'great', 'devic', 'even', 'backup', 'need', 'might', 'shine', 'best', 'small', 'capabl', 'altern', 'everi', 'penni', 'might', 'even', 'get', 'second', 'one'], ['phone', 'work', 'coupl', 'thing', 'not', 'like', 'sensit', 'touch', 'screen', 'not', 'great', 'sometim', 'touch', 'sever', 'time', 'acknowledg', 'intern', 'memori', 'not', 'enough', 'memori', 'free', 'slow', 'respons', 'posit', 'touch', 'screen', 'not', 'accur', 'think', 'touch', 'could', 'q', 'instead', 'cell', 'use', 'android', 'not', 'allow', 'file', 'transfer', 'intern', 'memori', 'sd', 'card', 'run', 'memori', 'quick', 'not', 'expect', 'upgrad', 'os', 'time', 'soon'], ['got', 'phone', 'time', 'came', 'case', 'screen', 'protector', 'case', 'not', 'fit', 'well', 'run', 'decent', 'not', 'top', 'dollar', 'phone', 'averag', 'person', 'work', 'great', 'batteri', 'life', 'ok', 'screen', 'look', 'good'], [], ['great', 'phone'], ['good', 'day', 'cell', 'posh', 'titan', 'look', 'work', 'let', 'know', 'paragraph', 'support', 'return', 'team', 'one', 'year', 'warranti'], ['love', 'need', 'stylus', 'also', 'could', 'realli', 'use', 'manual', 'use'], ['not', 'buy', 'use', 'phone', 'bought', 'replac', 'sandisk', 'clip', 'player', 'review', 'got', 'phone', 'sign', 'bit', 'annoy', 'tini', 'keyboard', 'still', 'doabl', 'went', 'download', 'poweramp', 'also', 'bought', 'small', 'clip', 'phone', 'use', 'gig', 'micro', 'sd', 'card', 'music', 'work', 'fine', 'took', 'forev', 'build', 'databas', 'music', 'charger', 'problem', 'true', 'cabl', 'work', 'not', 'anyth', 'fat', 'head', 'not', 'go', 'use', 'pair', 'headphon', 'media', 'control', 'work', 'fine', 'abl', 'switch', 'track', 'good', 'star', 'less', 'cabl', 'issu', 'though', 'love', 'god', 'pleas', 'someon', 'make', 'hard', 'rubber', 'case', 'phone', 'clip', 'built', 'updat', 'ugh', 'week', 'broke', 'longer', 'power', 'tri', 'contact', 'posh', 'updat'], ['hello', 'look', 'small', 'smart', 'phone', 'forev', 'mean', 'forev', 'mean', 'least', 'four', 'year', 'smart', 'phone', 'revolut', 'lead', 'trend', 'everyth', 'get', 'bigger', 'love', 'compact', 'technolog', 'work', 'perfect', 'outsid', 'box', 'problem', 'get', 'anyth', 'connect', 'sync', 'download', 'disabl', 'mani', 'stock', 'app', 'luckili', 'not', 'current', 'work', 'financi', 'institut', 'revolv', 'around', 'technolog', 'stay', 'connect', 'need', 'simpl', 'smart', 'phone', 'could', 'send', 'use', 'gpsthat', 'comput', 'work', 'laptop', 'take', 'care', 'rest'], ['nice', 'phone', 'howev', 'gps', 'not', 'work', 'wifi', 'would', 'not', 'stay', 'connect', 'sim', 'could', 'not', 'found', 'time', 'contact', 'posh', 'tri', 'fix', 'product', 'fix', 'not', 'work'], ['phone', 'not', 'hold', 'charg', 'month'], ['lot', 'featur', 'wifi', 'hotspot', 'get', 'good', 'connect', 'ipad', 'macbook', 'realli', 'poor', 'qualiti', 'wifi', 'signal', 'bar', 'phone', 'qualiti', 'pretti', 'well', 'use', 'grand', 'total', 'five', 'minut', 'phone', 'quit', 'plug', 'charger', 'screen', 'empti', 'batteri', 'lighten', 'bolt', 'show', 'charg', 'not', 'fire', 'noth', 'basic', 'dead', 'minut', 'use', 'cute', 'phone', 'never', 'charg', 'correct', 'even', 'new', 'i', 'would', 'pass'], ['best', 'phone'], ['phone', 'good', 'price', 'money', 'featur', 'work', 'well', 'good', 'one', 'problem', 'sound', 'qualiti', 'rington', 'music', 'call', 'low', 'guy', 'work'], ['like', 'phone', 'excel', 'batteri', 'life', 'good', 'qualiti', 'beauti', 'problem', 'pictur', 'messag', 'cricket', 'network', 'tri', 'sever', 'differ', 'apn', 'set', 'luck', 'would', 'b', 'five', 'star'], ['realli', 'like', 'phone', 'origin', 'got', 'use', 'display', 'drone', 'travel', 'outsid', 'us', 'like', 'phone', 'much', 'may', 'becom', 'main', 'phone', 'realli', 'great', 'price', 'eye', 'sight', 'go', 'easili', 'read', 'screen', 'phone'], ['phone', 'awesom', 'lightn', 'fast', 'lag', 'thank', 'gig', 'ram', 'nice', 'big', 'display', 'got', 'mine', 'speaker', 'loud', 'clear', 'camera', 'surpris', 'absolut', 'flawless', 'photo', 'huge', 'batteri', 'capac', 'two', 'day', 'heavi', 'use', 'one', 'charg', 'well', 'worth', 'buy'], ['nice', 'phablet', 'plug', 'window', 'os', 'comput', 'driver', 'not', 'instal', 'correct', 'driver', 'type', 'softwar', 'not', 'avail', 'posh', 'site', 'posh', 'mobil', 'site', 'visit', 'page', 'download', 'latest', 'version', 'product', 'softwar', 'page', 'state', 'updat', 'may', 'come', 'soon', 'net', 'search', 'indic', 'driver', 'not', 'avail', 'anywher', 'support', 'phone', 'posh', 'mobil', 'site', 'state', 'manual', 'avail', 'download', 'page', 'not', 'nice', 'phablet', 'long', 'not', 'need', 'support', 'download', 'posh', 'mobil', 'site', 'would', 'like', 'call', 'support', 'line'], ['got', 'two', 'one', 'boyfriend', 'one', 'not', 'work', 'well'], ['first', 'love', 'phone', 'power', 'volum', 'button', 'not', 'work', 'box', 'regist', 'posh', 'tri', 'get', 'exchang', 'anoth', 'success'], ['posit', 'far', 'one', 'month', 'terrif', 'phone', 'familiar', 'android', 'devic', 'abl', 'use', 'featur', 'right', 'away', 'good', 'thing', 'sinc', 'user', 'guid', 'small', 'not', 'comprehens', 'littl', 'inform', 'posh', 'mobil', 'websit', 'search', 'not', 'menu', 'put', 'sim', 'card', 'slot', 'gb', 'micro', 'sd', 'card', 'micro', 'sd', 'slot', 'connect', 'cell', 'network', 'home', 'problem', 'copi', 'mani', 'pictur', 'song', 'sd', 'card', 'pictur', 'icon', 'bring', 'pictur', 'music', 'player', 'found', 'song', 'sd', 'card', 'menu', 'within', 'music', 'player', 'allow', 'set', 'song', 'not', 'data', 'plan', 'left', 'area', 'phone', 'kept', 'tri', 'connect', 'internet', 'cell', 'phone', 'network', 'thank', 'receiv', 'messag', 'account', 'get', 'low', 'found', 'free', 'app', 'googl', 'android', 'store', 'prevent', 'phone', 'search', 'internet', 'cell', 'network', 'not', 'familiar', 'android', 'app', 'automat', 'tri', 'connect', 'internet', 'great', 'app', 'posit', 'support', 'phone', 'minim', 'press', 'icon', 'find', 'mean', 'discov', 'use', 'phone', 'featur', 'speed', 'dial', 'previous', 'speed', 'dial', 'number', 'sim', 'card', 'took', 'click', 'figur', 'phone', 'come', 'soft', 'protector', 'cover', 'back', 'side', 'not', 'front', 'dimens', 'phone', 'similar', 'samsung', 'galaxi', 'bought', 'screen', 'protector', 'made', 'zagg', 'cover', 'screen', 'fine', 'would', 'like', 'get', 'better', 'case', 'side', 'button', 'speaker', 'camera', 'len', 'layout', 'power', 'connector', 'phone', 'top', 'bottom', 'otherwis', 'look', 'like', 'would', 'fit', 'find', 'case', 'updat', 'camera', 'decent', 'enough', 'daylight', 'use', 'camera', 'import', 'event', 'batteri', 'last', 'day', 'not', 'heavi', 'phone', 'user', 'activ', 'stay', 'connect', 'happi', 'phone', 'recommend', 'friend'], ['thank', 'love', 'item'], ['super', 'phone', 'love', 'phone', 'big', 'screen', 'clear'], ['work', 'fine', 'first', 'month', 'start', 'malfunct', 'overheat', 'lot', 'start', 'not', 'charg', 'anymor', 'would', 'charg', 'would', 'die', 'within', 'minut', 'mayb', 'less', 'not', 'dramat', 'headphon', 'okay', 'charger', 'suck', 'batteri', 'suck', 'case', 'protect', 'damag', 'case', 'came', 'crappi', 'took', 'decent', 'pictur', 'overal', 'would', 'not', 'recommend'], ['sever', 'month', 'own', 'phone', 'would', 'say', 'great', 'buy', 'price', 'preform', 'well', 'mid', 'rang', 'android', 'phone', 'one', 'recent', 'softwar', 'updat', 'caus', 'issu', 'most', 'microphon', 'relat', 'glitch', 'phone', 'function', 'well', 'still'], ['greatest', 'phone', 'bought', 'simpli', 'amaz', 'impress', 'processor', 'qualiti', 'camera', 'made', 'bit', 'faster', 'develop', 'hidden', 'option', 'menu', 'fast', 'hard', 'lag', 'scroll', 'app', 'style', 'big', 'screen', 'give', 'phone', 'good', 'look', 'good', 'phone', 'good', 'price'], ['best', 'phone', 'fast', 'user', 'friend', 'great', 'camera', 'imag', 'two', 'sim', 'slot', 'batteri', 'conserv', 'slim', 'nice', 'look', 'put', 'gosmart', 'sim', 'start', 'use', 'right', 'away', 'buy', 'bought', 'two', 'one', 'year', 'old', 'love', 'not', 'care', 'brand', 'awesom'], ['phone', 'super', 'decent', 'worth', 'sale', 'price', 'around', 'howev', 'screen', 'insan', 'fragil', 'main', 'reason', 'bought', 'phone', 'screen', 'appar', 'littl', 'cost', 'phone', 'goe', 'good', 'build', 'keep', 'phone', 'front', 'pocket', 'alway', 'cautious', 'day', 'phone', 'last', 'less', 'month', 'foolish', 'assum', 'warranti', 'would', 'cover', 'physic', 'damag', 'mistak', 'phone', 'crack', 'point', 'day', 'lie', 'front', 'pocket', 'note', 'stand', 'day', 'strict', 'restrict', 'lean', 'wall', 'shelv', 'counter', 'warranti', 'not', 'cover', 'drain', 'consid', 'valu', 'higher', 'res', 'screen', 'highest', 'tier', 'smartphon', 'posh', 'find', 'outrag', 'repair', 'imposs', 'spare', 'part', 'non', 'exist', 'low', 'tier', 'softwar', 'useless', 'posh', 'mobil', 'app', 'hardwar', 'spec', 'wast', 'purchas', 'phone', 'repair', 'not', 'good', 'deal', 'second', 'phone', 'gotten', 'posh', 'softwar', 'not', 'entir', 'fail', 'like', 'last', 'one', 'less', 'entir', 'disappoint'], ['amaz'], ['phone', 'amaz', 'return', 'power', 'button', 'not', 'work', 'order', 'new', 'posh', 'titan', 'hd', 'max'], ['i', 'happi', 'new', 'phone', 'fast', 'capabl', 'minor', 'annoy', 'like', 'could', 'not', 'find', 'bluetooth', 'set', 'found', 'turn', 'wht', 'enabl', 'bluetooth', 'also', 'hope', 'nfs', 'not', 'appear', 'support', 'nfs', 'also', 'not', 'like', 'placement', 'button', 'would', 'better', 'top', 'right', 'side', 'tend', 'squeez', 'entir', 'phone', 'one', 'hand', 'turn', 'tend', 'press', 'volum', 'button', 'side', 'negat', 'turn', 'function', 'thin', 'nice', 'would', 'recommend', 'phone', 'anyon'], ['great', 'buy', 'especi', 'not', 'like', 'buy', 'unlock', 'gsm', 'preload', 'servic', 'program', 'like', 'easi', 'handl', 'scroll', 'around', 'accur', 'easi', 'android', 'store', 'pretti', 'cool', 'start', 'figur', 'problem', 'far', 'batteri', 'last', 'long', 'love', 'far'], ['bought', 'phone', 'sever', 'month', 'ago', 'replac', 'samsung', 'galaxi', 'crack', 'screen', 'serious', 'memori', 'issu', 'not', 'due', 'upgrad', 'carrier', 'yet', 'worri', 'poop', 'start', 'look', 'unlock', 'smartphon', 'happi', 'choic', 'purchas', 'posh', 'titan', 'hd', 'yellow', 'though', 'much', 'brighter', 'yellow', 'pictur', 'disappoint', 'phone', 'need', 'perform', 'overal', 'near', 'par', 'capabl', 'multitask', 'stream', 'music', 'watch', 'video', 'youtub', 'netflix', 'perfect', 'good', 'term', 'web', 'brows', 'social', 'term', 'camera', 'shooter', 'better', 'expect', 'though', 'zoom', 'imag', 'imag', 'qualiti', 'certain', 'decreas', 'also', 'notic', 'phone', 'would', 'qualiti', 'photo', 'would', 'text', 'upload', 'social', 'media', 'though', 'may', 'someth', 'set', 'never', 'realli', 'look', 'solut', 'not', 'say', 'whether', 'one', 'slight', 'annoy', 'pictur', 'i', 'would', 'post', 'instagram', 'facebook', 'send', 'via', 'text', 'would', 'end', 'much', 'grain', 'nois', 'origin', 'camera', 'not', 'quit', 'suffici', 'enough', 'captur', 'decent', 'imag', 'set', 'not', 'terribl', 'consid', 'price', 'tag', 'phone', 'actual', 'better', 'notic', 'nois', 'grain', 'almost', 'imag', 'shot', 'overal', 'though', 'camera', 'decent', 'nifti', 'set', 'includ', 'gestur', 'form', 'peac', 'sign', 'take', 'photo', 'hdr', 'differ', 'scene', 'mode', 'white', 'balanc', 'titan', 'pretti', 'snappi', 'though', 'not', 'near', 'much', 'flagship', 'smartphon', 'current', 'market', 'not', 'much', 'notic', 'lag', 'daili', 'task', 'though', 'would', 'slow', 'bit', 'multitask', 'sever', 'app', 'run', 'background', 'also', 'lag', 'scroll', 'social', 'media', 'feed', 'not', 'enough', 'frustrat', 'consid', 'price', 'tag', 'near', 'unknown', 'posh', 'brand', 'expect', 'buggi', 'lag', 'often', 'surpris', 'hard', 'phone', 'hardwar', 'fall', 'short', 'come', 'speaker', 'extern', 'ear', 'piec', 'speaker', 'phone', 'pointless', 'use', 'extern', 'speaker', 'volum', 'low', 'even', 'turn', 'highest', 'volum', 'case', 'ear', 'piec', 'speaker', 'well', 'phone', 'call', 'often', 'difficult', 'life', 'averag', 'would', 'last', 'entir', 'day', 'moder', 'use', 'usual', 'time', 'would', 'get', 'home', 'work', 'around', 'pm', 'would', 'need', 'charg', 'charg', 'fair', 'quick', 'also', 'not', 'entir', 'consist', 'case', 'batteri', 'percentag', 'well', 'batteri', 'percentag', 'would', 'drop', 'signific', 'short', 'period', 'caus', 'believ', 'not', 'accur', 'detect', 'actual', 'amount', 'charg', 'gripe', 'phone', 'problem', 'upload', 'video', 'instagram', 'never', 'abl', 'fix', 'not', 'huge', 'deal', 'everyon', 'someon', 'use', 'instagram', 'regular', 'annoy', 'i', 'not', 'sure', 'phone', 'issu', 'app', 'i', 'never', 'problem', 'phone', 'sinc', 'imag', 'qualiti', 'would', 'also', 'get', 'distort', 'text', 'upload', 'photo', 'assum', 'possibl', 'memori', 'phone', 'would', 'random', 'shut', 'restart', 'warn', 'consist', 'would', 'happen', 'never', 'obvious', 'due', 'multitask', 'intens', 'use', 'would', 'happen', 'rather', 'benign', 'task', 'text', 'brows', 'web', 'luckili', 'phone', 'boot', 'quick', 'els', 'would', 'deal', 'breaker', 'sinc', 'often', 'happen', 'middl', 'read', 'articl', 'someth', 'would', 'not', 'biggest', 'problem', 'phone', 'memori', 'microsd', 'card', 'instal', 'also', 'knew', 'get', 'bought', 'phone', 'month', 'memori', 'alreadi', 'deplet', 'storag', 'capac', 'delet', 'everi', 'nonessenti', 'app', 'could', 'clear', 'cach', 'everyday', 'delet', 'text', 'app', 'data', 'download', 'file', 'anyth', 'els', 'could', 'think', 'never', 'freed', 'enough', 'space', 'download', 'anyth', 'new', 'reason', 'end', 'buy', 'new', 'phone', 'becam', 'elig', 'upgrad', 'hope', 'titan', 'would', 'last', 'longer', 'lack', 'storag', 'space', 'becam', 'much', 'problem', 'also', 'reason', 'bought', 'phone', 'replac', 'first', 'place', 'could', 'not', 'deal', 'insan', 'annoy', 'issu', 'pretti', 'damn', 'good', 'phone', 'price', 'point', 'stylish', 'array', 'color', 'screen', 'good', 'resolut', 'good', 'perform', 'handl', 'anyth', 'flagship', 'smartphon', 'drawback', 'definit', 'could', 'deal', 'breaker', 'especi', 'heavi', 'phone', 'user', 'requir', 'lot', 'storag', 'ram', 'not', 'near', 'enough', 'render', 'phone', 'storag', 'reach', 'capac', 'serv', 'need', 'primari', 'phone', 'consid', 'knock', 'star', 'storag', 'issu', 'issu', 'expect', 'littl', 'ram', 'heavi', 'user', 'would', 'not', 'fair', 'howev', 'even', 'limit', 'memori', 'capac', 'still', 'great', 'phone', 'great', 'price', 'definit', 'compet', 'big', 'name', 'market', 'today'], ['look', 'mani', 'phone', 'one', 'stood', 'best', 'reason', 'price', 'rang', 'use', 'month', 'problem', 'powerhous', 'price', 'outperform', 'friend', 'iphon', 'mani', 'intens', 'game', 'world', 'tank', 'blitz', 'exampl', 'would', 'buy', 'brand'], ['note', 'crap', 'l', 'pretti', 'much', 'need', 'phone', 'replac', 'fast', 'budget', 'must', 'say', 'pleas', 'titan', 'basic', 'perform', 'well', 'week', 'not', 'singl', 'complaint', 'note', 'not', 'take', 'long', 'becom', 'buggi', 'crappi', 'spend', 'paycheck', 'phone', 'thank', 'posh', 'mobil'], ['appear', 'fair', 'decent', 'phone', 'consid', 'price', 'perform', 'ratio', 'first', 'power', 'swipe', 'unlock', 'home', 'screen', 'everyth', 'work', 'fine', 'proceed', 'remov', 'factori', 'set', 'home', 'screen', 'icon', 'analog', 'clock', 'plus', 'instal', 'app', 'zedg', 'wifi', 'file', 'transfer', 'went', 'well', 'power', 'back', 'power', 'swipe', 'unlock', 'home', 'screen', 'get', 'unfortun', 'stop', 'prompt', 'hit', 'ok', 'tab', 'continu', 'home', 'screen', 'gone', 'clear', 'launcher', 'app', 'cach', 'way', 'resolv', 'issu', 'also', 'clear', 'data', 'factori', 'instal', 'launcher', 'app', 'return', 'home', 'screen', 'back', 'origin', 'factori', 'setup', 'not', 'know', 'instal', 'new', 'separ', 'launcher', 'playstor', 'assign', 'default', 'launcher', 'fix', 'issu', 'not', 'return', 'phone', 'due', 'softwar', 'glitch', 'associ', 'kitkat', 'version', 'assum', 'specif', 'phone', 'caus', 'problem', 'plus', 'old', 'school', 'flip', 'phone', 'plan', 'new', 'phone', 'get', 'better', 'signal', 'strength', 'posh', 'titan', 'side', 'x', 'side', 'exact', 'locat', 'titan', 'also', 'power', 'gone', 'loop', 'test', 'mode', 'sever', 'time', 'far', 'requir', 'remov', 'batteri', 'phone', 'definit', 'go', 'back', 'obvious', 'got', 'lemon', 'total', 'wast', 'time', 'money'], ['ms', 'cindi', 'nice', 'cooper', 'help', 'person', 'give', 'star', 'posit', 'feedback', 'great', 'appreci', 'posh', 'mobil', 'excel', 'phone', 'batteri', 'condit', 'not', 'good', 'normal', 'batteri', 'not', 'contain', 'power', 'long', 'time', 'need', 'extra', 'batteri', 'backup', 'front', 'camera', 'mp', 'back', 'camera', 'look', 'nice', 'tini', 'weight', 'easi', 'oper', 'suggest', 'buy', 'everyon', 'cheapest', 'phone', 'highest', 'configur'], ['actual', 'realli', 'like', 'respons', 'mani', 'cool', 'featur'], ['bought', 'phone', 'octob', 'novemb', 'power', 'button', 'fail', 'problem', 'cheap', 'rubber', 'protector', 'includ', 'packag', 'alway', 'press', 'power', 'button', 'day', 'amazon', 'return', 'window', 'stuck', 'phone', 'not', 'power', 'unless', 'plug', 'wall'], ['phone', 'cane', 'broken', 'microphon', 'not', 'compar', 'time', 'zone', 'mess', 'time'], ['pretti', 'decent', 'phone', 'around', 'build', 'qualiti', 'not', 'high', 'end', 'plastic', 'screen', 'fingerprint', 'good', 'speed', 'speed', 'realli', 'bad', 'houston', 'area', 'bare', 'muster', 'mbps', 'best', 'usual', 'speed', 'around', 'get', 'may', 'may', 'not', 'happi'], ['light', 'weight', 'awesom', 'look', 'good', 'phone', 'dual', 'sim'], ['love', 'phone', 'best', 'phone', 'i', 'ever', 'honest', 'phone', 'not', 'bluetooth', 'someth', 'call', 'wht', 'eff', 'wht', 'besid', 'anoth', 'posh', 'phone', 'use'], ['work', 'hard', 'find', 'case', 'avail', 'phone', 'one', 'came', 'phone', 'clear', 'cheap', 'plastic'], ['love', 'pictur', 'take', 'video', 'i', 'month', 'speakerphon', 'horribl', 'not', 'listen', 'music', 'unless', 'headphon', 'plug', 'phone', 'not', 'wet', 'anyth', 'i', 'never', 'drop', 'say', 'phone', 'one', 'year', 'warranti', 'idk', 'contact', 'right', 'person', 'oh', 'everi', 'awhil', 'unlock', 'screen', 'show', 'backward', 'like', 'i', 'look', 'mirror', 'click', 'opposit', 'side', 'screen', 'want', 'aggrav'], ['tank'], ['receiv', 'posh', 'day', 'seem', 'work', 'great', 'not', 'fanci', 'look', 'phone', 'get', 'job', 'done', 'problem', 'encount', 'instal', 'screen', 'protector', 'sever', 'post', 'say', 'alreadi', 'one', 'factori', 'not', 'tell', 'case', 'attempt', 'instal', 'one', 'came', 'box', 'watch', 'tube', 'video', 'subject', 'not', 'abl', 'get', 'bubbl', 'think', 'might', 'oper', 'error', 'sent', 'email', 'posh', 'new', 'protector', 'see', 'send', 'one', 'went', 'bought', 'univers', 'screen', 'protector', 'instal', 'flawless', 'bubbl', 'issu', 'phone', 'seem', 'work', 'well', 'straight', 'talk', 'servic', 'buy', 'micro', 'sim', 'card', 'price', 'good', 'free', 'ship', 'mango', 'excel', 'phone', 'arriv', 'coupl', 'want', 'phone', 'good', 'camera', 'internet', 'access', 'not', 'make', 'receiv', 'mani', 'phone', 'call', 'think', 'phone', 'work', 'well', 'photo', 'video', 'taken', 'seem', 'high', 'qualiti', 'not', 'transfer', 'laptop', 'yet'], ['write', 'review', 'titan', 'beast', 'phone', 'got', 'christma', 'doubt', 'phone', 'like', 'not', 'sure', 'whether', 'spend', 'much', 'phone', 'not', 'even', 'know', 'let', 'tell', 'not', 'trust', 'doubt', 'right', 'phone', 'good', 'new', 'iphon', 'samsung', 'galaxi', 'super', 'light', 'weight', 'almost', 'thought', 'display', 'phone', 'light', 'lol', 'camera', 'good', 'understand', 'video', 'silki', 'smooth', 'phone', 'qualiti', 'great', 'buy', 'i', 'happi'], ['love', 'phone', 'area', 'posh', 'unabl', 'use', 'network'], ['purchas', 'phone', 'year', 'ago', 'husband', 'like', 'order', 'one', 'pleas', 'phone', 'take', 'nice', 'pictur', 'good', 'big', 'small', 'fit', 'pocket', 'well', 'also', 'nice', 'purs', 'boss', 'like', 'phone', 'order', 'one', 'six', 'month', 'not', 'problem', 'either', 'use', 'consum', 'cellular', 'run', 'tower', 'good', 'result', 'would', 'not', 'hesit', 'order', 'phone'], ['phone', 'okay', 'month', 'batteri', 'decid', 'swell', 'half', 'size', 'compani', 'not', 'replac'], ['good', 'phone', 'fast', 'phone', 'reason', 'not', 'give', 'star', 'come', 'kitkat', 'kitkat', 'lollipop', 'contact', 'posh', 'mobil', 'said', 'talk', 'updat', 'phone'], ['one', 'best', 'phone', 'ever', 'use', 'would', 'recommend', 'anybodi', 'want', 'someth', 'smart', 'start', 'new', 'year', 'give', 'star', 'rate'], ['phone', 'slow', 'super', 'laggi', 'would', 'reset', 'everi', 'got', 'annoy', 'lag', 'bought', 'new'], ['i', 'phone', 'day', 'andi', 'got', 'say', 'i', 'surpris', 'well', 'phone', 'work', 'everyth', 'beauti', 'fast', 'browser', 'issu', 'i', 'problem', 'watch', 'video', 'hope', 'internet', 'phone', 'one', 'best', 'invest', 'i', 'ever', 'done'], ['work', 'like', 'review', 'fast', 'smartphon', 'like', 'way', 'fast', 'deliveri', 'time'], ['order', 'pink', 'color', 'come', 'white', 'wtf', 'posh'], ['phone', 'great', 'anybodi', 'help', 'find', 'bluetooth'], ['find', 'almost', 'everyth', 'phone', 'great', 'camera', 'spec', 'two', 'drawback', 'though', 'intern', 'memori', 'small', 'end', 'peopl', 'keep', 'complain', 'hear', 'low', 'end', 'call', 'realli', 'problem', 'phone', 'busi', 'drawback', 'concern'], ['love', 'excel', 'phone'], ['worth', 'everi', 'penni'], ['phone', 'super', 'decent', 'worth', 'sale', 'price', 'around', 'howev', 'screen', 'insan', 'fragil', 'main', 'reason', 'bought', 'phone', 'screen', 'appar', 'littl', 'cost', 'phone', 'goe', 'good', 'build', 'keep', 'phone', 'front', 'pocket', 'alway', 'cautious', 'day', 'phone', 'last', 'less', 'month', 'foolish', 'assum', 'warranti', 'would', 'cover', 'physic', 'damag', 'mistak', 'phone', 'crack', 'point', 'day', 'lie', 'front', 'pocket', 'note', 'stand', 'day', 'strict', 'restrict', 'lean', 'wall', 'shelv', 'counter', 'warranti', 'not', 'cover', 'drain', 'consid', 'valu', 'higher', 'res', 'screen', 'highest', 'tier', 'smartphon', 'posh', 'find', 'outrag', 'repair', 'imposs', 'spare', 'part', 'non', 'exist', 'low', 'tier', 'softwar', 'useless', 'posh', 'mobil', 'app', 'hardwar', 'spec', 'wast', 'purchas', 'phone', 'repair', 'not', 'good', 'deal', 'second', 'phone', 'gotten', 'posh', 'softwar', 'not', 'entir', 'fail', 'like', 'last', 'one', 'less', 'entir', 'disappoint'], ['use', 'phone', 'month', 'far', 'read', 'review', 'may', 'wait', 'coupl', 'month', 'find', 'durabl', 'phone'], ['phone', 'work', 'great', 'quick', 'great', 'price', 'servic', 'feel', 'phone', 'say', 'except', 'not', 'person', 'case', 'stylish', 'clear', 'case', 'come', 'fine', 'function', 'batteri', 'last', 'good', 'long', 'time', 'gps', 'enabl', 'phone', 'feel', 'good', 'hand', 'light', 'feel', 'answer', 'mani', 'question', 'posh', 'compani', 'phone', 'made', 'would', 'definit', 'buy', 'phone', 'valu', 'dollar', 'great', 'servic', 'enjoy', 'phone', 'provid'], ['excel', 'item'], ['awesom', 'phone', 'total', 'worth'], ['purchas', 'phone', 'may', 'middl', 'june', 'mic', 'stop', 'work', 'tri', 'get', 'fix', 'local', 'inform', 'motherboard', 'damag', 'need', 'new', 'one', 'first', 'phone', 'awesom', 'nightmar', 'think', 'buy', 'not', 'buy', 'brand', 'name', 'phone', 'march', 'devic', 'total', 'whack', 'not', 'even', 'unlock', 'phone', 'ridicul'], ['great', 'phone', 'product', 'entertain', 'handl', 'task', 'like', 'top', 'android', 'phone', 'blackberri', 'custom', 'improv', 'android', 'experi', 'mile', 'exampl', 'use', 'swipe', 'left', 'launch', 'devic', 'search', 'lot', 'edg', 'swipe', 'quick', 'look', 'today', 'agenda', 'multitask', 'view', 'like', 'usabl', 'android', 'card', 'app', 'carri', 'one', 'devic', 'great', 'hub', 'communic', 'app', 'android', 'play', 'store', 'work', 'doc', 'keep', 'sheet', 'physic', 'keyboard', 'good', 'screen', 'better', 'samsung', 'i', 'go', 'brighter', 'color', 'adjust', 'good', 'sound', 'front', 'face', 'speaker', 'good', 'video', 'watch', 'confer', 'good', 'camera', 'good', 'lens', 'softwar', 'imag', 'sharp', 'full', 'watch', 'youtub', 'channel', 'joetestedthat', 'extens', 'camera', 'screen', 'sound', 'comparison', 'physic', 'keyboard', 'handi', 'like', 'see', 'full', 'screen', 'type', 'annoy', 'screen', 'block', 'virtual', 'batteri', 'life', 'good', 'android', 'phone', 'last', 'day', 'normal', 'size', 'littl', 'big', 'like', 'almost', 'big', 'samsung', 'note', 'use', 'note', 'case', 'priv', 'challeng', 'use', 'one', 'blackberri', 'softwar', 'still', 'immatur', 'lack', 'nativ', 'file', 'manag', 'usb', 'otg', 'take', 'mani', 'step', 'use', 'use', 'sd', 'card', 'not', 'smooth', 'like', 'camera', 'app', 'alway', 'popup', 'ask', 'save', 'sd', 'card', 'everi', 'time', 'hub', 'not', 'fluid', 'think', 'issu', 'improv', 'devic', 'get', 'hot', 'run', 'high', 'graphic', 'app', 'even', 'disney', 'magic', 'timer', 'app', 'tooth', 'brush', 'video', 'make', 'priv', 'hot', 'wireless', 'charg', 'not', 'work', 'phone', 'unlock', 'amazon', 'thought', 'camera', 'app', 'slow', 'compar', 'phone', 'low', 'light', 'imag', 'ok', 'not', 'great', 'forget', 'selfi', 'front', 'face', 'camera', 'suck'], ['ir', 'work', 'perfect', 'argentina', 'ir', 'real', 'unlock', 'great', 'phone'], ['batteri', 'die', 'quick', 'yes', 'look', 'fix', 'put', 'batteri', 'save', 'mode', 'remov', 'app', 'etc', 'etc', 'phone', 'also', 'heat', 'keyboard', 'die', 'front', 'top', 'right', 'corner', 'phone', 'look', 'promis', 'big', 'batteri', 'not', 'perform', 'bad', 'left', 'passport', 'priv', 'batteri', 'full', 'morn', 'one', 'hour', 'time', 'work', 'alreadi', 'work', 'drop', 'lunch', 'die', 'day', 'around', 'almost', 'usag'], ['minor', 'thing', 'noth', 'keep', 'love', 'phone', 'back', 'kind', 'cheap', 'flex', 'not', 'scratch', 'easili', 'touch', 'screen', 'not', 'glass', 'recommend', 'gorilla', 'glass', 'accessori', 'blackberri', 'stuff', 'not', 'realli', 'use', 'sold', 'android', 'phone', 'overal', 'love', 'keyboard', 'phone'], ['understand', 'seller', 'sell', 'unlock', 'brand', 'happen', 'great', 'phone', 'fantast', 'buy', 'screeni', 'gorgeous', 'larg', 'os', 'run', 'smooth', 'cours', 'secur', 'typingexperi', 'touch', 'pad', 'slide', 'great', 'realli', 'complaint', 'regrad', 'howev', 'seller', 'not', 'realli', 'disclos', 'aat', 'base', 'phone', 'not', 'truli', 'unlock', 'priv', 'roll', 'updat', 'marshmallow', 'not', 'go', 'happen', 'also', 'loos', 'sever', 'featur', 'not', 'true', 'unlock', 'phone', 'seller', 'seem', 'ok', 'thiswil', 'not', 'deter', 'purchas', 'futur', 'long', 'proper', 'refundmi', 'purchas', 'updat', 'review', 'base', 'full', 'interact', 'seller'], ['thank', 'blackberri', 'bring', 'high', 'end', 'android', 'devic', 'physic', 'keyboard', 'perfect', 'design', 'arrow', 'key', 'keyboard', 'would', 'best'], ['tell', 'unlock', 'howev', 'receiv', 'come', 'box', 'brand', 'logo', 'back', 'come', 'glorious', 'bloatwar', 'essenti', 'kill', 'phone', 'friend', 'use', 'verizon', 'own', 'one', 'perform', 'great', 'get', 'good', 'batteri', 'life', 'speed', 'etc', 'howev', 'two', 'day', 'experi', 'phone', 'disappoint', 'not', 'match', 'perform'], ['far', 'love', 'problem', 'get', 'hot', 'sometim', 'great', 'phone'], ['got', 'mine', 'last', 'week', 'updat', 'slow', 'qualifi', 'mean', 'mm', 'secur', 'get', 'blackberri', 'priv', 'list', 'detail', 'name', 'sold', 'iphon', 'plus', 'previous', 'note', 'ii', 'top', 'size', 'weight', 'screen', 'app', 'hope', 'roll', 'improv', 'secur', 'batteri', 'well', 'wait', 'mm'], ['first', 'bewar', 'must', 'contact', 'seller', 'purchas', 'determin', 'get', 'carrier', 'phone', 'sucha', 'att', 'truli', 'unbrand', 'priv', 'blackberri', 'mean', 'made', 'bb', 'not', 'sell', 'not', 'carrier', 'brand', 'phone', 'look', 'seller', 'lower', 'amazon', 'page', 'phone', 'bought', 'went', 'trip', 'priv', 'plug', 'car', 'charger', 'drive', 'use', 'navig', 'blue', 'tooth', 'stream', 'music', 'car', 'phone', 'becam', 'terribl', 'hot', 'i', 'never', 'felt', 'phone', 'get', 'hot', 'ever', 'could', 'feel', 'heat', 'rise', 'inch', 'phone', 'palm', 'hand', 'put', 'ear', 'first', 'time', 'call', 'hot', 'car', 'wake', 'charg', 'charg', 'simpl', 'web', 'surf', 'time', 'leav', 'trip', 'let', 'updat', 'marshmallow', 'not', 'avail', 'time', 'not', 'speak', 'priv', 'mm', 'not', 'stay', 'tie', 'charger', 'sent', 'back', 'immedi', 'bought', 'new', 'passport', 'next', 'day', 'ship', 'could', 'finish', 'trip', 'show', 'unhappi', 'priv'], ['love', 'phone', 'first', 'smartphon', 'ever', 'got', 'blackberri', 'second', 'one', 'also', 'blackberri', 'got', 'iphon', 'priv', 'gorgeous', 'look', 'phone', 'camera', 'topnotch', 'realli', 'miss', 'physic', 'keyboard', 'perform', 'great', 'beat', 'iphon', 'samsung', 'problem', 'ifyou', 'call', 'batteri', 'definit', 'made', 'right', 'choic', 'switch', 'android', 'hope', 'blackberri', 'great', 'phone', 'like', 'priv', 'blackberri', 'edg', 'phone', 'privaci', 'realli', 'import', 'work', 'purpos'], ['excelent'], ['item', 'work', 'perfect', 'like', 'expect'], ['not', 'work', 'month'], ['not', 'start', 'use', 'phone', 'tri', 'selfi', 'discov', 'front', 'face', 'camera', 'standard', 'disir'], ['good', 'que', 'phone', 'display', 'nice', 'clear', 'problem', 'charger', 'never', 'work', 'factori', 'defect', 'guess'], ['receiv', 'first', 'phone', 'not', 'work', 'sent', 'replac', 'phone', 'work', 'great', 'coupl', 'day', 'stop', 'work', 'liter', 'shut', 'would', 'not', 'come', 'back', 'hate', 'phone', 'good'], ['realli', 'like', 'phone', 'troubl', 'ad', 'pic', 'contact', 'oh', 'well', 'guess', 'figur', 'also', 'find', 'cool', 'cover'], ['first', 'vendor', 'great', 'free', 'ship', 'packag', 'use', 'amazon', 'prime', 'come', 'accessori', 'kit', 'includ', 'car', 'charger', 'addit', 'mini', 'usb', 'cabl', 'vinyl', 'phone', 'case', 'screen', 'protector', 'arriv', 'liter', 'day', 'great', 'choic', 'entri', 'level', 'high', 'end', 'smart', 'phone', 'price', 'confus', 'product', 'descript', 'one', 'place', 'state', 'mega', 'camera', 'anoth', 'place', 'say', 'mega', 'camera', 'inde', 'mega', 'camera', 'decent', 'level', 'ok', 'not', 'great', 'ram', 'inde', 'minim', 'want', 'app', 'instal', 'phone', 'rom', 'not', 'instead', 'sinc', 'android', 'memori', 'partit', 'confus', 'phone', 'intern', 'storag', 'phone', 'storag', 'inde', 'dual', 'sim', 'unlock', 'phone', 'product', 'descript', 'not', 'clear', 'well', 'gave', 'star'], ['exact', 'say', 'fingerprint', 'id', 'work', 'great', 'also', 'easi', 'put', 'ship', 'said', 'would', 'take', 'month', 'get', 'hous', 'came', 'way', 'sooner'], ['love', 'went', 'problem', 'stayz', 'worx', 'like', 'not', 'thing', 'wish', 'thing', 'like', 'nike', 'swoosh', 'nd', 'fight', 'irish', 'insignia', 'etc', 'know', 'tuff', 'law', 'trade', 'mark', 'i', 'sure', 'find', 'way', 'hope', 'cuz', 'def', 'make', 'phone', 'look', 'nice'], ['work', 'great', 'us', 'not', 'super', 'fanci', 'call', 'text', 'occasion', 'pictur', 'cell', 'phone', 'great', 'unless', 'not', 'good', 'text', 'without', 'qwerti'], ['descript', 'said', 'comoad', 'straight', 'talk', 'not'], ['return', 'phone', 'not', 'expect'], ['good', 'choic', 'phone', 'work', 'great', 'pictur', 'qualiti', 'good'], ['bought', 'phone', 'twice', 'wonder', 'newer', 'version', 'come'], ['great', 'unlock', 'phone', 'price', 'work', 'well', 'dual', 'sim', 'purchas', 'month', 'everyth', 'ok', 'far', 'issu', 'high', 'recommend'], ['phone', 'limit', 'intern', 'storag', 'even', 'though', 'select', 'sd', 'card', 'storag', 'not', 'download', 'anyth', 'not', 'intern', 'storag', 'space', 'phone', 'not', 'worth', 'aggrav', 'constant', 'uninstal', 'reinstal', 'app', 'need', 'daili', 'basi', 'second', 'time', 'not', 'buy', 'lg', 'second', 'time', 'sever', 'disappoint', 'get', 'worth', 'toss', 'trash', 'not', 'worth', 'recycl', 'blue', 'tooth', 'horribl', 'phone', 'must', 'within', 'inch', 'yes', 'inch', 'order', 'work', 'arm', 'hang', 'leg', 'blue', 'tooth', 'cut', 'ear', 'phone', 'not', 'work', 'ear', 'phone', 'come', 'phone', 'cheap', 'mono', 'sound', 'ear', 'phone', 'not', 'cancel', 'nois', 'look', 'good', 'deal', 'low', 'price', 'buy', 'phone', 'promis', 'get', 'better', 'qualiti', 'save', 'money', 'buy', 'anoth', 'phone', 'good', 'tween', 'need', 'stay', 'touch', 'parent', 'even', 'ridicul', 'better', 'buy', 'lg', 'sell', 'phone', 'much', 'capabl'], ['good'], ['outstand', 'product', 'price', 'deliveri', 'qualiti', 'would', 'recommend', 'product', 'thank'], ['love', 'cell', 'simpl', 'simpl', 'need'], ['excelent'], ['one', 'dual', 'sim', 'slot', 'not', 'work', 'took', 'digicel', 'hook', 'nd', 'said', 'one', 'slot', 'good', 'bought', 'phone', 'go', 'vacat', 'jamaica', 'visit', 'want', 'small', 'sleek', 'phone', 'use', 'read', 'review', 'purchas', 'product', 'seem', 'good', 'front', 'camera', 'suck', 'well', 'guess', 'paid', 'bought', 'cheap', 'truli', 'not', 'even', 'know', 'take', 'vibrat', 'whenev', 'place', 'call', 'answer', 'parti', 'went', 'thru', 'set', 'could', 'not', 'find', 'turn', 'featur', 'overal', 'look', 'receiv', 'nd', 'send', 'call', 'good', 'not', 'pictur', 'take', 'vid'], ['awsom', 'good', 'phone'], ['phone', 'work', 'well', 'except', 'wifi', 'aspect', 'data', 'plan', 'good', 'howev', 'depend', 'wifi', 'hotspot', 'outsid', 'not', 'ideal', 'home', 'wifi', 'connect', 'one', 'specif', 'room', 'outsid', 'room', 'phone', 'not', 'pick', 'signal', 'android', 'phone', 'work', 'not', 'one', 'high', 'disappoint', 'rca', 'stick', 'tv', 'vcr', 'not', 'cell', 'phone'], ['size', 'price', 'great', 'not', 'need', 'doubl', 'sim', 'card', 'packag', 'make', 'sure', 'old', 'phone', 'turn', 'prior', 'remov', 'simpl', 'card', 'instal', 'new', 'phone', 'also', 'turn', 'ok'], ['not', 'realiz', 'phone', 'not', 'get', 'data', 'network', 'not', 'send', 'pictur', 'messag', 'not', 'see', 'pictur', 'sent', 'not', 'use', 'anyth', 'phone', 'unless', 'connect', 'could', 'live', 'within', 'short', 'month', 'purchas', 'not', 'updat', 'app', 'say', 'not', 'enough', 'memori', 'memori', 'card', 'show', 'use', 'intern', 'memori', 'show', 'still', 'left', 'sudden', 'today', 'not', 'see', 'anyth', 'facebook', 'use', 'phone', 'probabl', 'not', 'updat', 'anyth', 'save', 'money', 'want', 'anyth', 'phone', 'besid', 'talk', 'send', 'word', 'text'], ['good'], ['good', 'phone', 'teenag'], ['phone', 'good', 'talk', 'phone', 'answer', 'quick', 'wors', 'part', 'freez'], ['muy', 'bueno'], ['case', 'not', 'fit', 'lg'], ['i', 'phone', 'month', 'must', 'say', 'price', 'pretti', 'dang', 'good', 'light', 'weight', 'not', 'mind', 'screen', 'qualiti', 'great', 'qualiti', 'tilt', 'angl', 'get', 'clear', 'pictur', 'play', 'game', 'often', 'stay', 'charg', 'surpris', 'long', 'time', 'howev', 'i', 'day', 'thing', 'decid', 'play', 'game', 'not', 'last', 'half', 'long', 'want', 'play', 'game', 'strict', 'charg', 'first', 'last', 'sever', 'video', 'qualiti', 'good', 'light', 'good', 'sound', 'qualiti', 'excel', 'find', 'take', 'pretti', 'good', 'pictur', 'outsid', 'good', 'light', 'not', 'much', 'indoor', 'not', 'horribl', 'not', 'great', 'issu', 'coupl', 'time', 'connect', 'pretti', 'sure', 'not', 'phone', 'not', 'complain', 'not', 'pay', 'arm', 'leg', 'phone', 'compar', 'expens', 'phone', 'one', 'right', 'job', 'well'], ['excelent'], ['excel', 'buy'], ['bad', 'touch', 'bad'], ['exelent'], ['i', 'love'], ['excel'], ['screen', 'broke', 'within', 'week', 'impact', 'either', 'stop', 'work', 'work', 'good', 'last', 'cheap', 'made', 'use', 'care'], ['great', 'product', 'great', 'seller', 'happi', 'satisfi'], ['phone', 'not', 'last', 'one', 'year', 'sim', 'slot', 'broke', 'away', 'alon', 'poor', 'qualiti'], ['colleg', 'student', 'earli', 'first', 'smartphon', 'began', 'look', 'phone', 'replac', 'old', 'requir', 'must', 'either', 'android', 'appl', 'bank', 'simpl', 'app', 'not', 'work', 'window', 'oper', 'must', 'relat', 'camera', 'i', 'art', 'student', 'take', 'shot', 'paint', 'progress', 'use', 'must', 'small', 'enough', 'fit', 'must', 'email', 'must', 'abl', 'send', 'receiv', 'pictur', 'must', 'work', 'pay', 'go', 'phone', 'met', 'requir', 'problem', 'far', 'camera', 'not', 'iphon', 'qualiti', 'beat', 'previous', 'still', 'not', 'particip', 'group', 'messag', 'receiv', 'group', 'messag', 'individu', 'messag', 'person', 'particip', 'send', 'messag', 'back', 'separ', 'group', 'messag', 'receiv', 'phone', 'sinc', 'messag', 'not', 'present', 'convers', 'format', 'realli', 'hard', 'follow', 'group', 'messag', 'howev', 'might', 'problem', 'plan', 'rather', 'problem', 'littl', 'tough', 'find', 'case', 'sinc', 'not', 'phone', 'samsung', 'galaxi', 'mini', 'case', 'seem', 'fit', 'pretti', 'close', 'one', 'littl', 'bit', 'small', 'halfway', 'cover', 'camera', 'thing', 'love', 'phone', 'small', 'enough', 'fit', 'pocket', 'pretti', 'much', 'guarante', 'fit', 'wristlet', 'phone', 'thing', 'bought', 'sakroot', 'wallet', 'short', 'get', 'phone', 'fit', 'perfect', 'easi', 'use', 'gmail', 'googl', 'servic', 'frequent', 'sinc', 'android', 'featur', 'super', 'access', 'look', 'super', 'insert', 'micro', 'sd', 'extern', 'storag', 'not', 'use', 'phone', 'storag', 'think', 'great', 'purchas', 'price', 'rang', 'met', 'criteria', 'look', 'first', 'smartphon', 'would', 'get', 'accustom', 'phone', 'camera', 'not', 'fan', 'googl', 'would', 'steer', 'clear'], ['good', 'price', 'not', 'expect', 'much', 'long', 'understand', 'buy', 'cheaper', 'phone', 'great'], ['phone', 'go', 'cuba', 'cousin'], ['gift', 'love'], ['excel', 'phone', 'rival', 'samsung', 'mini', 'movistar', 'venezuela', 'perfect', 'good', 'camera'], ['perfec'], ['bought', 'phone', 'june', 'bought', 'white', 'black', 'version', 'phone', 'function', 'ok', 'white', 'version', 'came', 'defect', 'vibrat', 'sinc', 'gift', 'switch', 'mine', 'black', 'one', 'phone', 'vibrat', 'medium', 'knowledg', 'android', 'phone', 'move', 'everi', 'option', 'could', 'affect', 'vibrat', 'noth', 'exampl', 'turn', 'everi', 'android', 'devic', 'turn', 'small', 'vibrat', 'show', 'screen', 'well', 'one', 'noth', 'black', 'version', 'sure', 'bad', 'luck'], ['love', 'cell', 'simpl', 'simpl', 'need'], ['ok'], ['team', 'work', 'two', 'week', 'screen', 'went', 'white', 'not', 'recommend'], ['excel'], ['très', 'bon', 'choix', 'excel', 'rapport'], ['good', 'good', 'good', 'photo', 'size', 'best', 'work', 'line', 'movilnet', 'movilnet', 'digitel'], ['phone', 'run', 'slow', 'cheapli', 'made', 'screen', 'crack', 'drop', 'chair', 'carpet'], ['not', 'use', 'wifi', 'garbag', 'refurbish', 'junk'], ['realli', 'want', 'like', 'phone', 'bought', 'one', 'return', 'headphon', 'jack', 'lot', 'static', 'loos', 'connect', 'order', 'anoth', 'one', 'think', 'first', 'bad', 'luck', 'second', 'one', 'work', 'fine', 'day', 'start', 'lower', 'volum', 'hold', 'volum', 'button', 'boot', 'factori', 'mode', 'chines', 'less', 'came', 'realiz', 'lot', 'search', 'internet', 'get', 'android', 'phone', 'factori', 'mode', 'obvious', 'not', 'common', 'problem', 'hold', 'volum', 'button', 'reboot', 'phone', 'put', 'factori', 'mode', 'like', 'origin', 'said', 'realli', 'want', 'like', 'phone', 'not', 'will', 'tri', 'three', 'attempt', 'not', 'recommend', 'phone'], ['far', 'good', 'bought', 'phone', 'use', 'byop', 'program', 'tracfon', 'compat', 'tracfon', 'work', 'great', 'i', 'week', 'far', 'happi', 'use', 'call', 'text', 'littl', 'web', 'use', 'nice', 'phone', 'price'], ['symptom', 'sometim', 'pretti', 'much', 'alway', 'misplac', 'thing', 'especi', 'phone', 'holster', 'save'], ['work', 'good'], ['origin', 'genuin', 'otter', 'box', 'product', 'much', 'sturdier', 'better', 'qualiti', 'great', 'price', 'genuin', 'product', 'packag', 'pictur', 'not', 'ship', 'product', 'loos', 'packag', 'great', 'price', 'minor', 'annoy', 'ship', 'much', 'quicker', 'expect', 'recommend', 'seller', 'product'], ['pretti', 'good', 'replac', 'old', 'otterbox', 'case', 'not', 'authent', 'otterbox', 'though', 'could', 'not', 'turn', 'phone', 'face', 'snap', 'place', 'like', 'could', 'real', 'otterbox'], ['work', 'great', 'would', 'definit', 'buy', 'sinc', 'dad', 'keep', 'break'], ['work', 'great'], ['not', 'otterbox', 'replac', 'clip', 'generic', 'clip', 'not', 'advertis'], ['look'], ['clip', 'advertis', 'otter', 'like', 'one', 'one', 'receiv', 'clear', 'aftermarket', 'not', 'even', 'clip', 'onto', 'phone', 'wast', 'money'], ['nice', 'extra'], ['servic', 'time'], ['not', 'fit', 'activ'], ['fit', 'phone'], ['took', 'month', 'get', 'broke', 'month'], ['not', 'expect', 'not', 'fit', 'galaxi', 'activ'], ['not', 'last', 'long', 'break', 'mayb', 'month'], ['real', 'deal', 'otterbox', 'origin', 'logo'], ['receiv', 'exact', 'need'], ['not', 'fit', 'tight', 'hard', 'clip', 'unclip'], ['perfect', 'defend', 'case', 'fit', 'snug', 'stay', 'secur', 'deliv', 'two', 'day'], ['case', 'take', 'near', 'two', 'month', 'arriv', 'not', 'fit', 'phone', 'promis', 'bigger', 'phone', 'would', 'not', 'even', 'clip', 'would', 'not', 'recommend', 'purchas', 'seller', 'took', 'two', 'month', 'credit', 'card', 'charg', 'receiv', 'product'], [], ['great'], ['say', 'experi', 'amazon', 'good', 'passport', 'gone', 'beyond', 'would', 'expect', 'time', 'perfect', 'arriv', 'first', 'day', 'expect', 'deliveri', 'date', 'phone', 'sent', 'wrong', 'phone', 'instead', 'satisfi', 'blackberri', 'except', 'not', 'camera', 'notifi', 'passport', 'sent', 'updat', 'blackberri', 'told', 'keep', 'phone'], ['whilst', 'slight', 'exagger', 'say', 'product', 'like', 'new', 'minor', 'littl', 'mark', 'one', 'could', 'reason', 'expect', 'find', 'use', 'product', 'think', 'let', 'one', 'go', 'ok', 'batteri', 'not', 'good', 'not', 'realli', 'expect', 'like', 'new', 'real', 'disappoint', 'phone', 'work', 'fine', 'replac', 'batteri', 'bit', 'piec', 'packag', 'charger', 'holster', 'cdin', 'conclus', 'would', 'say', 'good', 'valu', 'would', 'hesit', 'buy', 'seller'], ['phone', 'dosent', 'camra', 'not', 'tell', 'yoy', 'everyth', 'phone', 'cearful', 'like', 'phone'], ['phone', 'expect', 'like', 'recommend', 'brother', 'yakubu', 'also', 'bought', 'pcs'], ['thing', 'stop', 'work', 'charg', 'not', 'start', 'not', 'charg'], ['excel'], ['phone', 'perfect', 'small', 'function', 'smartphon', 'tradit', 'keyboard', 'work', 'perfect', 'fast', 'wifi', 'connect', 'easi', 'use', 'also', 'includ', 'support', 'simpli', 'wonder', 'recommend'], ['bueno', 'dia', 'recomiendo', 'ampliament', 'est', 'articulo', 'hasta', 'ahora', 'todo', 'funcionado', 'perfectament', 'es', 'practico', 'pequeño', 'muy', 'util', 'cumpl', 'absolutament', 'con', 'toda', 'las', 'expectativa', 'que', 'tenia', 'sobr', 'el', 'equipo', 'celular'], ['el', 'tlf', 'llego', 'bien', 'una', 'vez', 'se', 'cayo', 'lo', 'lleve', 'servicio', 'técnico', 'dond', 'un', 'amigo', 'mio', 'cual', 'fue', 'la', 'sorpresa', 'el', 'teléfono', 'era', 'refabricado', 'reparado', 'les', 'digo', 'amazon', 'al', 'vendedor', 'es', 'important', 'manten', 'seriedad', 'en', 'est', 'tipo', 'de', 'negocio'], ['phone', 'ok', 'unlock', 'phone', 'must', 'kind', 'refurbish', 'phone', 'expect', 'though', 'say', 'new', 'condit'], ['pleas', 'not', 'buy', 'not', 'work', 'intern', 'total', 'wast', 'money', 'pleas', 'trust', 'negat', 'review', 'see', 'site'], ['excelent', 'smartphon', 'con', 'un', 'sonido', 'inigual', 'para', 'estacion', 'de', 'radio', 'el', 'speaker', 'mano', 'libr', 'para', 'ejecutivo', 'con', 'buen', 'recomiendo', 'para', 'trabajo', 'para', 'juguet'], ['like', 'phone', 'much', 'new', 'got', 'describ', 'well', 'seller', 'happi'], ['excel', 'product', 'good', 'care', 'seller', 'recommend'], ['bewar', 'capabl', 'carrier', 'drop', 'tower', 'make', 'room', 'told', 'mobil', 'difficult', 'get', 'signal'], ['thank', 'much', 'quick', 'repli', 'need', 'inform', 'simcard', 'would', 'work', 'phone', 'though', 'spend', 'alreadi', 'simcard', 'servic', 'plan', 'buy', 'later', 'simcard', 'use', 'phone', 'nice', 'look', 'strong', 'like', 'remyi', 'want', 'know', 'simcard', 'network', 'would', 'work', 'phone', 'troubl', 'phone', 'total', 'wireless', 'simcard', 'bought', 'phone', 'not', 'work', 'call', 'custom', 'servic', 'found', 'phone', 'not', 'compat', 'simcard', 'even', 'though', 'phone', 'said', 'cdma', 'compat', 'ii', 'could', 'not', 'use', 'phone', 'pleas', 'help'], ['not', 'buy', 'complet', 'junk', 'two', 'day', 'die', 'seller', 'refus', 'refund', 'never', 'buy', 'ever'], ['easi', 'assembl'], ['good'], ['excelent'], ['worst', 'buy', 'ever', 'purchas', 'phone', 'less', 'two', 'month', 'alreadi', 'phone', 'malfunct', 'refus', 'make', 'call', 'phone', 'ought', 'recal', 'custom', 'refund', 'unhappi', 'custom'], ['thank', 'carri', 'great', 'littl', 'function', 'phone'], ['excel', 'job', 'phone', 'good', 'thank'], ['purpos', 'samsung', 'solstic', 'fill', 'bill', 'better', 'slicker', 'barebon', 'cell', 'phone', 'access', 'internet', 'brows', 'quit', 'cumbersom', 'also', 'unlik', 'later', 'smartphon', 'access', 'internet', 'strict', 'cellular', 'servic', 'case', 'consum', 'cellular', 'capabl', 'access', 'home', 'hot', 'spot', 'not', 'purchas', 'phone', 'expect', 'surf', 'web', 'laptop', 'comput', 'carri', 'travel', 'besid', 'even', 'need', 'look', 'lodg', 'locat', 'restaur', 'gas', 'station', 'etc', 'point', 'point', 'wife', 'true', 'smart', 'phone', 'perfect', 'capabl', 'samsung', 'galaxi', 'exhilar', 'bell', 'n', 'whistl', 'need', 'cell', 'phone', 'get', 'rid', 'land', 'line', 'wife', 'smart', 'phone', 'dumb', 'phone', 'primarili', 'use', 'phone', 'well', 'phone', 'call', 'fewer', 'better', 'sport', 'virtual', 'qwerti', 'keypad', 'far', 'less', 'cumbersom', 'text', 'plain', 'old', 'cell', 'phone', 'numer', 'pad', 'i', 'not', 'realli', 'text', 'megapixel', 'onboard', 'camera', 'decent', 'wife', 'megapixel', 'camera', 'somewhat', 'adequ', 'post', 'facebook', 'i', 'much', 'cynic', 'old', 'perfectionist', 'reli', 'phone', 'camera', 'lieu', 'separ', 'digit', 'camera', 'iron', 'age', 'earli', 'own', 'first', 'pc', 'time', 'friend', 'relat', 'scof', 'notion', 'onlin', 'communic', 'yet', 'explor', 'bell', 'set', 'rington', 'speakerphon', 'crisp', 'clear', 'import', 'simpli', 'hate', 'hold', 'devic', 'ear', 'not', 'live', 'life', 'stare', 'small', 'screen', 'compani', 'friend', 'believ', 'not', 'coupl', 'ride', 'rail', 'actual', 'vacat', 'unobtrus', 'littl', 'gadget', 'right', 'choic', 'small', 'brain', 'small', 'phone', 'slim', 'smaller', 'way', 'around', 'standard', 'iphon', 'droid', 'see', 'around', 'today', 'take', 'littl', 'space', 'comfort', 'enough', 'carri', 'around', 'pant', 'pocket', 'not', 'forget', 'carri', 'line', 'around', 'buck', 'would', 'find', 'better', 'standard', 'cell', 'phone', 'equival', 'text', 'add', 'photo', 'attach', 'text', 'access', 'internet', 'need', 'wife', 'two', 'separ', 'line', 'use', 'phone', 'share', 'minut', 'data', 'via', 'consum', 'cellular', 'backbon', 'paltri', 'sum', 'buck', 'per', 'happi'], ['bought', 'husband', 'birthday', 'earlier', 'month', 'along', 'protect', 'case', 'love', 'phone', 'week', 'later', 'drop', 'floor', 'shatter', 'everywher', 'beyond', 'repair', 'yes', 'recommend', 'protect', 'case'], ['phone', 'total', 'bangin', 'work', 'perfect', 'mpcs', 'sim', 'card', 'not', 'send', 'receiv', 'pictur', 'form', 'multimedia', 'front', 'camera', 'low', 'bright', 'love'], ['not', 'access', 'googl', 'account', 'yahoo', 'keep', 'show', 'messag', 'need', 'assist'], ['satisfi', 'devic', 'work', 'great', 'look', 'amaz', 'abl', 'get', 'window', 'app', 'avail', 'great', 'love'], ['i', 'iphon', 'android', 'phone', 'first', 'window', 'phone', 'say', 'favorit', 'far', 'littl', 'hesit', 'get', 'window', 'phone', 'first', 'saw', 'one', 'back', 'year', 'ago', 'come', 'long', 'way', 'sinc', 'combin', 'best', 'featur', 'android', 'iphon', 'ad', 'uniqu', 'featur', 'love'], ['bought', 'mine', 'recommend', 'anoth', 'missionari', 'use', 'three', 'year', 'tropic', 'fallen', 'ladder', 'soak', 'innumer', 'time', 'pleas', 'manual', 'spanish', 'english', 'not', 'east', 'european'], ['got', 'phone', 'two', 'month', 'ago', 'incred', 'back', 'cover', 'littl', 'hard', 'open', 'got', 'open', 'instal', 'batteri', 'micro', 'sd', 'card', 'seal', 'tight', 'problem', 'problem', 'navig', 'menus', 'set', 'phone', 'samsung', 'phone', 'pretti', 'much', 'date', 'format', 'european', 'format', 'screen', 'show', 'fine', 'fm', 'radio', 'fantast', 'player', 'music', 'samsung', 'impress', 'sd', 'card', 'transfer', 'problemsit', 'came', 'european', 'power', 'adapt', 'found', 'samsung', 'impress', 'accessori', 'compat', 'car', 'charger', 'power', 'adapt', 'even', 'headset', 'work', 'wow', 'batteri', 'life', 'outstand', 'oh', 'flashlight', 'come', 'handi', 'ever', 'imagin', 'better', 'phone', 'use', 'camera', 'light', 'coupl', 'time', 'not', 'singl', 'con', 'last', 'two', 'month', 'price', 'drop', 'buck', 'consid', 'buy', 'anoth', 'one', 'put', 'away', 'backup', 'five', 'year', 'road', 'one', 'bought', 'found', 'touch', 'screen', 'phone', 'pain', 'rear', 'dial', 'dark', 'like', 'feel', 'actual', 'key', 'also', 'need', 'text', 'internet', 'phone', 'laptop', 'server', 'mean', 'need', 'phone', 'translat', 'english', 'real', 'want', 'phone', 'screen', 'not', 'crack', 'bump', 'drop', 'god', 'bid', 'accident', 'drop', 'old', 'toilet', 'not', 'worri', 'phone', 'even', 'step', 'not', 'phase', 'incred', 'well', 'built', 'phone', 'basic', 'swiss', 'armi', 'knife', 'phone', 'call', 'att', 'contract', 'told', 'start', 'carri', 'good', 'solid', 'phone', 'last', 'not', 'one', 'take', 'expens', 'plan', 'option', 'break', 'slightest', 'bump', 'not', 'renew', 'contract', 'continu', 'use', 'price', 'even', 'beat', 'far', 'somin', 'line', 'phone'], ['phone', 'compani', 'not', 'even', 'recogn', 'model', 'flash', 'light', 'wohoo', 'not', 'buy', 'even', 'samsung', 'cheap'], ['amazon', 'great', 'ship', 'got', 'day', 'bought', 'phone', 'husband', 'not', 'compar', 'al', 'phone', 'love', 'samsung', 'brand', 'saw', 'one', 'got', 'job', 'satisfi', 'featur', 'simpl', 'phone', 'realli', 'durabl', 'complaint', 'thank', 'amazon'], ['good', 'phone', 'bought', 'gift', 'person', 'receiv', 'happi', 'option'], ['phone', 'screen', 'alreadi', 'quit', 'work', 'within', 'one', 'phone', 'not', 'drop', 'abus', 'would', 'not', 'purchas', 'phone'], ['receiv', 'product', 'time', 'manner', 'batteri', 'life', 'ridicul', 'not', 'charg', 'phone', 'everi', 'convers', 'producut', 'came', 'user', 'manual', 'instruct', 'use', 'phone', 'return', 'reason'], ['bien'], ['el', 'teléfono', 'estaba', 'rayado', 'el', 'cargador', 'también', 'trae', 'cabl', 'usb', 'ni', 'audífono', 'es', 'mejor', 'pagar', 'mas', 'comprar', 'un', 'articulo', 'de', 'mejor', 'calidad'], ['sleek', 'stylish', 'phone', 'easi', 'use', 'problem', 'receiv', 'pic', 'warn', 'roam', 'charg', 'continu', 'i', 'not', 'get', 'charg', 'bit', 'camera', 'easi', 'use', 'prefer', 'uncompl', 'devic', 'good', 'phone', 'price'], ['phone', 'got', 'mom', 'gift', 'not', 'smart', 'phone', 'simpl', 'easi', 'use', 'navig', 'love', 'phone', 'perfect', 'someon', 'not', 'touch', 'screen'], ['excelent'], ['i', 'keep', 'review', 'short', 'sweet', 'lot', 'review', 'pros', 'con', 'verizon', 'droid', 'eri', 'phone', 'processor', 'surpris', 'verizon', 'network', 'suck', 'live', 'phone', 'slow', 'type', 'virtual', 'keypad', 'horribl', 'would', 'lag', 'stutter', 'everyth', 'phone', 'slow', 'phone', 'processor', 'super', 'fast', 'not', 'worri', 'kill', 'app', 'keyboard', 'fantast', 'absolut', 'lag', 'screen', 'gorgeous', 'call', 'qualiti', 'great', 'get', 'great', 'servic', 'want', 'get', 'epic', 'sprint', 'physic', 'keyboard', 'use', 'captiv', 'realli', 'not', 'need', 'physic', 'keypad', 'thing', 'work', 'edit', 'gps', 'broken', 'current', 'softwar', 'issu', 'appar', 'fix', 'also', 'receiv', 'phone', 'problem', 'random', 'turn', 'return', 'phone', 'amazon', 'got', 'new', 'one', 'far', 'problem', 'new', 'phone', 'lot', 'research', 'issu', 'appear', 'bad', 'batch', 'captiv', 'not', 'softwar', 'issu', 'app', 'issu'], ['great', 'phone', 'price', 'got', 'liter', 'unbeat', 'awar', 'might', 'not', 'get', 'right', 'away', 'credit', 'check', 'process', 'go', 'delay', 'shipment', 'day', 'amazon', 'delay', 'ship', 'order', 'two', 'time', 'final', 'got', 'phone', 'week', 'half', 'later', 'not', 'need', 'phone', 'immedi', 'not', 'problem', 'someth', 'consid', 'absolut', 'need', 'phone', 'arriv', 'time', 'also', 'luckili', 'price', 'phone', 'drop', 'delay', 'period', 'cancel', 'order', 'lower', 'price', 'not', 'bill', 'amazon', 'ship', 'phone', 'shipment', 'delay', 'price', 'drop', 'definit', 'take', 'advantag', 'high', 'recommend'], ['love', 'phone', 'sturdi', 'i', 'drop', 'waay', 'mani', 'time', 'count', 'littl', 'one', 'drop', 'water', 'submerg', 'dri', 'pretti', 'quick', 'function', 'fine'], ['got', 'phone', 'father', 'birthday', 'free', 'cheap', 'flip', 'phone', 'go', 'phone', 'arriv', 'earli', 'deliv', 'time', 'frame', 'phone', 'orgin', 'box', 'phone', 'came', 'brand', 'new', 'condit', 'protect', 'cover', 'outsid', 'screen', 'still', 'gave', 'five', 'star', 'review', 'phone', 'fulli', 'charg', 'need', 'activ'], ['past', 'five', 'year', 'bought', 'use', 'flip', 'phone', 'thing', 'usual', 'work', 'fine', 'time', 'bought', 'use', 'samsung', 'convoy', 'phone', 'behav', 'errat', 'flash', 'light', 'come', 'random', 'exhaust', 'batteri', 'phone', 'make', 'call', 'one', 'hold', 'new', 'model', 'would', 'probabl', 'fine', 'not', 'buy', 'anoth', 'use', 'one'], ['great', 'basic', 'phone', 'still', 'purchas', 'add', 'data', 'conract', 'tough', 'phone', 'drop', 'sever', 'time', 'show', 'physic', 'damag', 'phone', 'still', 'work', 'nice', 'size', 'fit', 'easili', 'hand', 'pocket', 'speaker', 'normal', 'use', 'volum', 'turn', 'max', 'sound', 'may', 'loos', 'clariti', 'i', 'sure', 'one', 'may', 'relat', 'background', 'nois', 'user', 'voic', 'i', 'would', 'buy', 'phone', 'actual', 'replac', 'phone', 'went', 'thru', 'wash', 'machin'], ['thing', 'take', 'beat', 'work'], ['love', 'phone'], ['phone', 'exact', 'advertis', 'ship', 'fast', 'easi', 'activ', 'wife', 'happi', 'replac', 'one', 'took', 'swim'], ['work', 'great', 'look', 'great'], ['first', 'week', 'stay', 'issu', 'not', 'even', 'hear', 'husband', 'talk', 'phone'], ['great', 'durabl', 'flip', 'phone'], ['work', 'great'], ['rug', 'cheap'], ['excel', 'phone', 'rug', 'work', 'time'], ['work', 'good', 'day', 'not', 'meet', 'need'], ['phone', 'good', 'afford', 'good', 'love', 'plan', 'buy', 'one', 'son', 'thank', 'much'], ['love', 'phone', 'worri', 'negat', 'thing', 'read', 'decid', 'tri', 'anyway', 'i', 'happi', 'not', 'one', 'negat', 'thing', 'say', 'phone', 'better', 'expect'], ['easi', 'simpl', 'use', 'phone', 'problem', 'talk', 'text', 'believ', 'access', 'internet', 'would', 'buy'], ['took', 'littl', 'time', 'figur', 'husband', 'like'], ['poor', 'menus', 'extrem', 'poor', 'sound', 'qualiti'], ['tri', 'phone', 'extra', 'cell', 'phone', 'work', 'great', 'keyboard', 'realli', 'nice', 'feel', 'great', 'want', 'basic', 'phone', 'call', 'text'], ['bought', 'phone', 'pop', 'first', 'time', 'smart', 'phone', 'user', 'interfac', 'simpl', 'enough', 'job'], ['nice', 'screen', 'clear', 'camera', 'front', 'back', 'wish', 'batteri', 'life', 'littl', 'bit', 'longer', 'great', 'phone', 'durabl', 'drop', 'quit', 'time', 'screen', 'not', 'broke'], ['phone', 'amaz', 'defictt', 'suck', 'rite', 'haff', 'send', 'back', 'i', 'realli', 'upset'], ['thought', 'pretti', 'sketchi', 'buy', 'phone', 'onlin', 'first', 'usual', 'see', 'peopl', 'lot', 'complic', 'phone', 'buy', 'internet', 'best', 'purchas', 'i', 'ever', 'made', 'cell', 'phone', 'not', 'fanci', 'fanci', 'job', 'great', 'batteri', 'run', 'great', 'around', 'awesom', 'phone', 'pleas', 'also', 'bought', 'one', 'box', 'screen', 'protector', 'phone', 'drop', 'phone', 'time', 'everi', 'time', 'shat', 'would', 'land', 'screen', 'first', 'onto', 'concret', 'total', 'fine', 'afterward', 'still', 'not', 'want', 'take', 'anymor', 'risk', 'say', 'pretti', 'strong', 'phone', 'around', 'love', 'pictur', 'qualiti', 'great'], ['slow', 'respons', 'compar', 'samsung', 'galaxi', 'not', 'recommend'], ['think', 'love', 'far', 'realli', 'nice', 'size', 'set', 'treat', 'direct', 'pretti', 'vagu', 'tutori', 'site', 'hope', 'help', 'problem', 'use', 'word', 'abbrevi', 'not', 'clue', 'phone', 'fast', 'lot', 'fun', 'thing', 'access', 'ap', 'realli', 'think', 'better', 'though'], ['fast', 'work', 'good', 'use', 'g', 'go', 'phone', 'plan', 'need', 'new', 'sim', 'card', 'use', 'go', 'phone', 'acount'], ['purchas', 'phone', 'pure', 'mobil', 'sent', 'phone', 'batteri', 'not', 'even', 'last', 'full', 'day', 'internet', 'signal', 'spotti', 'best', 'although', 'notic', 'small', 'chip', 'plastic', 'side', 'phone', 'dismiss', 'arriv', 'screen', 'protector', 'appear', 'seal', 'origin', 'packag', 'assum', 'unreli', 'servic', 'problem', 'carrier', 'took', 'phone', 'multipl', 'time', 'ultim', 'find', 'thata', 'phone', 'least', 'two', 'regist', 'user', 'purchas', 'activ', 'b', 'phone', 'like', 'suffer', 'damag', 'water', 'connect', 'faulti', 'suppos', 'new', 'batteri', 'held', 'charg', 'poor', 'entir', 'miss', 'liquid', 'indic', 'sticker', 'becam', 'warm', 'charg', 'store', 'clerk', 'told', 'batteri', 'expos', 'water', 'pose', 'potenti', 'fire', 'risk', 'not', 'use', 'actual', 'new', 'exhiler', 'got', 'carrier', 'work', 'like', 'charm', 'high', 'recommend', 'fast', 'respons', 'easi', 'use', 'small', 'enough', 'fit', 'pocket', 'unlik', 'mani', 'galaxi', 'becom', 'larger', 'larg', 'success', 'model', 'howev', 'avoid', 'pure', 'mobil', 'run', 'scam', 'i', 'disappoint', 'amazon', 'trust', 'con', 'artist', 'fulfil', 'seller'], ['phone', 'got', 'good', 'condit', 'star'], ['brought', 'phone', 'sellig', 'got', 'today', 'speak', 'phone', 'not', 'work', 'menu', 'button', 'not', 'work', 'time', 'junk', 'would', 'never', 'buy', 'anyth', 'els', 'seller'], ['love', 'samsung', 'phone', 'compact', 'easi', 'keep', 'even', 'download', 'app', 'want'], ['rate', 'phone', 'one', 'star', 'suppos', 'new', 'phone', 'not', 'pictur', 'tht', 'unaceppt', 'bad', 'busi', 'also', 'phone', 'freez', 'cut', 'disappoint', 'way', 'around', 'i', 'loyal', 'custom', 'eveytim', 'buy', 'phone', 'end', 'send', 'bck', 'unsatisfi', 'custom', 'happen', 'go', 'take', 'farther', 'action'], ['got', 'phone', 'know', 'not', 'fastest', 'best', 'market', 'hope', 'cost', 'effect', 'altern', 'posit', 'clear', 'bright', 'screen', 'fair', 'fast', 'wifi', 'decent', 'pictur', 'qualiti', 'negat', 'two', 'week', 'own', 'touch', 'screen', 'start', 'act', 'third', 'week', 'finish', 'start', 'peel', 'like', 'scab', 'two', 'month', 'speaker', 'given', 'phone', 'not', 'ring', 'top', 'mani', 'softwar', 'glitch', 'short', 'batteri', 'life', 'alway', 'impress', 'samsung', 'phone', 'past', 'start', 'chang', 'mind'], ['good', 'latest', 'phone'], ['like', 'mobil', 'devic', 'good', 'easi', 'work', 'batteri', 'last', 'long', 'like', 'want', 'turn', 'network', 'cellular', 'data', 'turn', 'internet', 'manual', 'not', 'otherwis', 'like', 'samsung', 'att', 'flight'], ['keep', 'turn'], ['regular', 'desempeño', 'carcasa', 'desech'], ['need', 'someth', 'could', 'use', 'phone', 'text', 'fill', 'bill'], ['love', 'phone', 'easi', 'use', 'durabl', 'key', 'big', 'enough', 'see', 'type', 'face', 'big', 'enough', 'see', 'app', 'clear'], ['chose', 'phone', 'replac', 'one', 'like', 'wrong', 'would', 'recommend', 'anyon'], ['earli', 'not', 'mani', 'messag', 'phone', 'left', 'market', 'name', 'brand', 'trust', 'not', 'go', 'get', 'smart', 'phone', 'big', 'data', 'plan', 'phone', 'good', 'phone', 'wife', 'teenag', 'son', 'happi', 'wife', 'patienc', 'difficult', 'use', 'technolog', 'pick', 'use', 'immedi', 'flight', 'last', 'year', 'work', 'reliabl', 'minor', 'improv', 'mention', 'wife', 'like', 'not', 'quit', 'slick', 'easier', 'hold', 'good', 'phone'], ['excel', 'product'], ['unfortun', 'cell', 'phone', 'not', 'origin', 'packag', 'not', 'orang', 'one', 'blue', 'one', 'samsung', 'logo', 'batteri', 'empti', 'not', 'new', 'produc', 'handset', 'new', 'also', 'not', 'origin', 'phone', 'scratch', 'smell', 'bad', 'not', 'new', 'one', 'tast', 'unlock', 'seem', 'new', 'i', 'littl', 'bit', 'confus', 'amazon', 'sell', 'one', 'take', 'control', 'qualiti', 'give', 'bad', 'feedback'], ['excel', 'phone', 'easi', 'use', 'good', 'size', 'screen', 'text', 'call', 'one', 'issu', 'far', 'phone', 'call', 'termin', 'call', 'icon', 'move', 'screen', 'rapid', 'user', 'must', 'scroll', 'find', 'check', 'see', 'set', 'issu', 'would', 'recommend', 'phone'], ['complet', 'irrit', 'never', 'purchas', 'phone', 'though', 'phone', 'purchas', 'not', 'unlock', 'say', 'descript', 'extrem', 'irrit', 'pay', 'data', 'unabl', 'use'], ['awesom', 'unlock', 'phone', 'phone', 'easi', 'navig', 'would', 'recommend', 'phone', 'anyon', 'buy', 'older', 'phone'], ['bought', 'cellpgin', 'use', 'un', 'venezuela', 'movistar', 'das', 'worri', 'cellphon', 'say', 'bit', 'work', 'well', 'movistar', 'other', 'compani', 'like', 'movistar', 'like', 'cellphon', 'camera', 'take', 'incred', 'photo', 'first', 'time', 'window', 'phone', 'like', 'android', 'thing', 'not', 'like', 'not', 'call', 'skype', 'direct', 'contact', 'list', 'use', 'samsung', 'galaxi'], ['like', 'phone', 'use', 'mac', 'not', 'updat', 'download', 'app', 'not', 'communic', 'back', 'use', 'cheap', 'phone', 'system', 'call', 'pure', 'talk', 'usa', 'perfect', 'older', 'peopl', 'like', 'not', 'use', 'cell', 'phone', 'much', 'howev', 'put', 'sim', 'card', 'phone', 'not', 'work', 'call', 'pure', 'talk', 'connect', 'time', 'hung', 'wish', 'could', 'updat', 'get', 'kick', 'voic', 'function', 'said', 'find', 'british', 'pub', 'ashland', 'oregon', 'gave', 'pub', 'telephon', 'number', 'locat', 'map', 'wow', 'voic', 'work', 'everyon', 'phone', 'list', 'well', 'say', 'call', 'cell', 'say', 'call', 'mobil'], ['phone', 'arriv', 'two', 'day', 'ago', 'live', 'costa', 'rica', 'central', 'america', 'put', 'sim', 'work', 'phone', 'need', 'unlock', 'code', 'appreci', 'give'], ['great', 'devic', 'faster', 'long', 'batteri', 'life', 'camara', 'mb', 'pixel', 'strong', 'recommend'], ['realli', 'suck', 'use', 'phone', 'oversea', 'last', 'trip', 'work', 'fine', 'text', 'call', 'internet', 'capabl', 'window', 'softwar', 'need', 'lot', 'work', 'not', 'refin', 'like', 'appl', 'io', 'not', 'even', 'close', 'cours', 'not', 'pay', 'price', 'could', 'upgrad', 'softwar', 'thru', 'zune', 'look', 'phone', 'possibl', 'updat', 'other', 'said', 'done', 'phone', 'would', 'not', 'turn', 'flabbergast', 'i', 'bare', 'use', 'phone', 'not', 'recommend', 'phone', 'got', 'use', 'work', 'fine', 'basic', 'basic', 'way', 'os', 'definit', 'lack', 'simplic', 'beauti', 'unfortun', 'someth', 'wrong', 'hardwar', 'devic', 'not', 'turn', 'tri', 'charg', 'tri', 'pull', 'batteri', 'noth', 'work', 'start', 'research', 'problem', 'found', 'seem', 'problem', 'phone', 'move', 'not', 'worth', 'risk'], ['instal', 'app', 'not', 'work', 'proper', 'marketplac', 'work', 'music', 'search', 'found', 'microsoft', 'new', 'app', 'store', 'tri', 'get', 'use', 'internet', 'explor', 'could', 'not', 'get', 'app', 'page', 'load', 'connect', 'pc', 'found', 'download', 'instal', 'zune', 'pc', 'communic', 'phone', 'slow', 'tri', 'updat', 'phone', 'softwar', 'updat', 'process', 'verri', 'slow', 'phone', 'restart', 'sever', 'time', 'phone', 'froze', 'disconnect', 'phone', 'turn', 'sever', 'time', 'took', 'batteri', 'sever', 'time', 'could', 'not', 'unfreez', 'not', 'come', 'print', 'manual', 'either', 'download', 'discov', 'reset', 'own', 'sever', 'nokia', 'symbian', 'phone', 'use', 'coupl', 'android', 'tablet', 'window', 'pure', 'junk', 'comparison', 'even', 'symbian', 'pretti', 'much', 'outdat', 'much', 'robust', 'return', 'phone', 'hardwar', 'seem', 'pretti', 'much', 'promis', 'shame', 'oper', 'system'], ['perfect', 'phone', 'easi', 'use', 'great', 'photo', 'high', 'speed', 'internet', 'absolut', 'love', 'came', 'quick', 'necessari', 'attach', 'power', 'cord', 'manual', 'head', 'set', 'happi'], ['exact', 'expect', 'excel', 'purchas'], ['galaxi', 'came', 'without', 'batteri'], ['would', 'love', 'use', 'phone', 'phone', 'not', 'come', 'batteri', 'i', 'go', 'go', 'buy', 'anoth', 'even', 'not', 'recommend', 'definit', 'never', 'buy', 'seller'], ['nice', 'sleek', 'phone', 'requir', 'featur'], ['excel'], ['excelent'], ['good', 'phone', 'work', 'realli', 'well', 'import', 'unit', 'state', 'canada', 'mot', 'capabl', 'found', 'unlock', 'without', 'phone', 'servic', 'attach', 'deliveri', 'fine', 'pay', 'around', 'box', 'border', 'tax', 'deliveri', 'quick', 'direct', 'job'], ['excel'], ['exelent'], [], ['excelent', 'recomend'], ['good', 'phone', 'two', 'day', 'use', 'far', 'user', 'friend'], ['must', 'say', 'refurbish', 'qualiti', 'awesom'], ['love'], ['nice', 'phone', 'price'], ['excel'], ['wife', 'love', 'alot', 'better', 'edg', 'well', 'built', 'kudo', 'samsung'], ['phone', 'month', 'microphon', 'data', 'port', 'stop', 'work', 'phone', 'charg', 'usb', 'data', 'portion', 'not', 'transfer', 'data', 'tri', 'multipl', 'usb', 'cabl', 'work', 'phone', 'transfer', 'data', 'not', 'work', 'tri', 'factori', 'reset', 'safe', 'mode', 'everyth', 'els', 'get', 'phone', 'work', 'took', 'cellphon', 'repair', 'store', 'state', 'like', 'microphon', 'usb', 'gone', 'bad', 'would', 'minimum', 'fix', 'issu', 'contact', 'samsung', 'direct', 'check', 'warranti', 'inform', 'sinc', 'phone', 'design', 'mexico', 'not', 'anyth'], ['good'], ['good'], ['easiest', 'chang', 'ever', 'made', 'new', 'phone', 'chip', 'cut', 'size', 'abl', 'complet', 'much', 'faster', 'oper', 'previous', 'phone'], ['good'], ['great', 'phone', 'awesom', 'price', 'good', 'day', 'setup', 'everyth', 'move', 'quick', 'bright', 'color', 'pop', 'screen', 'would', 'definit', 'purchas'], ['receiv', 'wrong', 'cellphon', 'fell', 'cheat', 'want', 'money', 'back'], ['phone', 'not', 'work', 'lte', 'ecuador', 'not', 'need', 'phone'], ['god', 'choic'], ['set', 'phone', 'cricket', 'wireless', 'network', 'add', 'data', 'set', 'manual', 'first', 'tri', 'got', 'edg', 'went', 'back', 'set', 'check', 'automat', 'blaze', 'screen', 'awesom', 'come', 'not', 'miss', 'love'], ['work', 'perfect', 'love'], ['tal', 'como', 'lo', 'esperaba', 'el', 'envío', 'fué', 'tiempo', 'el', 'celular', 'llegó', 'muy', 'bien', 'empaquetado', 'asegurado', 'recomendado', 'por', 'el', 'precio', 'por', 'la', 'calidad', 'del', 'envío', 'gracia'], ['excel'], ['excel', 'product'], ['love'], ['price', 'iphon', 'grate', 'live', 'usa', 'work', 'perfect', 'pay', 'go', 'chip'], ['spent', 'hour', 'tri', 'decid', 'kind', 'phone', 'get', 'good', 'price', 'want', 'phone', 'flash', 'foward', 'face', 'camera', 'came', 'across', 'one', 'stuck', 'also', 'need', 'unlock', 'phone', 'nervous', 'i', 'never', 'own', 'unlock', 'phone', 'not', 'sure', 'expect', 'liter', 'read', 'everi', 'review', 'phone', 'english', 'review', 'speak', 'minor', 'spanish', 'weigh', 'negat', 'postiv', 'decid', 'order', 'came', 'day', 'earli', 'track', 'would', 'know', 'citi', 'wait', 'hour', 'outsid', 'mail', 'man', 'much', 'want', 'go', 'ahead', 'tri', 'phone', 'open', 'box', 'expect', 'someth', 'use', 'not', 'right', 'negat', 'review', 'scare', 'alittl', 'lol', 'brand', 'new', 'came', 'phone', 'cours', 'charger', 'european', 'charger', 'even', 'earbud', 'phone', 'phone', 'light', 'run', 'good', 'download', 'app', 'allow', 'use', 'mms', 'phone', 'unlock', 'phone', 'free', 'app', 'send', 'pictur', 'receiv', 'camera', 'phone', 'vivid', 'flash', 'bright', 'lol', 'want', 'foward', 'face', 'camera', 'word', 'good', 'well', 'camera', 'seem', 'take', 'high', 'resolut', 'pictur', 'phone', 'came', 'look', 'exact', 'like', 'pictur', 'get', 'set', 'languag', 'need', 'european', 'english', 'first', 'turn', 'english', 'unit', 'state', 'right', 'sync', 'googl', 'account', 'everyth', 'els', 'tooken', 'care', 'call', 'qualiti', 'great', 'speaker', 'qualiti', 'phone', 'amaz', 'brother', 'iphon', 'impress', 'phone', 'definit', 'upgrad', 'i', 'love', 'phone'], ['good'], ['excelent'], ['muy', 'buen', 'producto', 'lo', 'encontr', 'sin', 'ningun', 'detall', 'muy', 'puntual', 'la', 'llegada', 'muy', 'respons', 'mi', 'celular', 'llego', 'en', 'excelent', 'estado'], ['good'], ['excel', 'good', 'afternoon', 'make', 'purchas'], ['good'], ['great', 'phone'], ['excelent'], ['good', 'phone', 'not', 'problem', 'work', 'perfect', 'usa', 'perfect', 'size', 'screen', 'resolut', 'realli', 'good'], ['phone', 'slow', 'not', 'work', 'well'], ['favorit', 'cell', 'phone', 'ever', 'easi', 'use', 'dummi', 'friend', 'use', 'bare', 'bone', 'phone', 'plan', 'frill', 'phone', 'work', 'well', 'even', 'plan', 'pleas'], ['nice', 'goog', 'custom', 'servic'], ['good'], ['phone', 'work', 'great'], ['muy', 'bueno'], ['love', 'smartphon', 'awesom'], ['great', 'phone', 'want', 'galaxi', 'not', 'want', 'larger', 'screen', 'less', 'need', 'featur', 'rest', 'galaxi', 'famili', 'smooth', 'updat', 'latest', 'android', 'version'], ['came', 'realli', 'late', 'love', 'product'], ['describ', 'work', 'like', 'cell', 'phone'], ['love'], ['mobil', 'work', 'great', 'better', 'camera'], ['i', 'love', 'phone'], ['replac', 'daughter', 'lost', 'ipon', 'reset', 'use', 'follow', 'review', 'post', 'satisfi'], ['great', 'phone', 'great', 'price'], ['excel', 'aluminium'], ['awesom', 'love', 'design', 'nice', 'work', 'realli', 'fast', 'ship', 'nice', 'seller', 'thank'], ['absolut', 'love', 'phone', 'month', 'camera', 'awesom', 'front', 'rear'], ['use', 'review', 'suggest', 'setup', 'instruct', 'found', 'unnecessari', 'phone', 'recogn', 'network', 'problem', 'switch', 'app', 'easi', 'app', 'screen', 'not', 'like', 'android', 'think', 'clunki', 'work', 'better', 'also', 'true', 'tablet', 'not', 'bad', 'implement', 'good', 'phone', 'good', 'general', 'purpos', 'smartphon', 'fit', 'better', 'hand', 'larger', 'model', 'fit', 'trouser', 'pocket', 'well', 'enough', 'bit', 'big', 'hip', 'case', 'unless', 'want', 'look', 'like', 'survivalist', 'call', 'qualiti', 'good', 'general', 'sound', 'good', 'music', 'playback', 'camera', 'produc', 'good', 'pictur', 'much', 'cheaper', 'galaxi', 'seri', 'replac', 'batteri', 'unlik', 'galaxi', 'samsung', 'brought', 'abandon', 'coupl', 'month', 'later', 'favor', 'seri', 'may', 'mistak'], ['work', 'great', 'need', 'smaller', 'sim', 'card', 'cut', 'sim', 'card'], ['one', 'best', 'model', 'samsung', 'ever'], ['great', 'fast', 'ship'], ['excel', 'aluminium'], ['great', 'phone', 'even'], ['i', 'enjoy', 'devis', 'much', 'simpl', 'unlock', 'devis', 'place', 'sim', 'card', 'start', 'upload', 'contact', 'whatev', 'els', 'tie', 'locker', 'glitch', 'origin', 'purchas', 'devis', 'issu', 'would', 'delet', 'incom', 'text', 'messag', 'sever', 'outgo', 'would', 'also', 'duplic', 'incom', 'heat', 'often', 'send', 'back', 'button', 'would', 'not', 'work', 'wait', 'cool', 'abl', 'close', 'run', 'app', 'mess', 'data', 'usag', 'littl', 'smaller', 'expect', 'i', 'girl', 'work', 'could', 'slip', 'pocket', 'problem', 'contact', 'amazon', 'good', 'ship', 'anoth', 'devis', 'gave', 'month', 'return', 'old', 'one', 'work', 'well', 'gave', 'enough', 'time', 'transfer', 'app', 'imag', 'time', 'manner', 'not', 'rush', 'panic', 'hope', 'transfer', 'everyth', 'new', 'devis', 'seem', 'work', 'better', 'littl', 'slow', 'hard', 'drive', 'small', 'pictur', 'beuti', 'vibrant', 'wish', 'camera', 'would', 'zoom', 'littl', 'i', 'get', 'paid', 'batteri', 'life', 'not', 'best', 'charg', 'often', 'i', 'go', 'make', 'sure', 'i', 'make', 'sure', 'last', 'hour', 'text', 'lot', 'take', 'pic', 'hour', 'max', 'life', 'batteri', 'definit', 'buy', 'anoth', 'galaxi', 'i', 'readi', 'upgrad', 'newer', 'version', 'camera', 'batteri', 'upgrad', 'get', 'lot', 'compliment', 'vibranc', 'pic'], ['work', 'great', 'love', 'lag', 'run', 'smooth', 'would', 'recommend'], ['good', 'phone', 'fast', 'lot', 'featur', 'like', 'fingerprint', 'realli', 'recommend'], ['guess', 'would', 'not', 'break', 'news', 'say', 'samsung', 'great', 'hardwar', 'phone', 'great', 'hold', 'look', 'nice', 'work', 'fast', 'smooth', 'still', 'compar', 'nexus', 'like', 'bare', 'android', 'samsung', 'phone', 'purchas', 'wife', 'made', 'transit', 'iphon', 'android', 'quit', 'good', 'eleg', 'right', 'size', 'not', 'huge', 'screen', 'current', 'phone', 'fast', 'batteri', 'life', 'ok', 'would', 'easili', 'trade', 'width', 'bigger', 'batteri'], ['coolest', 'samsung', 'phone', 'own', 'yet', 'well'], ['poor', 'batteri', 'life', 'expens', 'phone'], ['good', 'combin', 'power', 'small', 'android'], ['everyth', 'perfect', 'allreadi', 'order'], ['great', 'phone', 'come', 'new', 'box', 'charger', 'syc', 'cabl', 'headphon', 'side', 'not', 'manual'], ['wonder', 'space', 'batteri', 'could', 'better', 'still', 'charg', 'use', 'lot'], ['bad', 'qualiti'], ['expect', 'phone', 'decent', 'usabl', 'blown', 'away', 'hardwar', 'screen', 'amaz', 'bright', 'sharp', 'crisp', 'word', 'would', 'use', 'describ', 'one', 'nicer', 'screen', 'use', 'phone', 'phone', 'also', 'perform', 'well', 'not', 'troubl', 'run', 'program', 'yet', 'video', 'pull', 'internet', 'play', 'without', 'problem', 'coupl', 'hesit', 'tri', 'switch', 'window', 'definit', 'not', 'norm', 'impress', 'interfac', 'samsung', 'put', 'phone', 'think', 'would', 'need', 'phone', 'maxim', 'abil', 'might', 'leav', 'howev', 'phone', 'load', 'bloatwar', 'root', 'might', 'worthwhil', 'get', 'rid', 'excess', 'phone', 'come', 'activ', 'pop', 'sim', 'ran', 'fine', 'work', 'advertis'], ['first', 'touch', 'screen', 'i', 'get', 'use', 'i', 'realli', 'enjoy', 'screen', 'sensit'], ['purchas', 'smartphon', 'issu', 'far', 'even', 'though', 'phone', 'not', 'top', 'line', 'still', 'excel', 'choic', 'person', 'budget', 'not', 'want', 'get', 'stuck', 'month', 'bill', 'almost', 'function', 'high', 'end', 'smartphon'], ['teenag', 'daughter', 'receiv', 'phone', 'birthday', 'march', 'recent', 'lost', 'exact', 'phone', 'good', 'origin', 'purchas', 'good', 'phone', 'everyth', 'smartphon'], ['cool', 'phone', 'best', 'prepaid', 'phone', 'around', 'imho', 'screen', 'sharp', 'clear', 'phone', 'perform', 'well', 'time', 'time', 'slow', 'bit', 'app', 'instal', 'help', 'batteri', 'life', 'not', 'great', 'least', 'good', 'smart', 'phone', 'own', 'expect', 'satisfi', 'phone'], ['bought', 'two', 'daughter', 'bought', 'newer', 'version', 'like', 'better', 'half', 'cost', 'new', 'one', 'new', 'os', 'slow'], ['sorri', 'samsung', 'hate', 'phone', 'funki', 'softwar', 'sent', 'back', 'went', 'ahead', 'got', 'galaxi', 'ii', 'frank', 'still', 'not', 'favorit', 'far', 'better'], ['say', 'almost', 'awesom', 'titl', 'one', 'big', 'issu', 'phone', 'even', 'processor', 'becom', 'sluggish', 'mani', 'app', 'use', 'even', 'one', 'app', 'like', 'grooveip', 'gps', 'stream', 'music', 'extend', 'period', 'time', 'anywher', 'minut', 'ward', 'wife', 'samsung', 'transform', 'ultra', 'boost', 'mobil', 'processor', 'not', 'similar', 'function', 'issu', 'fix', 'reboot', 'excel', 'phone', 'especi', 'someon', 'not', 'use', 'mention', 'app', 'use', 'casual', 'excel', 'phone', 'reason', 'give', 'star', 'not', 'get', 'live', 'work', 'great', 'wifi'], ['price', 'fair', 'decent', 'phone', 'switch', 'blackberri', 'miss', 'physic', 'keyboard', 'small', 'size', 'android', 'phone', 'go', 'phone', 'one', 'smaller', 'one', 'almost', 'exact', 'size', 'iphon', 'even', 'larger', 'screen', 'iphon', 'screen', 'size', 'phone', 'size', 'ratio', 'among', 'best', 'averagespe', 'web', 'brows', 'fast', 'phone', 'sometim', 'take', 'second', 'load', 'page', 'corpor', 'email', 'seem', 'like', 'long', 'time', 'stare', 'screen', 'seem', 'terribl', 'understand', 'newer', 'phone', 'like', 'wish', 'would', 'take', 'page', 'blackberri', 'get', 'clueintern', 'memori', 'i', 'download', 'app', 'seem', 'enough', 'memori', 'phone', 'instal', 'updat', 'second', 'day', 'run', 'gingerbread', 'came', 'sort', 'preload', 'softwar', 'not', 'want', 'sinc', 'seem', 'plenti', 'memori', 'left', 'phone', 'i', 'not', 'worri', 'download', 'stuff', 'tweak', 'set', 'get', 'want', 'not', 'alway', 'compli', 'i', 'usual', 'quit', 'technic', 'adept', 'set', 'thing', 'receiv', 'push', 'email', 'reason', 'not', 'download', 'new', 'email', 'gmail', 'set', 'mess', 'not', 'like', 'blackberri', 'everyth', 'work', 'think', 'android', 'not', 'particular', 'phone', 'not', 'come', 'memori', 'card', 'alot', 'intern', 'memori', 'came', 'usb', 'cabl', 'nice', 'small', 'wall', 'charger', 'sim', 'took', 'amazon', 'busi', 'day', 'get', 'thing', 'warehous', 'kept', 'state', 'status', 'ship', 'soon', 'ship', 'arriv', 'less', 'edit', 'add', 'use', 'prepaid', 'phone', 'regular', 'post', 'paid', 'tmobil', 'plan', 'work', 'fine', 'put', 'sim', 'card', 'call', 'tmob', 'ask', 'chang', 'plan', 'blackberri', 'regular', 'data', 'cost', 'differ', 'plan', 'work', 'least', 'expens', 'option', 'tmob', 'want', 'buy', 'phone', 'outright', 'amazon', 'phone', 'littl', 'week', 'batteri', 'life', 'much', 'better', 'physic', 'turn', 'devic', 'time', 'done', 'use', 'press', 'button', 'upper', 'right', 'side', 'not', 'use', 'blackberri', 'either', 'turn', 'somehow', 'not', 'use', 'much', 'power', 'physic', 'turn', 'get', 'day', 'batteri', 'part', 'save', 'batteri', 'life', 'set', 'display', 'bright', 'screen', 'time', 'min', 'touch', 'key', 'light', 'second', 'bright', 'suffici', 'insid', 'not', 'see', 'screen', 'outsid', 'find', 'app', 'adjust', 'bright', 'outsid', 'also', 'particular', 'android', 'model', 'led', 'light', 'phone', 'lack', 'visual', 'notif', 'new', 'email', 'voic', 'mail', 'ie', 'like', 'bb', 'blink', 'light', 'solv', 'download', 'app', 'call', 'nole', 'terrif', 'even', 'show', 'time', 'screen', 'i', 'get', 'use', 'size', 'phone', 'not', 'much', 'problem', 'anticip', 'still', 'larger', 'bb', 'pearl', 'issu', 'android', 'issu', 'i', 'get', 'use', 'solv', 'gmail', 'problem', 'solv', 'free', 'app', 'call', 'sms', 'unread', 'download', 'configur', 'show', 'number', 'unread', 'email', 'gmail', 'five', 'month', 'mark', 'i', 'reason', 'satisfi', 'phone', 'biggest', 'complaint', 'phone', 'ridicul', 'terribl', 'batteri', 'life', 'think', 'shortcom', 'phone', 'ie', 'android', 'iphon', 'not', 'specif', 'phone', 'colleagu', 'went', 'blackberri', 'iphon', 'problem', 'result', 'poor', 'batteri', 'life', 'screen', 'set', 'absolut', 'lowest', 'bright', 'not', 'see', 'anyth', 'phone', 'car', 'outsid', 'anyth', 'subject', 'natur', 'light', 'second', 'worst', 'thing', 'phone', 'probabl', 'use', 'less', 'minut', 'day', 'cell', 'check', 'occasion', 'batteri', 'realli', 'last', 'longer', 'allow', 'brighter', 'screen', 'set', 'seen', 'car', 'third', 'list', 'gripe', 'not', 'fast', 'friend', 'not', 'phone', 'either', 'i', 'keep', 'save', 'wait', 'second', 'phone', 'respond', 'certain', 'command', 'i', 'told', 'memori', 'fill', 'i', 'would', 'like', 'way', 'get', 'rid', 'preload', 'program', 'use', 'root', 'root', 'procedur', 'model', 'suppos', 'break', 'abil', 'call', 'i', 'not', 'interest', 'ok', 'side', 'pictur', 'qualiti', 'better', 'bb', 'not', 'stellar', 'not', 'bad', 'enough', 'chang', 'phone', 'seem', 'late', 'develop', 'problem', 'connect', 'via', 'usb', 'comput', 'download', 'pic', 'might', 'android', 'not', 'model', 'phone', 'i', 'also', 'issu', 'tri', 'dial', 'number', 'immedi', 'disconnect', 'pull', 'batteri', 'let', 'restart', 'everyth', 'work', 'fine', 'not', 'know', 'caus', 'phone', 'os', 'plus', 'side', 'i', 'drop', 'numer', 'time', 'screen', 'not', 'crack', 'like', 'iphon', 'find', 'one', 'major', 'advantag', 'advantag', 'love', 'tmo', 'wifi', 'call', 'long', 'wifi', 'connect', 'cell', 'part', 'phone', 'make', 'receiv', 'call', 'regardless', 'strength', 'cell', 'coverag', 'third', 'advantag', 'silver', 'line', 'cloud', 'even', 'though', 'not', 'hard', 'keyboard', 'miss', 'come', 'preload', 'swype', 'enter', 'work', 'pretti', 'well', 'make', 'enter', 'text', 'bearabl', 'appar', 'featur', 'like', 'not', 'come', 'preload', 'iphon', 'iphon', 'user', 'marvel', 'featur', 'issu', 'sound', 'qualiti', 'cell', 'regular', 'speaker', 'phone', 'internet', 'connect', 'seem', 'work', 'nice', 'clip', 'web', 'page', 'display', 'crispli', 'screen', 'resolut', 'i', 'pleas', 'phone', 'pleas', 'price'], ['purchas', 'phone', 'goddaught', 'replac', 'exist', 'prepaid', 'mobil', 'servic', 'take', 'sim', 'card', 'old', 'new', 'phone', 'continu', 'servic', 'prepaid', 'mobil', 'updat', 'phone', 'thank'], ['not', 'star', 'phone', 'compar', 'phone', 'star', 'phone', 'base', 'combin', 'price', 'featur', 'phone', 'amazon', 'price', 'may', 'great', 'buy', 'featur', 'bought', 'year', 'old', 'upgrad', 'love', 'load', 'bunch', 'game', 'not', 'troubl', 'suggest', 'retail', 'exhibit', 'ii', 'price', 'actual', 'poor', 'valu', 'consid', 'samsung', 'gnex', 'go', 'amazon', 'price', 'prism', 'exhibit', 'ii', 'far', 'better', 'edit', 'samsung', 'android', 'updat', 'phone', 'rebrand', 'phone', 'galaxi', 'exhibit', 'mayb', 'not', 'look', 'updat', 'near', 'year', 'phone', 'still', 'work', 'fine', 'occasion', 'mayb', 'twice', 'month', 'experi', 'homescreen', 'icon', 'vanish', 'lockup', 'crash', 'i', 'awar', 'fix', 'reboot', 'galaxi', 'nexus', 'gnex', 'mention', 'paragraph', 'longer', 'avail', 'replac', 'top', 'line', 'nexus', 'edit', 'still', 'oper', 'fine', 'notat', 'jan', 'i', 'deduct', 'star', 'valu', 'phone', 'gone', 'age', 'price', 'remain', 'pretti', 'stabl', 'dual', 'core', 'lg', 'optimus', 'avail', 'better', 'spec', 'near', 'price', 'not', 'would', 'certain', 'buy', 'galaxi', 'exhibit', 'market', 'phone'], ['charg', 'not', 'abl', 'add', 'storag', 'well', 'easier', 'use', 'load', 'file', 'appl', 'ipod'], ['bought', 'phone', 'son', 'compromis', 'iphon', 'love', 'person', 'not', 'phone', 'savvi', 'say', 'mani', 'featur', 'iphon'], ['everyth', 'need', 'volum', 'could', 'louder', 'great', 'phone', 'wise', 'buy', 'one', 'ok'], ['pros', 'cheaper', 'qualiti', 'not', 'spectacular', 'usual', 'good', 'contract', 'unlimit', 'voic', 'text', 'data', 'prepaid', 'sluggish', 'keyboard', 'respons', 'especi', 'facebook', 'text', 'messag', 'often', 'tap', 'button', 'text', 'window', 'sever', 'time', 'slow', 'internet', 'unless', 'area', 'strong', 'signal', 'even', 'connect', 'often', 'wait', 'second', 'give', 'lost', 'connect', 'messag', 'ipod', 'touch', 'right', 'next', 'quick', 'load', 'preload', 'twenti', 'applic', 'not', 'want', 'never', 'use', 'not', 'uninstal', 'long', 'phone', 'go', 'keep', 'nag', 'updat', 'applic', 'not', 'want', 'first', 'regret', 'buy', 'phone', 'disadvantag', 'far', 'outweigh', 'advantag', 'wait', 'iphon', 'come', 'bite', 'bullet', 'spend', 'extra', 'money', 'get', 'rid', 'thing', 'ebay', 'whatev', 'phone', 'almost', 'two', 'month', 'continu', 'phone', 'reboot', 'screen', 'often', 'lock', 'forc', 'user', 'slow', 'internet', 'facebook', 'screen', 'stuck', 'load', 'icon', 'minut', 'forev', 'occur', 'even', 'good', 'worst', 'fail', 'text', 'messag', 'googl', 'tmobil', 'text', 'fail', 'see', 'problem', 'peopl', 'phone', 'tri', 'send', 'text', 'messag', 'come', 'back', 'fail', 'error', 'messag', 'sometim', 'may', 'work', 'sever', 'retri', 'time', 'never', 'send', 'wors', 'sometim', 'send', 'give', 'fail', 'messag', 'anyway', 'keep', 'tri', 'send', 'person', 'receiv', 'multipl', 'two', 'star', 'one', 'star', 'wish', 'could', 'return', 'thing', 'i', 'afraid', 'late', 'unlik', 'ever', 'buy', 'anoth', 'android', 'samsung', 'phone', 'bad', 'experi'], ['great'], ['first', 'smart', 'phone', 'still', 'dumb', 'oper', 'learn', 'ok'], ['great', 'product', 'price'], ['excel', 'product', 'wife', 'need', 'new', 'phone', 'sinc', 'alreadi', 'pay', 'go', 'plan', 'mobil', 'decid', 'give', 'nice', 'gift', 'last', 'mother', 'day', 'bought', 'phone', 'happi', 'still', 'learn', 'use', 'great', 'i', 'use', 'coupl', 'time', 'set', 'easi', 'android', 'od', 'great', 'touch', 'screen', 'respons', 'connect', 'network', 'without', 'problem', 'surf', 'breez', 'phone', 'far', 'like', 'lot', 'ask', 'data', 'plan', 'well', 'think', 'fault'], ['phone', 'absolut', 'awesom', 'price', 'good', 'spec', 'everyth', 'great', 'although', 'camera', 'mp', 'qualiti', 'actual', 'nice', 'indoor', 'reccomend', 'get', 'phone', 'budget', 'lightweight', 'not', 'small', 'reason', 'star', 'not', 'phone', 'lag', 'time', 'becom', 'total', 'unrespons', 'like', 'min', 'happen', 'alot', 'app', 'open', 'time', 'not', 'bad', 'canada', 'phone', 'work', 'wind', 'mobil', 'videotron'], ['realli', 'like', 'product', 'price', 'amazon', 'much', 'chpear', 'store', 'perfect', 'price', 'excel', 'item', 'reciev', 'packag', 'today', 'excit', 'satisfiedi'], ['featur', 'phone', 'meet', 'need', 'speed', 'make', 'receiv', 'email', 'effortless', 'web', 'brows', 'snap', 'cours', 'receiv', 'clear', 'voic', 'call', 'phone', 'excel', 'choic', 'anyon', 'consid', 'smart', 'phone'], ['phone', 'littl', 'month', 'far', 'phone', 'work', 'okay', 'sometim', 'freez', 'certain', 'app', 'time', 'shut', 'reason', 'think', 'problem', 'anyth', 'els', 'phone', 'function', 'correct', 'great', 'phone', 'bought', 'phone', 'pay', 'go', 'stuck', 'sim', 'card', 'random', 'bug', 'app', 'better', 'tmobil', 'phone', 'past', 'anoth', 'bug', 'would', 'get', 'certain', 'notif', 'would', 'start', 'vibrat', 'not', 'stop'], ['inexpens', 'nice', 'look', 'larg', 'screen', 'well', 'good', 'not', 'mind', 'phone', 'constant', 'lag', 'constant', 'freez', 'phone', 'person', 'frustrat', 'sorri', 'purchas', 'phone', 'sometim', 'two', 'three', 'time', 'day', 'freez', 'take', 'batteri', 'put', 'back', 'not', 'idea', 'qualiti', 'product', 'i', 'readi', 'iphon'], ['first', 'own', 'iphon', 'sinc', 'first', 'generat', 'use', 'not', 'justifi', 'pay', 'per', 'month', 'chain', 'contract', 'anymor', 'decid', 'research', 'far', 'find', 'tmobil', 'decent', 'qualiti', 'far', 'cellular', 'coverag', 'not', 'verizon', 'att', 'sprint', 'hey', 'best', 'prepaid', 'plan', 'far', 'look', 'reason', 'chose', 'phone', 'gave', 'app', 'iphon', 'although', 'android', 'platform', 'not', 'beat', 'month', 'unlimit', 'text', 'web', 'minut', 'enough', 'contract', 'phone', 'lightweight', 'somewhat', 'cheaper', 'qualiti', 'iphon', 'not', 'iphon', 'function', 'batteri', 'drain', 'bit', 'faster', 'get', 'juic', 'defend', 'save', 'not', 'like', 'bloatwar', 'saw', 'review', 'root', 'remov', 'unwant', 'app', 'nice', 'instruct', 'follow', 'correct', 'without', 'brick', 'huge', 'web', 'browser', 'find', 'much', 'faster', 'latest', 'iphon', 'someday', 'i', 'return', 'belov', 'iphon', 'price', 'come', 'att', 'stop', 'throttl', 'data', 'phone', 'work', 'great', 'i', 'buyer', 'remors', 'complaint', 'servic', 'tmobil', 'offer', 'farp', 'got', 'love', 'amazon', 'free', 'day', 'ship', 'easi', 'onlin', 'also', 'call', 'tmobil'], ['exhibit', 'ask', 'price', 'phone', 'realli', 'fast', 'ghz', 'processor', 'root', 'though', 'screen', 'clear', 'bright', 'even', 'mid', 'day', 'email', 'messag', 'work', 'nice', 'push', 'notif', 'gmail', 'app', 'camera', 'ok', 'front', 'back', 'camera', 'work', 'fluid', 'skype', 'chat', 'music', 'clear', 'surround', 'sound', 'headphon', 'touch', 'screen', 'recept', 'although', 'time', 'feel', 'not', 'smooth', 'surfac', 'use', 'swype', 'effect', 'trick', 'not', 'actual', 'clean', 'screen', 'often', 'brows', 'good', 'wifi', 'gps', 'work', 'great', 'connect', 'n', 'speed', 'router', 'thing', 'gps', 'not', 'need', 'data', 'plan', 'gps', 'work', 'pre', 'catch', 'use', 'googl', 'map', 'certain', 'area', 'mile', 'radius', 'use', 'gps', 'navig', 'without', 'data', 'plan', 'work', 'also', 'use', 'health', 'fit', 'app', 'although', 'recommend', 'track', 'googl', 'record', 'track', 'come', 'back', 'home', 'overlay', 'map', 'share', 'gps', 'not', 'requir', 'data', 'everyon', 'els', 'mention', 'avail', 'ram', 'mb', 'not', 'entir', 'mb', 'not', 'root', 'phone', 'bunch', 'app', 'eat', 'ram', 'usual', 'hover', 'around', 'mb', 'root', 'realli', 'feel', 'speed', 'phone', 'ram', 'hover', 'mb', 'ofcours', 'depend', 'upon', 'program', 'run'], ['everyth', 'exceed', 'expect', 'except', 'main', 'reason', 'get', 'phone', 'fetch', 'email', 'everi', 'minut', 'wow', 'howev', 'seem', 'wait', 'minut', 'sinc', 'refresh', 'page', 'seem', 'noth', 'sometim', 'send', 'email', 'time', 'set', 'school', 'email', 'default', 'tri', 'mani', 'procedur', 'fail', 'got', 'random', 'luck', 'method', 'not', 'sure', 'whether', 'alway', 'work', 'enter', 'gmail', 'data', 'use', 'link', 'laptop', 'default', 'outgo', 'account', 'gmail', 'school', 'mail', 'multipl', 'email', 'sent', 'addresseedit', 'problem', 'aris', 'email', 'applic', 'not', 'mobil', 'gmail', 'applic', 'not', 'bug', 'et', 'signatur', 'not', 'appear', 'gmail', 'app'], ['okay', 'order', 'phone', 'amazon', 'warehous', 'deal', 'chose', 'new', 'condit', 'higher', 'sell', 'price', 'expect', 'get', 'someth', 'descent', 'oh', 'boy', 'wrong', 'phone', 'not', 'new', 'describ', 'realli', 'piec', 'crap', 'call', 'amazon', 'custom', 'servic', 'spoke', 'custom', 'servic', 'rep', 'tell', 'disappoint', 'feel', 'overal', 'dissatisfact', 'phone', 'not', 'care', 'much', 'concern', 'call', 'saturday', 'got', 'rep', 'philippin', 'could', 'india', 'abl', 'listen', 'offer', 'small', 'discount', 'credit', 'phone', 'hey', 'everi', 'littl', 'bit', 'help', 'part', 'alway', 'prefer', 'talk', 'rep', 'philippin', 'instead', 'good', 'old', 'usa', 'alway', 'best', 'listen', 'unrespons', 'touch', 'screen', 'unrespons', 'touch', 'screen', 'keyboard', 'turn', 'self', 'absolut', 'worst', 'batteri', 'life', 'ever', 'poor', 'qualiti', 'poor', 'made', 'sad', 'save', 'everi', 'littl', 'penni', 'buy', 'phone', 'someon', 'apart', 'complex', 'live', 'stole', 'break', 'heart', 'soo', 'financi', 'strap', 'got', 'phone', 'case', 'emerg', 'school', 'daycar', 'well', 'gone', 'pray', 'god', 'karma', 'come', 'back', 'around', 'individu'], ['i', 'never', 'like', 'cell', 'phone', 'avoid', 'get', 'one', 'longest', 'time', 'final', 'job', 'requir', 'call', 'first', 'phone', 'basic', 'tracfon', 'use', 'two', 'differ', 'platinum', 'tel', 'phone', 'includ', 'touchscreen', 'recent', 'use', 'android', 'phone', 'chinavas', 'function', 'fine', 'mere', 'practic', 'devic', 'becom', 'user', 'previous', 'phone', 'began', 'search', 'someth', 'better', 'could', 'use', 'sim', 'card', 'happili', 'high', 'review', 'led', 'samsung', 'exhibit', 'phone', 'i', 'final', 'see', 'smartphon', 'user', 'long', 'known', 'use', 'great', 'phone', 'fun', 'search', 'thousand', 'applic', 'seamless', 'check', 'email', 'messag', 'simpli', 'tinker', 'wallpap', 'background', 'i', 'hook', 'overal', 'fast', 'slick', 'feel', 'good', 'hand', 'i', 'glad', 'made', 'plung'], ['phone', 'less', 'year', 'whole', 'time', 'dealt', 'freez', 'not', 'suppos', 'constant', 'take', 'batteri', 'work', 'halfway', 'not', 'buy'], ['realli', 'like', 'phone', 'easi', 'handl', 'learn', 'gadget', 'love', 'recommend', 'other'], ['gift', 'sister', 'nice', 'littl', 'phone'], ['better', 'expect', 'like', 'new', 'cover', 'need', 'cellphon', 'simpli', 'excel', 'product'], ['dad', 'still', 'use', 'cell', 'phone', 'howev', 'speaker', 'bit', 'worn', 'sometim', 'bare', 'hear', 'peoplein', 'line', 'overal', 'good', 'phone'], ['teenag', 'daughter', 'receiv', 'phone', 'birthday', 'march', 'recent', 'lost', 'exact', 'phone', 'good', 'origin', 'purchas', 'good', 'phone', 'everyth', 'smartphon'], ['good'], ['exel', 'work', 'soo', 'fast', 'movistar', 'venezuela'], ['nice'], ['bought', 'someon', 'far', 'time', 'great'], ['absolut', 'love', 'phone', 'i', 'problem', 'sinc', 'purchas', 'month', 'ago', 'realli', 'beauti', 'made', 'phone', 'bought', 'gold', 'version', 'still', 'love', 'speed', 'phone', 'unmatch', 'numer', 'android', 'high', 'recommend'], ['nice', 'phone'], ['korean', 'model', 'light', 'blue', 'love'], ['power', 'broke', 'second', 'day', 'use', 'return'], ['upgrad', 'nexus', 'switch', 'back', 'use', 'iphon', 'screen', 'qualiti', 'iphon', 'readabl', 'bright', 'sunlight', 'crisp', 'call', 'qualiti', 'superb', 'chang', 'nexus', 'speaker', 'damag', 'sinc', 'fix', 'broken', 'screen', 'decid', 'not', 'fix', 'speaker', 'instead', 'upgrad', 'build', 'qualiti', 'compar', 'iphon', 'surpris', 'light', 'nexus', 'simpli', 'beauti', 'life', 'great', 'i', 'gotten', 'reach', 'bear', 'mind', 'not', 'heaviest', 'user', 'would', 'say', 'better', 'nexus', 'iphon', 'use', 'even', 'less', 'earli', 'day', 'yet', 'far', 'camera', 'perfect', 'far', 'let', 'us', 'say', 'forgotten', 'iphon', 'camera', 'measur', 'smartphon', 'camera'], ['not', 'say', 'i', 'unhappi', 'phone', 'howev', 'unabl', 'get', 'custom', 'support', 'samsung', 'intern', 'version', 'origin', 'latin', 'open', 'group', 'wireless', 'receiv', 'feel', 'decept', 'find', 'not', 'warranti', 'disturb', 'would', 'not', 'purchas', 'peopl', 'not', 'even', 'contact', 'mani', 'thing', 'not', 'work', 'phone', 'call', 'wait', 'not', 'work', 'option', 'confer', 'call', 'not', 'even', 'regist', 'samsung', 'intern', 'phone', 'not', 'get', 'custom', 'support', 'period', 'i', 'studk', 'hate'], ['excel'], ['bought', 'friend'], ['amaz', 'devic', 'everyth', 'work', 'perfect', 'amaz', 'camera', 'howev', 'batteri', 'run', 'realli', 'fast', 'use', 'recharg', 'twice', 'day', 'realiz', 'batteri', 'lifetim', 'huge', 'problem', 'type', 'devic', 'nowaday', 'regardless', 'brand', 'satisfi', 'galaxi'], ['perfect'], ['arriv', 'quick', 'work', 'fine'], ['phone', 'came', 'white', 'block'], ['beauti', 'performanceth', 'problem', 'devic', 'batteri', 'life', 'wise', 'satisfi'], ['color', 'beauti', 'design', 'dual', 'card', 'intern', 'version'], ['excel', 'cell', 'phone', 'high', 'recommend'], ['great', 'phone', 'excel', 'valu', 'money'], ['love', 'phone', 'work', 'camera', 'work', 'perfect', 'venezuela'], ['great'], ['bought', 'friend', 'actual', 'good', 'far', 'love', 'upgrad', 'cool', 'pic', 'take'], ['excel'], ['excel', 'packag', 'arriv', 'time'], ['phone', 'not', 'work', 'kept', 'shout'], ['super', 'comfort', 'lot', 'pad', 'ayye'], ['excel'], ['nice'], ['excelent'], ['yes', 'one', 'year', 'still', 'love', 'unfortun', 'mother', 'board', 'dead', 'phone', 'useless', 'inform', 'store', 'lost'], ['bit', 'skeptic', 'purchas', 'phone', 'i', 'satisfi', 'genuin', 'phone', 'come', 'accessori', 'perform', 'perfect', 'far', 'not', 'complain', 'anyth', 'thank', 'wireless', 'place', 'excel', 'servic'], ['excelent'], ['christma', 'gifi', 'someon', 'els', 'complaint', 'heard', 'far'], ['recomend'], ['excel', 'product'], ['fast', 'ship', 'beauti', 'cellphon'], ['live', 'oversea', 'want', 'phone', 'could', 'use', 'fantast', 'camera', 'purchas', 'serv', 'purpos', 'bought', 'turquois', 'dollar', 'cheaper', 'figur', 'would', 'cover', 'case', 'not', 'quit', 'true', 'color', 'case', 'bought', 'clash', 'turquois', 'show', 'along', 'top'], ['order'], ['thank', 'excel'], ['bought', 'husband', 'birthday', 'love'], ['excel', 'phone', 'love'], ['awesom', 'phone'], ['excel'], ['bought', 'phone', 'decemb', 'absolut', 'love', 'begin', 'week', 'problem', 'left', 'side', 'screen', 'alway', 'push', 'slight', 'harder', 'side', 'type', 'eventu', 'went', 'away', 'phone', 'exact', 'month', 'sudden', 'not', 'recogn', 'fingerprint', 'back', 'password', 'not', 'use'], ['excel'], ['phone', 'amaz', 'get', 'use', 'size', 'unit', 'batteri', 'great', 'not', 'even', 'think', 'last', 'day', 'enough', 'everyth', 'worri', 'memori', 'go', 'issu', 'expand', 'slot', 'total', 'fine', 'model', 'less', 'camera', 'fantast'], ['idea', 'samsung', 'work', 'problem', 'two', 'work', 'perfect', 'batteri', 'last', 'lot', 'longer', 'previous', 'would', 'say', 'bit', 'big', 'also', 'issu', 'get', 'use', 'today', 'see', 'almost', 'everybodi', 'size', 'mobil', 'phone', 'plus', 'samsung', 'smart', 'tv', 'link', 'devic', 'amaz', 'happi', 'seller', 'also', 'profession'], ['fine'], ['work', 'perfect', 'countri'], ['excel'], ['like', 'gripspeedcamerafeaturesoveral', 'good', 'phone', 'even', 'better', 'iphon', 'recommend'], ['phone', 'meet', 'expect', 'enjoy', 'well', 'dual', 'sim', 'fabul', 'sinc', 'juggl', 'phone', 'size', 'n', 'weight', 'pefect', 'screen', 'size', 'work', 'well', 'sinc', 'colleg', 'n', 'easier', 'view', 'n', 'brows', 'featur', 'almost', 'n', 'bff', 'note', 'r', 'person', 'go', 'walk', 'charger', 'batteri', 'die', 'realli', 'thou', 'buy', 'buy', 'buy'], ['screen', 'bigger', 'wife', 'galaxi'], ['great', 'phone'], ['good'], ['return', 'fix', 'current', 'phone'], ['best', 'upgrad', 'speed', 'sharp', 'pictur', 'light', 'weight'], ['phone', 'work', 'good', 'issu', 'complaint', 'far'], ['good', 'phone'], ['love', 'phone', 'love', 'everyth', 'third', 'day', 'i', 'still', 'happi'], ['good'], ['receiv', 'phone', 'set', 'quick', 'work', 'flawless', 'far', 'great', 'deal', 'week', 'heavi', 'usag', 'phone', 'batteri', 'life', 'realli', 'great', 'far', 'not', 'miss', 'beat', 'buy', 'one', 'son', 'need', 'reliabl'], ['send', 'pictur', 'friend', 'not', 'send', 'open', 'attach', 'msg', 'not', 'open'], ['realli', 'like', 'timeli', 'store'], ['phone', 'amaz', 'mom', 'camera', 'number', 'one', 'phone', 'camera', 'outstand', 'call', 'qualiti', 'wonder', 'text', 'well', 'got', 'phone', 'got', 'rid', 'iphon', 'never', 'go', 'back', 'arriv', 'earlier', 'actual', 'deliveri', 'date', 'love'], ['team', 'present', 'sever', 'detail', 'tast', 'scratch'], ['awesom', 'phone', 'complet'], ['phone', 'made', 'differ', 'countri'], ['i', 'phone', 'realli', 'like', 'size', 'perfect', 'love', 'extra', 'chip', 'slot', 'go', 'home', 'island', 'i', 'phone', 'unlock', 'durabl', 'i', 'horribl', 'use', 'drop', 'time', 'final', 'got', 'case', 'weird', 'littl', 'glitch', 'though', 'everi', 'blue', 'moon', 'shut', 'remov', 'batteri', 'unfreez', 'guess', 'expect', 'technolog'], ['phone', 'moth', 'alreadi', 'malfunct', 'went', 'look', 'warranti', 'inform', 'amazon', 'day', 'return', 'polici', 'cours', 'exceed', 'compani', 'sold', 'phone', 'offer', 'day', 'polici', 'manufacutr', 'warranti', 'say', 'buyer', 'bewar'], ['i', 'happi', 'cell'], ['i', 'not', 'heavi', 'user', 'phone', 'absolut', 'slowli', 'could', 'use', 'addit', 'app', 'gig', 'ram', 'not', 'enough', 'moth', 'got', 'new', 'one', 'gave', 'wife', 'saw', 'back', 'next', 'day', 'upset', 'not', 'want', 'speak', 'anymor', 'good'], ['phone', 'work', 'good', 'issu', 'complaint', 'far'], ['far', 'good', 'product', 'describ'], ['not', 'us', 'compat', 'phone', 'work', 'us', 'carrier', 'phone', 'product', 'not', 'compat', 'samsung', 'devic', 'purchas', 'samsung', 'gear', 'accord', 'samsung', 'intern', 'phone', 'not', 'compat', 'not', 'support', 'samsung', 'us', 'go', 'return', 'find', 'replac'], ['excel', 'love'], ['better', 'expect'], ['unsur', 'type', 'phone', 'would', 'feel', 'need', 'actual', 'way', 'expect', 'fast', 'screen', 'qualiti', 'lightn', 'incred', 'high', 'feel', 'like', 'watch', 'hdtv', 'amaz', 'everyth', 'game', 'watch', 'netflix', 'brows', 'perfect'], ['problem', 'love'], ['exact', 'need', 'good', 'product'], ['one', 'best', 'phone', 'ever'], ['good', 'cell', 'phone', 'everyth', 'good', 'look', 'like', 'pictur', 'work', 'perfect'], ['item', 'good', 'phone', 'featur', 'camera', 'excel', 'qualiti', 'pictur', 'improv'], ['phone', 'amaz', 'mom', 'camera', 'number', 'one', 'phone', 'camera', 'outstand', 'call', 'qualiti', 'wonder', 'text', 'well', 'got', 'phone', 'got', 'rid', 'iphon', 'never', 'go', 'back', 'arriv', 'earlier', 'actual', 'deliveri', 'date', 'love'], ['fast', 'take', 'great', 'pictur', 'far', 'work', 'great', 'husband', 'like', 'phone'], ['disappoint', 'product', 'not', 'return', 'actor', 'must', 'access', 'phone', 'send', 'back', 'would', 'major', 'inconveni', 'without', 'phone', 'find', 'anoth', 'one', 'decid', 'take', 'loss', 'make', 'best', 'not', 'good', 'situat', 'list', 'issu', 'i', 'galaxi', 'grand', 'video', 'not', 'play', 'social', 'media', 'hear', 'volum', 'phone', 'time', 'press', 'text', 'key', 'phone', 'freez', 'keep', 'press', 'key', 'enter', 'phone', 'goe', 'think', 'relat', 'video', 'social', 'media', 'not', 'play', 'i', 'not', 'abl', 'add', 'save', 'multipl', 'phone', 'number', 'text', 'messag', 'reluct', 'purchas', 'electron'], ['item', 'defect', 'place', 'call', 'person', 'end', 'not', 'hear', 'speak', 'think', 'may', 'phone', 'return', 'item'], ['phone', 'stop', 'work', 'spend', 'new', 'batteri', 'batteri', 'not', 'work', 'shame', 'previous', 'review', 'devic', 'work', 'great', 'use', 'lot', 'app', 'usual', 'demand', 'higher', 'ram', 'not', 'kind', 'phone', 'would', 'like', 'buy'], ['excel', 'condit', 'phone', 'came', 'advertis', 'good', 'buy', 'worth', 'money', 'far', 'good'], ['gift', 'somebodi', 'not', 'review', 'person', 'receiv', 'work', 'perfect'], ['good', 'phone'], ['great'], ['great', 'phone', 'price', 'make', 'sure', 'call', 'servic', 'provid', 'get', 'activ', 'would', 'save', 'hour', 'confus', 'wa', 'manual'], ['work', 'fine', 'time', 'freez', 'app', 'becom', 'non', 'respons', 'reset', 'phone', 'work', 'fine'], ['one', 'pathet', 'phone', 'ever', 'bought', 'samsung', 'user', 'life', 'buy', 'phone', 'realiz', 'samsung', 'not', 'use', 'model', 'extrem', 'slow', 'processor', 'constant', 'hang', 'slow', 'not', 'use', 'googl', 'map', 'real', 'time', 'never', 'purchas', 'anyon'], ['great', 'custom', 'servic', 'phone', 'nice'], ['far', 'good', 'came', 'intern', 'charger', 'addit', 'usa', 'adapt', 'provid', 'cool', 'sinc', 'travel', 'korea', 'anyway', 'transfer', 'sim', 'card', 'everyth', 'work', 'screen', 'clear', 'nice', 'thank'], ['great', 'phone', 'exceed', 'expect'], ['one', 'giant', 'leap', 'backward', 'samsung', 'galaxi', 'screen', 'color', 'profil', 'longer', 'allow', 'adjust', 'screen', 'contrast', 'color', 'samsung', 'longer', 'provid', 'option', 'select', 'differ', 'screen', 'color', 'option', 'default', 'set', 'midway', 'color', 'result', 'everyth', 'view', 'screen', 'whether', 'photo', 'movi', 'icon', 'screensav', 'everyth', 'els', 'pale', 'lacklustr', 'samsung', 'galaxi', 'final', 'die', 'would', 'smoke', 'sad', 'excus', 'phone', 'like', 'step', 'year', 'back', 'time', 'first', 'start', 'come', 'smartphon', 'color', 'major', 'problem', 'main', 'ear', 'speaker', 'well', 'extern', 'speaker', 'low', 'volum', 'realli', 'struggl', 'hear', 'caller', 'end', 'problem', 'also', 'exist', 'youtub', 'video', 'store', 'music', 'perform', 'touch', 'screen', 'sensit', 'also', 'lost', 'edg', 'use', 'almost', 'ident', 'screen', 'keyboard', 'samsung', 'keyboard', 'insensit', 'mani', 'time', 'skip', 'letter', 'type', 'screen', 'result', 'look', 'back', 'type', 'paragraph', 'fill', 'typo', 'not', 'samsung', 'last', 'samsung', 'pretti', 'good', 'phone', 'one', 'take', 'new', 'samsung', 'perform', 'i', 'hang', 'samsung', 'would', 'never', 'never', 'never', 'recommend', 'someth', 'lousi', 'qualiti', 'samsung', 'peddl', 'cheap', 'junk', 'former', 'faith', 'consum'], ['not', 'good', 'not', 'buy'], ['love', 'phone', 'month', 'zero', 'issu', 'fast', 'great', 'camera', 'also', 'like', 'big', 'screen', 'slim', 'phone'], ['great', 'phone', 'sold', 'decept', 'time', 'explain', 'lack', 'warranti', 'sale'], ['smart', 'phone', 'far', 'unreli', 'difficult', 'phone', 'ever', 'own', 'freez', 'time', 'phone', 'slow', 'start', 'put', 'sd', 'card', 'hope', 'would', 'help', 'got', 'worst', 'restart', 'phone', 'time', 'order', 'get', 'freez', 'featur', 'not', 'like', 'fact', 'want', 'text', 'two', 'differ', 'languag', 'want', 'main', 'screen', 'app', 'display', 'english', 'luck', 'ad', 'second', 'languag', 'everyth', 'phone', 'chang', 'set', 'advis', 'buy', 'anoth', 'phone', 'phone', 'big', 'headach', 'not', 'worth', 'even', 'price', 'paid', 'sorri', 'say'], ['first', 'time', 'use', 'straight', 'talk', 'seem', 'good', 'phone', 'far', 'idea', 'use', 'dual', 'sim', 'part', 'phone'], ['perfect'], ['great', 'phone', 'great', 'price'], ['hate', 'stuff', 'phone'], ['got', 'friend', 'happi'], ['work', 'perfect'], ['use', 'wall', 'plug', 'old', 'samsung', 'adapt', 'come', 'not', 'import', 'great', 'seller', 'fast', 'respect', 'answer', 'question', 'great', 'camera', 'great', 'game', 'big', 'screen', 'learn', 'use', 'phone', 'old', 'age', 'realli', 'easi', 'read', 'made', 'mistak', 'order', 'mini', 'phone', 'one', 'use', 'work', 'one', 'play', 'game', 'watch', 'movi', 'use', 'flash', 'light', 'camera', 'yes', 'built', 'flash', 'light'], ['realli', 'good', 'phone', 'money'], ['worst', 'phone', 'ever', 'own', 'far', 'comput', 'power', 'flip', 'phone', 'not', 'expect', 'run', 'one', 'app', 'phone', 'not', 'handl', 'phone', 'slow', 'freez', 'far', 'often', 'brand', 'new', 'phone', 'spend', 'extra', 'money', 'get', 'real', 'phone'], ['well', 'live', 'haiti', 'dosent', 'work'], ['work', 'good'], ['product', 'not', 'work', 'well', 'not', 'wast', 'money'], ['nice', 'phone', 'littl', 'slow', 'sometim', 'good', 'phone', 'prize'], ['fast', 'deliveri', 'work', 'good', 'excel', 'price'], ['excel', 'phone', 'price', 'bought', 'unemploy', 'old', 'phone', 'stop', 'work', 'not', 'will', 'pay', 'phone', 'hunt', 'cheap', 'good', 'phone', 'phone', 'exceed', 'expect', 'app', 'work', 'great', 'sound', 'qualiti', 'awesom', 'wonder', 'last', 'not', 'least', 'batteri', 'life', 'long', 'not', 'afford', 'samsung', 'galaxi', 'iphon', 'like', 'phone', 'nice', 'altern', 'would', 'recommend', 'anyon'], ['mother', 'not', 'stay', 'devic', 'great', 'phone'], ['item', 'look', 'say', 'phone'], ['good', 'phone', 'price'], ['phone', 'work', 'perfect', 'exel', 'choic'], ['phone', 'seem', 'great', 'not', 'get', 'pic', 'camera', 'color', 'come', 'right', 'look', 'neg', 'sent', 'new', 'one'], ['work', 'like', 'samsung'], ['year', 'still', 'love', 'phone'], ['not', 'even', 'need', 'open', 'use', 'phone', 'phone', 'advertis', 'unlock', 'intern', 'version', 'clear', 'mark', 'american', 'sim', 'card', 'send', 'back', 'immedi'], ['awesom', 'phone'], ['excelent'], ['work', 'good', 'fast', 'gold', 'one', 'beauti', 'not', 'use', 'case', 'use', 'old', 'phone', 'sim', 'card', 'work', 'fine'], ['great', 'new', 'work', 'perfect', 'oversea', 'dual', 'sim', 'good', 'bought', 'one', 'wife', 'today'], ['bought', 'two', 'happi'], ['rate', 'phone', 'everyon', 'view', 'not', 'regret', 'today', 'great', 'deal', 'fast', 'deliveri', 'good', 'product', 'two', 'week', 'got', 'seen', 'live', 'caribbean'], ['da', 'f', 'boy', 'like', 'phone', 'real', 'boy', 'like', 'sim', 'f', 'f', 'f', 'polic'], ['daughter', 'not', 'stay'], ['phone', 'came', 'everyth', 'nice', 'slim', 'design'], ['love', 'phone', 'case'], ['excel'], ['hi', 'love'], ['great', 'deal', 'wife', 'love'], ['nice', 'phone'], ['bought', 'phone', 'christma', 'gift', 'year', 'old', 'son', 'purchas', 'prepaid', 'plan', 'famili', 'mobil', 'walmart', 'easi', 'set', 'account', 'good', 'qualiti', 'pictur', 'abl', 'use', 'text', 'talk', 'also', 'download', 'latest', 'app', 'great', 'phone', 'color', 'also', 'plus'], ['phone', 'sinc', 'march', 'amaz', 'phone', 'annoy', 'part', 'go', 'either', 'charger', 'bent', 'cord', 'hole', 'charg', 'phone', 'broken', 'struggl', 'realli', 'stay', 'charg', 'wonder', 'way', 'fulli', 'know', 'charger', 'not', 'work', 'phone', 'way', 'stuck', 'get', 'differ', 'phone', 'profession', 'see', 'problem', 'hope', 'least', 'charger', 'not', 'work', 'well', 'not', 'want', 'phone', 'self'], ['phone'], ['excel', 'condit'], ['love', 'phone', 'glad', 'order', 'pretti', 'despit', 'peopl', 'say', 'actual', 'pretti', 'nice', 'definit', 'worth', 'pay', 'display', 'color', 'crisp', 'clear', 'actual', 'decent', 'fast', 'run', 'pretti', 'smooth', 'far', 'everyth', 'seem', 'great', 'want', 'nice', 'phone', 'not', 'want', 'spend', 'fortun', 'i', 'would', 'say', 'someth', 'like', 'pretti', 'good', 'deal', 'lol', 'vietnam', 'though', 'first', 'power', 'everyth', 'vietnames', 'get', 'correct', 'languag', 'not', 'hard', 'figur', 'mine', 'readi', 'updat', 'kitkat', 'lollipop', 'min', 'set', 'everyth', 'great', 'phone'], ['good', 'phone'], ['everith', 'perfect', 'thing', 'need', 'reset', 'phone', 'set', 'wrong', 'error', 'need', 'pin', 'number', 'get', 'pin'], ['get', 'fault', 'not', 'read', 'fine', 'print', 'bare', 'work', 'wifi'], ['fine'], ['meet', 'requir', 'young', 'person'], ['job', 'describ', 'might', 'not', 'newest', 'model', 'use', 'fine'], ['product', 'complet', 'crap', 'past', 'multipl', 'problem', 'along', 'crqck', 'not', 'notic', 'today'], ['phone', 'overal', 'great', 'not', 'come', 'american', 'charger', 'earphon', 'one', 'earbud', 'longer'], ['nice', 'option', 'switch', 'sim', 'card'], ['receiv', 'phone', 'yesterday', 'i', 'alreadi', 'love', 'downfal', 'wifi', 'call', 'employ', 'would', 'dead', 'zone', 'actual', 'get', 'enough', 'signal', 'text', 'realli', 'not', 'care', 'wifi', 'call', 'featur', 'though', 'might', 'somewher', 'set', 'slow', 'self', 'jus', 'not', 'find', 'manual', 'came', 'phone', 'well', 'page', 'lmao', 'pictur', 'come', 'hella', 'nice', 'n', 'overal', 'awesom', 'phone', 'realli', 'nice', 'price'], ['nice', 'phone'], ['gave', 'phone', 'christma', 'present', 'daughter', 'three', 'day', 'ago', 'keyboard', 'lock', 'screen', 'disappear', 'tri', 'soft', 'reset', 'factor', 'reset', 'success', 'exact', 'day', 'past', 'window', 'return', 'feel', 'bit', 'disappoint'], ['keep', 'drop', 'call', 'ok', 'otherwis', 'i', 'not', 'not', 'sorri', 'purchas', 'samsung', 'galaxi', 'grand', 'prime'], ['fast', 'reliabl'], ['happi', 'birthday', 'love', 'phone', 'worth', 'everi', 'cent', 'week', 'not', 'go', 'wrong'], ['great', 'phone', 'easi', 'switch', 'one', 'app', 'anoth', 'like', 'way', 'close', 'use', 'app'], ['excelent', 'phone', 'price'], ['great', 'phone', 'far'], ['bought', 'phone', 'mother', 'love', 'everyth', 'need'], ['awesom', 'phone', 'absolut', 'love', 'easili', 'transfer', 'servic', 'crappi', 'carrier', 'boost', 'told', 'phone', 'not', 'compat', 'w', 'network', 'could', 'not', 'use', 'buy', 'sim', 'amazon', 'switch', 'keep', 'get', 'better', 'cheaper', 'plan', 'would', 'high', 'suggest', 'anyon', 'want', 'keep', 'plan', 'number', 'get', 'newer', 'galaxi', 'smartphon', 'great', 'price'], ['great', 'product'], ['excel', 'product', 'servic'], ['good'], ['great', 'phone', 'tmobil'], ['bought', 'doubl', 'sim', 'phone', 'camera', 'fine', 'network', 'recept', 'quit', 'good', 'compar', 'former', 'phone'], ['nice', 'phone'], ['although', 'unlock', 'not', 'work', 'tech', 'support', 'said', 'foreign', 'not', 'connect', 'network', 'check', 'sim', 'card', 'make', 'sure', 'not', 'problem'], ['rate', 'phone', 'everyon', 'view', 'not', 'regret', 'today', 'great', 'deal', 'fast', 'deliveri', 'good', 'product', 'two', 'week', 'got', 'seen', 'live', 'caribbean'], ['nice'], ['love', 'phone', 'purchas', 'husband', 'husband', 'also', 'love', 'phone', 'perfect', 'size', 'good', 'batteri', 'life'], ['great', 'smartphon', 'phone', 'like'], ['love', 'phone'], ['love', 'first', 'sight', 'eventhough', 'mine', 'uplift', 'supurb', 'smooth', 'ohh', 'miss', 'galaxyblu'], ['good', 'qualiti', 'product'], ['great', 'phone', 'got', 'real', 'quick'], ['bough', 'phone', 'daughter', 'christma', 'gift', 'last', 'two', 'week', 'return', 'wait', 'refund', 'month'], ['one', 'amaz', 'galaxi', 'phone', 'sleek', 'afford'], ['i', 'happi', 'phone'], ['good'], ['brother', 'enjoy', 'new', 'phone'], ['worth', 'money'], ['perfect', 'need', 'dual', 'sim', 'card', 'home', 'travel'], ['terribl', 'phone', 'basic', 'applic', 'sluggish', 'freez', 'camera', 'qualiti', 'aw', 'pictur', 'turn', 'dull', 'graini', 'warranti', 'repair', 'requir', 'phone', 'sent', 'countri', 'origin', 'case', 'mine', 'sent', 'uk', 'expens', 'buyer', 'bewar'], ['tha', 'samsung', 'galaxi', 'work', 'realli', 'well', 'even', 'better', 'expect'], ['work', 'well', 'get', 'hot', 'quick', 'though', 'would', 'nice', 'charg', 'sensor', 'light'], ['awesom', 'love', 'got', 'condit', 'upgrad', 'os', 'far'], ['good'], ['great', 'phone', 'work'], ['good', 'phone', 'work', 'great', 'network', 'not', 'regist', 'warranti', 'intern', 'item', 'not', 'sold', 'samsung', 'us'], ['problem', 'icon', 'sensit', 'i', 'constant', 'activ', 'thing', 'without', 'want', 'otherwis', 'great', 'phone'], ['piss', 'mad', 'w', 'phone', 'bought', 'gift', 'mother', 'law', 'not', 'live', 'found', 'phone', 'lock', 'phone', 'useless', 'not', 'even', 'return', 'damn', 'phone'], ['work', 'beautifullov', 'nice', 'photo'], ['good'], ['phone', 'work', 'four', 'month', 'touch', 'screen', 'becom', 'unrespons', 'let', 'know', 'first', 'product', 'ever', 'bought', 'amazon', 'malfunct', 'made', 'put', 'star', 'not', 'deserv'], ['bought', 'phone', 'brick', 'galaxi', 'saw', 'mark', 'unlock', 'intern', 'review', 'pretti', 'absolut', 'piec', 'garbag', 'much', 'ram', 'phone', 'see', 'drug', 'handl', 'android', 'os', 'terribl', 'app', 'open', 'time', 'els', 'app', 'crash', 'tri', 'restar', 'fast', 'noth', 'music', 'skip', 'song', 'memori', 'issu', 'updat', 'camera', 'fair', 'good', 'almost', 'par', 'sound', 'qualiti', 'come', 'amaz', 'earbud', 'hurt', 'hour', 'bit', 'larger', 'screencon', 'everyth', 'not', 'handl', 'multipl', 'gpu', 'crappi', 'handl', 'basic', 'mobil', 'drop', 'phone', 'call', 'open', 'differ', 'fail', 'updat', 'strang', 'low', 'ppi', 'make', 'feel', 'blurri', 'cheapoveral', 'i', 'disappoint', 'samsung', 'creat', 'virtual', 'support', 'garbag', 'liter', 'dozen', 'us', 'one', 'minus', 'peopl', 'receiv', 'chines', 'realli', 'bought', 'anoth', 'anoth', 'ram', 'not', 'also', 'handl', 'multitask', 'much', 'would', 'never', 'purchas', 'recommend'], ['good'], ['bought', 'someon', 'els', 'issu', 'yet'], ['phone', 'unlock', 'use', 'servic', 'provid', 'beauti', 'afford'], ['awesom', 'phone', 'work', 'well', 'iphon', 'broke', 'appl', 'would', 'not', 'replac', 'give', 'credit', 'buy', 'new', 'iphon', 'purchas', 'samsung', 'galaxi', 'prime', 'love', 'approx', 'phone', 'work', 'well', 'support', 'sim', 'card', 'pleas', 'purchas', 'adapt', 'kit', 'use', 'iphon', 'sim', 'use', 'phone', 'iphon', 'backup', 'att', 'look', 'like', 'iphon', 'wonder', 'spend', 'high', 'iphon', 'anymor', 'love', 'phone', 'instal', 'favorit', 'app', 'work', 'awesom'], ['not', 'capabl', 'metro', 'pcs'], ['look', 'work', 'great', 'daughter', 'love'], ['love', 'first', 'sight', 'eventhough', 'mine', 'uplift', 'supurb', 'smooth', 'ohh', 'miss', 'galaxyblu'], ['yep'], ['bought', 'cellphon', 'come', 'problem', 'network', 'keep', 'fail', 'go', 'send', 'complaint', 'formal'], ['work', 'perfect', 'month', 'glitch', 'show', 'longer', 'use', 'wors', 'glitch', 'would', 'not', 'recommend', 'product', 'price', 'ok', 'walmart', 'price', 'one', 'sim', 'port', 'instead', 'two', 'could', 'not', 'return', 'return', 'polici', 'day', 'glitch', 'start', 'like', 'day', 'use', 'save', 'buy', 'differ', 'phone'], ['work', 'expect'], ['set', 'everyth', 'easi', 'work', 'realli', 'well', 'two', 'sim', 'slot', 'realli', 'conveni'], ['good', 'phone', 'month', 'encount', 'absulout', 'issu'], ['i', 'happi', 'phone'], ['nice', 'phone'], ['nice', 'option', 'switch', 'sim', 'card'], ['realli', 'nice', 'phone', 'afford'], ['perfect'], ['everith', 'perfect', 'thing', 'need', 'reset', 'phone', 'set', 'wrong', 'error', 'need', 'pin', 'number', 'get', 'pin'], ['one', 'favorit', 'phone', 'unfortun', 'stolen', 'order', 'note', 'cheaper', 'realli', 'like', 'phone', 'color', 'pretti'], ['love', 'phone', 'case'], ['return', 'work', 'proper', 'custom', 'svc', 'could', 'get', 'work', 'suggest', 'return'], ['screen', 'broken', 'week', 'phone', 'get', 'dark', 'left', 'side', 'screen'], ['good'], ['work', 'expect'], ['good', 'cell', 'phone', 'everyth', 'good', 'look', 'like', 'pictur', 'work', 'perfect'], ['i', 'bought', 'phone', 'multipl', 'member', 'famili', 'includ', 'anoth', 'adult', 'everyon', 'i', 'given', 'extrem', 'satisfi', 'high', 'recommend', 'phone'], ['work', 'great', 'problem'], ['not', 'lte'], ['wish', 'storag', 'say', 'realli', 'like', 'phone', 'pictur', 'great', 'month', 'satisfi', 'like', 'galaxi', 'everybodi', 'go', 'crazi', 'think', 'someth', 'whatev', 'sister', 'paid', 'alot', 'less', 'mine'], ['screen', 'bigger', 'wife', 'galaxi'], ['phone', 'alway', 'frozen', 'charger', 'not', 'work', 'gotten', 'phone'], ['great', 'phone', 'good', 'price'], ['product', 'work', 'great', 'purchas', 'phone', 'mother', 'birthday', 'nice', 'not', 'technic', 'oper', 'continu', 'purchas', 'buyer', 'order', 'came', 'describ', 'happi'], ['phone', 'audio', 'problem'], ['great'], ['phone', 'suck', 'storag', 'amount', 'money', 'paid', 'would', 'think', 'better', 'phone', 'would', 'not', 'recommend', 'anyon'], ['phone', 'come', 'back', 'not', 'put', 'verizon', 'therefor', 'bought', 'anoth', 'cell', 'phone', 'pinkard'], ['read', 'review', 'phone', 'lack', 'littl', 'afraid', 'order', 'must', 'say', 'exceed', 'expect', 'bare', 'tell', 'differ', 'color', 'bright', 'phone', 'samsung', 'phone', 'surpris', 'fast', 'overal', 'good', 'phone', 'price'], ['phone', 'trash', 'use', 'real', 'samsung', 'devic', 'know', 'fake', 'junk', 'camera', 'give'], ['good'], ['first', 'phone', 'abroad', 'work', 'excel', 'problem'], ['great', 'phone', 'problem', 'set'], ['good'], ['receiv', 'phone', 'phone', 'seem', 'fine', 'charger', 'burnt', 'look', 'like', 'plug', 'wall', 'socket', 'melt'], ['good', 'phone', 'price'], ['perfect', 'right'], ['send', 'pictur', 'friend', 'not', 'send', 'open', 'attach', 'msg', 'not', 'open'], ['noth'], ['bought', 'phone', 'wife', 'love', 'person', 'like', 'compact', 'size', 'fact', 'use', 'two', 'sim', 'card', 'differ', 'carrier', 'thing', 'not', 'like', 'fact', 'not', 'great', 'price'], ['cheap', 'phone', 'remind', 'daili', 'take', 'batteri', 'reset', 'froze', 'reason', 'cheap', 'within', 'first', 'month', 'not', 'victim', 'grand', 'prime'], ['phone', 'not', 'support', 'mobil', 'data', 'contact', 'mobil', 'carrier', 'contact', 'samsung', 'inform', 'phone', 'made', 'india', 'not', 'usa', 'want', 'use', 'mobil', 'data', 'not', 'wast', 'yoyr', 'money', 'fact', 'want', 'refund', 'not', 'see', 'contact', 'seller'], ['bigger', 'photo', 'proportionatedit', 'work', 'fine', 'featur'], ['receiv', 'phone', 'set', 'quick', 'work', 'flawless', 'far', 'great', 'deal', 'week', 'heavi', 'usag', 'phone', 'batteri', 'life', 'realli', 'great', 'far', 'not', 'miss', 'beat', 'buy', 'one', 'son', 'need', 'reliabl'], ['nice', 'good', 'good', 'good'], ['phone', 'came', 'quick', 'good', 'work', 'order', 'issu', 'problem', 'still', 'use', 'often', 'complaint', 'not', 'much', 'storag', 'not', 'let', 'put', 'mani', 'thing', 'sd', 'card'], ['love', 'price', 'phone', 'part', 'side', 'batteri', 'not', 'last', 'long', 'also', 'notif', 'light', 'not', 'work'], ['great', 'phone', 'especi', 'compar', 'huawei', 'piec', 'junk', 'live', 'two', 'year', 'still', 'pay', 'switch', 'galaxi', 'could', 'not', 'happier'], ['excel', 'great', 'phone', 'arriv', 'day', 'not', 'say', 'enough', 'good', 'sale'], ['good', 'qualiti', 'expect'], ['purchas', 'less', 'att', 'store', 'amazon', 'meet', 'expect', 'like', 'water', 'resist'], ['receiv', 'phone', 'excel', 'use', 'venezuela', 'movistar', 'work', 'perfect', 'light', 'fast', 'good', 'batteri', 'life', 'excel', 'relat', 'price', 'valu'], ['excel', 'troubl', 'free', 'ship'], ['amaz', 'qualiti', 'softwar', 'app', 'user', 'friend', 'interfac', 'phone', 'great', 'valu', 'not', 'wait', 'use', 'oversea', 'love', 'sim', 'card', 'slot', 'easi', 'see', 'right', 'size', 'screen', 'love', 'outdoor', 'featur', 'brighter', 'screen', 'outdoor', 'especi', 'grate', 'even', 'though', 'intern', 'version', 'europ', 'plug', 'seller', 'includ', 'plug', 'convert', 'use', 'us', 'thank'], ['receiv', 'samsung', 'galaxi', 'duo', 'lte', 'yesterday', 'want', 'know', 'phone', 'compat', 'certain', 'countri', 'check', 'frequencycheck', 'web', 'turn', 'phone', 'compat', 'us', 'countri', 'use', 'frequenc', 'band', 'cdma', 'band', 'phone', 'though', 'expens', 'phone', 'like', 'samsung', 'use', 'band', 'also', 'depend', 'variant', 'phone', 'samsung', 'galaxi', 'north', 'america', 'version', 'also', 'variant', 'variant', 'made', 'specif', 'countri', 'region', 'drop', 'star', 'rom', 'gig', 'ram', 'would', 'prefer', 'least', 'cost', 'phone', 'seem', 'run', 'fine', 'gig', 'ram', 'though', 'lollipop', 'run', 'quick', 'pace', 'abil', 'multi', 'task', 'multipl', 'app', 'read', 'marshmallow', 'manag', 'overhead', 'memori', 'better', 'lollipop', 'better', 'power', 'save', 'featur', 'howev', 'fear', 'possibl', 'marshmallow', 'bug', 'i', 'quit', 'satisfi', 'lolli', 'moment', 'let', 'phone', 'perform', 'updat', 'today', 'modifi', 'lollipop', 'not', 'upgrad', 'marshmallow', 'load', 'templ', 'run', 'take', 'load', 'run', 'smooth', 'phone', 'came', 'gig', 'free', 'space', 'phone', 'os', 'updat', 'user', 'factori', 'instal', 'app', 'buy', 'extern', 'sd', 'card', 'well', 'app', 'transfer', 'sd', 'card', 'android', 'issu', 'not', 'phone', 'camera', 'id', 'sd', 'card', 'use', 'photo', 'not', 'much', 'bloat', 'wear', 'phone', 'opinion', 'phone', 'intend', 'north', 'america', 'five', 'minut', 'phone', 'call', 'phone', 'instruct', 'use', 'intern', 'not', 'made', 'call', 'yet', 'fyi', 'bewar', 'vendor', 'amazon', 'sell', 'singl', 'sim', 'version', 'even', 'though', 'advertis', 'duo', 'version', 'vendor', 'told', 'mix', 'bag', 'singl', 'doubl', 'sim', 'version', 'would', 'not', 'abl', 'tell', 'type', 'ship', 'vendor', 'howev', 'ship', 'correct', 'dual', 'sim', 'good', 'job', 'sure', 'contact', 'vendor', 'prior', 'updat', 'travel', 'oversea', 'indonesia', 'phone', 'use', 'two', 'differ', 'sim', 'card', 'two', 'differ', 'compani', 'card', 'abl', 'give', 'use', 'lte', 'oversea', 'locat', 'howev', 'att', 'tech', 'support', 'usa', 'not', 'abl', 'affili', 'phone', 'lte', 'servic', 'tech', 'said', 'not', 'know', 'get', 'lte', 'att', 'also', 'five', 'minut', 'phone', 'call', 'need', 'affili', 'phone', 'countri', 'not', 'realli', 'need', 'work', 'sim', 'card', 'provid', 'got', 'phone', 'work', 'far', 'use', 'phone', 'app', 'work', 'fine', 'although', 'memori', 'manag', 'requir', 'app', 'take', 'lot', 'space', 'gig', 'rom', 'plus', 'share', 'space', 'sd', 'card', 'space', 'use', 'os', 'factori', 'softwar', 'take', 'half', 'rom', 'gig', 'ram', 'seem', 'plenti', 'often', 'simpli', 'shut', 'app', 'run', 'background', 'lolipop', 'os', 'make', 'easi'], ['good'], ['phone', 'work', 'less', 'day', 'regret', 'buy', 'bought', 'useless', 'phone', 'work', 'hour', 'sim', 'card', 'turn', 'self', 'though', 'batteri', 'die', 'tri', 'charg', 'never', 'came', 'back', 'return'], ['great', 'phone', 'easi', 'use', 'also', 'good', 'valu', 'money'], ['cell', 'recept', 'weak', 'data', 'part', 'not', 'work', 'via', 'cell', 'connect'], ['samsung', 'new', 'technolog', 'great', 'product'], ['great', 'product', 'price', 'right'], ['great', 'qualiti', 'phone', 'price'], ['excel'], ['work', 'great', 'far'], ['like', 'dual', 'sim'], ['sweet'], ['confirm', 'hate', 'android', 'music', 'player', 'suck', 'adapt', 'bright', 'control', 'screen', 'button', 'bottom', 'easi', 'press', 'accident', 'set', 'not', 'intuit', 'mani', 'app', 'preinstal', 'overal', 'interfac', 'clunki', 'not', 'well', 'though'], ['good', 'product'], ['excelent'], ['excel', 'devic', 'price'], [], ['not', 'unlock', 'verizon'], ['not', 'unlock', 'verizon'], ['good'], ['ni', 'comment'], ['need', 'rear', 'camera', 'not', 'buy', 'phone', 'camera', 'blurri', 'not', 'focus', 'horribl', 'flash', 'make', 'camera', 'useless'], ['phone', 'good', 'mention'], ['i', 'give', 'star', 'exact', 'thought', 'exact', 'advertis', 'i', 'non', 'gamer', 'use', 'phone', 'text', 'voic', 'call', 'bought', 'size', 'ad', 'sim', 'card', 'micro', 'sd', 'card', 'accept', 'right', 'away', 'love', 'feel', 'phone', 'hand', 'use', 'app', 'weather', 'news', 'work', 'perfect', 'far', 'feel', 'price', 'fair', 'featur', 'get'], ['steal', 'complain'], ['work', 'perfect'], ['item', 'describ', 'dual', 'sim', 'q', 'not', 'pleas', 'delet', 'miss', 'lead', 'info'], ['excel', 'relat'], ['great', 'phone', 'fast', 'reason', 'not', 'give', 'star', 'not', 'call', 'build', 'bad', 'recept', 'nice', 'abl', 'use', 'featur'], ['samsung', 'phone', 'made', 'argentina', 'unit', 'state', 'not', 'regist', 'phone', 'account', 'may', 'import', 'us', 'resid', 'phone', 'region', 'lock', 'say', 'call', 'anywher', 'minut', 'unlock', 'region', 'lock', 'way', 'europ', 'annoy', 'needless', 'step', 'cost', 'get', 'sim', 'minut', 'phone', 'work', 'us', 'android', 'work', 'us', 'consum', 'demand', 'transpar', 'open', 'box', 'flyer', 'fall', 'region', 'lock', 'info', 'frighten', 'not', 'abl', 'regist', 'product', 'mean', 'not', 'regist', 'obtain', 'warranti', 'servic', 'might', 'accord', 'us', 'samsung', 'call', 'center', 'repres', 'point', 'might', 'mean', 'bought', 'dispos', 'may', 'use', 'phone', 'servic', 'us', 'requir', 'minut', 'order', 'meet', 'requir', 'region', 'lock', 'i', 'europ', 'vodaphon', 'voic', 'data', 'servic', 'work', 'expect'], ['work', 'perfect', 'republ', 'wireless', 'new', 'republ', 'byop', 'plan', 'note', 'need', 'updat', 'phone', 'firmwar', 'becom', 'approv', 'devic', 'accord', 'republ', 'wireless', 'app', 'updat', 'simpli', 'say', 'unsupport', 'devic', 'simpli', 'connect', 'phone', 'wifi', 'goto', 'phone', 'hit', 'manual', 'updat', 'updat', 'not', 'fire', 'right', 'away', 'connect', 'wifi'], ['bought', 'samsung', 'last', 'summer', 'niec', 'disappoint', 'cos', 'last', 'two', 'month', 'phone', 'went', 'blank', 'tri', 'get', 'fix', 'not', 'work'], [], ['nice', 'devic'], ['fastest', 'phone', 'ever', 'purchas', 'applic', 'move', 'quick', 'readi', 'love', 'phone', 'realli', 'work', 'mexico', 'usa', 'roam', 'case'], ['excel'], ['bought', 'famili', 'member', 'abroad', 'love', 'howev', 'say', 'unlock', 'unabl', 'use', 'despit', 'follow', 'instruct', 'use', 'us', 'first', 'got', 'unlock', 'work', 'without', 'problem', 'keep', 'mind', 'one', 'got', 'lock'], ['seem', 'like', 'good', 'phone', 'could', 'tell', 'could', 'not', 'use', 'carrier', 'tracfon'], ['return', 'alreadi', 'set', 'foreign', 'languag'], ['well', 'kind', 'difficult', 'work', 'get', 'hang', 'power', 'drain', 'fast', 'though'], ['excel', 'product', 'work', 'well', 'even', 'low', 'signal', 'camera', 'superb', 'super', 'happi', 'valu', 'money'], ['touch', 'screen', 'not', 'work', 'stuck', 'french', 'languag', 'tri', 'everyth', 'make', 'sure', 'not', 'phone', 'avail', 'certifi', 'samsung', 'tech', 'also', 'verifi', 'not', 'respond', 'sorri', 'phone', 'felt', 'good', 'new', 'clear', 'i', 'tri', 'kind', 'bottom', 'line', 'i', 'return', 'phone', 'refund', 'i', 'sure', 'not', 'seller', 'fault', 'everi', 'product', 'one', 'mani', 'stock', 'give', 'problem', 'custom', 'servic', 'respons', 'great', 'thank', 'bdsj', 'tech', 'glad', 'buy', 'without', 'hesit'], ['like', 'work', 'well'], ['product', 'seem', 'work', 'well', 'new', 'smartphon', 'not', 'major', 'concern', 'hand', 'wish', 'could', 'move', 'app', 'sd', 'card', 'actual', 'discov', 'make', 'sd', 'card', 'default', 'storag', 'area', 'seem', 'go', 'ram', 'anyway', 'move', 'manual', 'even', 'not', 'alway', 'possibl', 'suspect', 'develop', 'issu', 'i', 'also', 'issu', 'get', 'devic', 'regist', 'samsung', 'system', 'not', 'recogn', 'mei', 'serial', 'number', 'howev', 'satisfi', 'product'], ['bueno'], ['first', 'smartphon', 'delight', 'use', 'us', 'use', 'abroad', 'chang', 'sim', 'fulli', 'satisfi', 'not', 'chang', 'rate'], ['workd', 'good'], ['hope', 'thank'], ['came', 'time', 'describ', 'met', 'expect', 'fulli'], ['excel'], ['ok', 'phone', 'price', 'paid', 'gave', 'four', 'star', 'key', 'not', 'vibrat', 'type', 'messag', 'research', 'found', 'new', 'updat', 'overal', 'nice', 'phone', 'fast', 'take', 'great', 'pictur', 'rear', 'camera', 'also', 'front', 'camera', 'flash', 'wonder', 'take', 'selfi', 'night', 'make', 'plus', 'not', 'vibrat', 'text', 'buy', 'tho'], ['frontal', 'photo', 'not', 'work'], ['arriv', 'fast', 'work', 'type', 'sim', 'card', 'work', 'dominican', 'republ', 'also', 'two', 'differ', 'compani', 'move', 'germani'], ['nice'], ['phone', 'amaz', 'love', 'panorama', 'featur', 'camera', 'camera', 'clean', 'clear', 'make', 'pictur', 'look', 'better', 'perfect', 'replac', 'phone', 'went', 'bad', 'love', 'better'], ['excel', 'phone'], ['love'], ['phone', 'work', 'perfect'], ['yes', 'satisfi'], ['great', 'phone', 'price', 'paid', 'great', 'perform', 'spec', 'overal', 'excel', 'phone'], ['good', 'product', 'deliv', 'time', 'work', 'well', 'use', 'south', 'africa', 'central', 'america', 'would', 'not', 'hesit', 'purchas'], ['venezuela', 'product', 'come', 'cous', 'hous', 'not', 'bring', 'correct', 'charger', 'latinoamerican', 'even', 'thouth', 'intern', 'version', 'buy', 'anoth', 'charger', 'phone', 'firt', 'time', 'happen', 'bought', 'cell', 'three', 'time', 'amazon'], ['phone', 'not', 'work', 'could', 'not', 'use', 'i', 'return'], ['good'], ['less', 'expens', 'phone', 'seem', 'pretti', 'good', 'use', 'travel'], ['hi', 'everyth', 'good', 'need', 'adapt', 'charg', 'one', 'order', 'cellphon'], ['far', 'good'], ['like', 'qualiti', 'inov'], ['pleas'], ['like'], ['good', 'servic', 'good', 'experi'], ['excel', 'product', 'content'], ['perfect'], ['find', 'valu', 'money', 'phone', 'hesit', 'migrat', 'samsung', 'phone', 'embroid', 'brand'], ['phone', 'work', 'perfect'], ['good', 'price'], ['good'], ['gift', 'wife', 'love', 'samsung', 'addict'], ['great', 'phone'], ['not', 'unlock', 'not', 'intern', 'buy', 'wife', 'use', 'canada', 'not', 'english', 'italian'], ['great', 'phone', 'not', 'killer', 'decent', 'kid', 'bought', 'front', 'camera', 'front', 'flash'], ['good', 'servic', 'good', 'experi'], ['excel'], ['love'], ['nice', 'phone'], ['wow', 'camera', 'phone', 'one', 'best', 'featur', 'bought', 'daughter', 'galaxi', 'mini', 'begin', 'see', 'year', 'get', 'slow', 'freez', 'time', 'go', 'get', 'servic', 'saw', 'offer', 'phone', 'samsung', 'camera', 'get', 'turn', 'good', 'buy', 'like', 'take', 'pictur', 'basic', 'photographi', 'cours', 'also', 'bought', 'sixteen', 'micro', 'sd', 'form', 'amazon', 'phone', 'light', 'handi', 'camera'], ['perfect'], ['excel', 'product', 'content'], ['greatest', 'phone', 'ever', 'fine', 'realli', 'beauti', 'colour', 'purchas', 'would', 'pictur', 'clean', 'plus', 'flash', 'front', 'back', 'fill', 'phone', 'lightweight', 'batteri', 'better', 'samsung'], ['not', 'buy', 'phone', 'overheat', 'not', 'stay', 'facebook', 'min', 'get', 'realli', 'hot'], ['nice', 'phone', 'problem', 'camera', 'everi', 'time', 'tri', 'use', 'say', 'not', 'work', 'shut', 'phone', 'restart', 'order', 'use', 'camera'], ['nice', 'phone', 'think', 'love', 'problem', 'cut', 'sim', 'card', 'fit', 'great'], ['sent', 'back', 'item', 'small'], ['good', 'phone', 'actual', 'bought', 'two', 'famili', 'member', 'realli', 'love'], ['excel'], ['not', 'seem', 'chang', 'rington', 'store', 'phone', 'anyon', 'els', 'problem', 'help', 'phone', 'work', 'fine'], ['excel', 'phone'], ['need'], ['excel', 'cellphon'], ['love', 'phone'], ['great', 'phone', 'good', 'batteri', 'life', 'love', 'screen', 'display', 'real', 'joy', 'selfi', 'shot', 'get', 'micro', 'sd', 'card', 'well', 'heavi', 'snap', 'pic', 'use', 'social', 'media', 'app'], ['good'], ['three', 'week', 'far', 'goe', 'smooth'], ['bought', 'samsung', 'galaxi', 'dual', 'sim', 'lte', 'factori', 'unlock', 'phone', 'phone', 'reciv', 'dual', 'sim', 'not', 'mean', 'seriusli', 'want', 'money', 'back', 'wish', 'could', 'return', 'countri', 'venezuela', 'almost', 'impos', 'way', 'expens', 'not', 'fair'], ['realli', 'like', 'phone', 'great', 'price', 'unlock', 'phone', 'dual', 'sim', 'latest', 'technolog'], ['nice', 'camera'], ['wonder', 'phone', 'unlock', 'intern', 'use', 'answer', 'receiv', 'one', 'clear', 'state', 'phone', 'packag', 'use', 'america', 'put', 'intern', 'sim', 'card', 'phone', 'not', 'work', 'usuali', 'work', 'internationali', 'unlock', 'phone', 'word', 'factori', 'unlock', 'product', 'descript', 'kind', 'mislead', 'seller', 'doe', 'not', 'clear', 'state', 'use', 'us', 'get', 'unlock', 'intern', 'use', 'cost', 'extra', 'phone', 'good'], ['excel'], ['good', 'product'], ['far', 'good', 'updat', 'marshmallow', 'right', 'away', 'storag', 'great', 'size', 'not', 'enorm', 'mani', 'phone', 'alreadi', 'thank', 'screen', 'still', 'good', 'size', 'video', 'pic', 'i', 'use', 'ting', 'sim', 'also', 'anoth', 'sim', 'travel', 'home', 'outsid', 'us', 'extern', 'memori', 'hold', 'chip', 'speaker', 'not', 'best', 'volum', 'capac', 'kind', 'disappoint', 'good', 'headphon', 'come', 'pair', 'charger', 'look', 'cheap', 'cord', 'short', 'give', 'star'], ['advertis'], ['celphon', 'slow'], ['good', 'smart', 'phone', 'price', 'gift', 'someon', 'love', 'instant'], ['love', 'phone', 'first', 'smart', 'phone', 'work', 'perfect', 'much', 'afford', 'buy', 'one', 'store', 'everyth', 'need', 'noon', 'i', 'seen', 'far', 'one', 'like', 'great', 'size', 'big', 'enough', 'read', 'easili', 'not', 'big', 'clunki', 'take', 'sim', 'card', 'not', 'imagin', 'i', 'need', 'cool', 'case', 'also', 'take', 'card', 'extra', 'memori'], ['not', 'want'], ['excel'], ['excel', 'product', 'seller', 'describ', 'recomend', 'thank'], ['like', 'good', 'gb', 'make', 'fast', 'plenti', 'use', 'two', 'sim', 'not', 'tri', 'photo', 'qualiti', 'better', 'expectedi', 'would', 'given', 'star', 'could', 'not', 'knew', 'bell', 'whistl', 'seri', 'model', 'not', 'avail', 'model', 'disappoint', 'found', 'follow', 'miss', 'shown', 'clear', 'spec', 'not', 'compass', 'sensor', 'gps', 'use', 'car', 'navig', 'app', 'not', 'use', 'walk', 'direct', 'like', 'googl', 'map', 'sinc', 'map', 'keep', 'fix', 'north', 'follow', 'motion', 'not', 'follow', 'not', 'not', 'find', 'screen', 'protector', 'fit'], ['good', 'item', 'i', 'happi', 'think', 'i', 'made', 'good', 'purchas', 'not', 'got', 'problem', 'far', 'deliv', 'schedul', 'good', 'condit', 'thank', 'much'], ['excel', 'phone', 'recommend', 'venezuela', 'digitel', 'movistar', 'work', 'lte'], ['screen'], ['open', 'languag', 'not', 'understand', 'set'], ['fast', 'durabl', 'good', 'perform', 'speed', 'run', 'android', 'box', 'great', 'camera', 'qualiti', 'phone', 'price', 'rang', 'overal', 'great', 'phone'], ['love', 'love', 'love', 'new', 'samsung', 'phone', 'littl', 'concern', 'first', 'wonder', 'would', 'work', 'bahama', 'side', 'box', 'say', 'us', 'sim', 'card', 'put', 'sim', 'card', 'work', 'perfect', 'previous', 'iphon', 'batteri', 'would', 'die', 'odd', 'time', 'babi', 'batteri', 'seem', 'last', 'forev', 'take', 'pic', 'everyon', 'els', 'not', 'cell', 'phone', 'batteri', 'die', 'pictur', 'clear', 'i', 'also', 'excit', 'googl', 'keyboard', 'swipe', 'text', 'also', 'less', 'restrict', 'websit', 'app', 'must', 'say', 'i', 'happi', 'camper', 'would', 'total', 'recommend', 'phone', 'i', 'think', 'get', 'one', 'mom'], ['fast', 'light', 'good', 'design'], ['good', 'phone', 'not', 'lte', 'care'], ['note', 'devic', 'not', 'support', 'lte', 'outsid', 'not', 'buy', 'go', 'use', 'outsid', 'unit', 'state'], ['first', 'time', 'user', 'smart', 'phone', 'get', 'around', 'app', 'easi'], ['order', 'unlock', 'phone', 'one', 'deliv', 'still', 'lock', 'not', 'use', 'sim', 'card', 'i', 'dissapoint', 'spend', 'money', 'unlock', 'phone'], ['point'], ['work', 'excel', 'need', 'volum', 'peak', 'ok'], ['not', 'receiv', 'dual', 'sim', 'regular'], ['work', 'well'], ['excel', 'buy'], ['not', 'dual', 'sim', 'simpl', 'sim', 'argentina', 'bueno', 'air', 'not', 'send', 'back', 'not', 'packag', 'need', 'answer', 'soon'], ['phone', 'awesom', 'thought', 'would', 'flaw', 'would', 'problem', 'love'], ['beauti'], ['excel', 'product', 'argentina', 'work', 'perfect', 'thank'], ['purchas', 'first', 'wife', 'happi', 'mind', 'phone', 'googl', 'nexus', 'purchas', 'nexus', 'start', 'shut', 'get', 'use', 'way', 'work', 'problem', 'led', 'notif', 'light', 'work', 'around', 'app', 'call', 'nole', 'two', 'app', 'need', 'googl', 'launcher', 'googl', 'like', 'larger', 'screen', 'fact', 'larger', 'phone', 'time', 'larger', 'longer', 'batteri', 'work', 'well', 'nexus', 'compass', 'app', 'not', 'minor', 'issu'], ['everi', 'thing', 'perfect', 'pts'], ['pleas', 'phone', 'font', 'theme', 'size', 'phone', 'definit', 'camera', 'main', 'clariti', 'front', 'flash', 'everyth', 'perfect', 'upon', 'receiv', 'phone', 'get', 'new', 'sim', 'card', 'iphon', 'sim', 'card', 'small', 'howev', 'repres', 'could', 'not', 'connect', 'internet', 'initi', 'mad', 'upset', 'distraught', 'everyth', 'would', 'imagin', 'got', 'home', 'immedi', 'came', 'home', 'contact', 'costum', 'servic', 'help', 'assur', 'phone', 'compat', 'gave', 'tip', 'resolv', 'issu', 'not', 'know', 'exact', 'get', 'internet', 'work', 'i', 'enjoy', 'new', 'phone', 'high', 'reccomend', 'phone', 'anyon', 'look', 'someth', 'new'], ['exact', 'expect'], ['good'], ['love', 'phone', 'everyth', 'want', 'replac', 'batteri', 'upgrad', 'memori', 'option', 'make', 'happi', 'broke', 'appl', 'buy', 'phone', 'not', 'regret'], ['excelent', 'teléfono'], ['great', 'phone', 'batteri', 'not', 'last', 'long', 'thing', 'critic'], ['super', 'fast', 'batteri', 'two', 'day', 'normal', 'use', 'hr', 'watch', 'netflix', 'lunch', 'break', 'board', 'speaker', 'best', 'ever', 'heard', 'sound', 'good', 'capabl', 'near', 'volum', 'portabl', 'speaker', 'time', 'size', 'phone'], ['simpli', 'love'], ['good', 'qualiti', 'fast', 'love'], ['great', 'phone', 'great', 'price'], ['phone', 'not', 'work', 'not', 'exchang', 'recept', 'signal', 'extrem', 'weak', 'phone', 'call', 'not', 'come', 'spell', 'incorrect', 'write', 'want', 'process', 'item', 'take', 'long', 'time', 'type', 'sensit', 'slow', 'select', 'wrong', 'letter', 'bad', 'phone'], ['everyth', 'expect', 'thank'], ['daughter', 'love', 'bought', 'birthday'], ['first', 'choic', 'use', 'india', 'like', 'give', 'star'], ['good', 'buy'], ['bought', 'use', 'argentina', 'work', 'perfect', 'well', 'abl', 'oper', 'great', 'phone', 'great', 'price'], ['love', 'phone', 'love', 'larg', 'screen', 'actual', 'need', 'want', 'better', 'phone', 'not', 'want', 'spend', 'lot', 'money', 'want', 'good', 'sent', 'simm', 'card', 'busi'], ['awesom', 'phone', 'lte', 'fm', 'radio', 'work', 'not', 'pollut', 'peski', 'nuisanc', 'app', 'best', 'part', 'want', 'divorc', 'gsm', 'carrier', 'simpli', 'go', 'anoth', 'phone', 'give', 'freedom', 'samsung', 'alway', 'great', 'phone', 'pleas', 'one', 'high', 'recommend'], ['perfecto'], ['purchas', 'gold', 'daughter', 'took', 'sim', 'previous', 'unlock', 'moto', 'g', 'put', 'easi', 'phone', 'work', 'perfect', 'ever', 'sinc', 'not', 'one', 'problem', 'issu', 'thank', 'daughter', 'love'], ['love'], ['need', 'new', 'oper', 'system', 'open', 'certain', 'mobil', 'app', 'great', 'purpos'], ['advertis', 'use', 'galaxi', 'activ', 'past', 'want', 'bigger', 'screen', 'featur', 'need', 'not', 'need', 'shealth', 'advanc', 'featur', 'model', 'work', 'batteri', 'last', 'long', 'week', 'let', 'us', 'see'], ['excel', 'product'], ['phone', 'come', 'charger', 'batteri', 'headphon', 'solid', 'build', 'feel', 'like', 'flagship', 'phone', 'android', 'come', 'great', 'featur', 'grandma', 'use', 'phone', 'easi', 'mode', 'app', 'bigger', 'size', 'easier', 'navig', 'interfac', 'perfect'], ['provid', 'review', 'phone', 'phone', 'black', 'wife', 'phone', 'wonder', 'phone', 'less', 'half', 'price', 'galaxi', 'fast', 'processor', 'enough', 'storag', 'ram', 'expand', 'micro', 'sd', 'capabl', 'resolut', 'pixel', 'count', 'higher', 'import', 'inch', 'screen', 'imag', 'video', 'beauti', 'cast', 'home', 'tv', 'good', 'better', 'prism', 'tv', 'offer', 'camera', 'near', 'ident', 'teaser', 'like', 'corn', 'gorilla', 'glass', 'imag', 'stabil', 'water', 'resist', 'option', 'wireless', 'charg', 'avail', 'respons', 'adult', 'cell', 'phone', 'user', 'not', 'use', 'devic', 'busi', 'purpos', 'find', 'reason', 'whatsoev', 'foolish', 'spend', 'bought', 'wife', 'new', 'phone', 'less', 'one', 'galaxi', 'averag', 'user', 'music', 'movi', 'sport', 'shop', 'app', 'trust', 'phone', 'fine'], ['great', 'phone', 'fast', 'powerful', 'nice', 'lte', 'work', 'perfect', 'south', 'america'], ['appli', 'well', 'wish', 'screen', 'protector', 'tini', 'bi', 'bigger', 'get', 'way', 'edg', 'work', 'well', 'need'], ['satisfi', 'product', 'price', 'rang', 'thank', 'deliveri', 'time'], ['bought', 'gift', 'someon', 'live', 'outsid', 'us', 'absolut', 'love', 'perform'], ['great', 'phone'], ['love', 'phone'], ['great', 'not', 'come', 'bloatwar'], ['great', 'not', 'care', 'dual', 'sim', 'featur', 'phone', 'make', 'call', 'allow', 'app', 'function', 'fine', 'purpos', 'bought', 'phone', 'said', 'dual', 'sim', 'disappoint', 'find', 'hold', 'one', 'sim', 'card', 'slot', 'block', 'unus'], ['great', 'product', 'time', 'advertis'], ['nice', 'product'], ['order', 'brother', 'realli', 'happi'], ['great'], ['excel', 'phone', 'bought', 'day', 'ago', 'far', 'i', 'happi', 'knock', 'knock', 'dual', 'sim', 'work', 'like', 'charm', 'provid', 'set', 'messag', 'said', 'one', 'lte', 'servic', 'anoth', 'slower', 'speed', 'enjoy', 'not', 'know', 'happen', 'touch', 'finger', 'flip', 'differ', 'carrier', 'sim', 'sim', 'love', 'instead', 'phone', 'carri', 'one', 'also', 'great', 'reassur', 'compani', 'sold', 'phone', 'ship', 'amazon', 'sent', 'email', 'explan', 'kind', 'phone', 'tell', 'contact', 'someth', 'not', 'satisfact', 'strong', 'recommend', 'phone'], ['work', 'perfect', 'top', 'qualiti', 'ship'], ['care', 'folk', 'not', 'dual', 'sim', 'phone', 'one', 'sim', 'impress', 'sim', 'phone', 'bought', 'amazon', 'sham'], ['bought', 'wifey', 'good', 'speed', 'easi', 'navig', 'thru', 'use', 'need', 'add', 'app', 'ring', 'tone', 'one', 'come', 'instal', 'minim', 'use', 'straittalk', 'problem'], ['yes', 'meet', 'expect'], ['not', 'fulli', 'test', 'function', 'samsung', 'phone', 'satisfi', 'see', 'far', 'two', 'issu', 'not', 'find', 'schedul', 'auto', 'avail', 'english', 'user', 'manual', 'phone', 'either', 'built', 'within', 'phone', 'websit'], ['sorri', 'phone', 'work', 'fast', 'first', 'start', 'freezestart', 'crashpow'], ['receiv', 'phone', 'time', 'better', 'could', 'hope'], ['excel', 'phone', 'bought', 'day', 'ago', 'far', 'i', 'happi', 'knock', 'knock', 'dual', 'sim', 'work', 'like', 'charm', 'provid', 'set', 'messag', 'said', 'one', 'lte', 'servic', 'anoth', 'slower', 'speed', 'enjoy', 'not', 'know', 'happen', 'touch', 'finger', 'flip', 'differ', 'carrier', 'sim', 'sim', 'love', 'instead', 'phone', 'carri', 'one', 'also', 'great', 'reassur', 'compani', 'sold', 'phone', 'ship', 'amazon', 'sent', 'email', 'explan', 'kind', 'phone', 'tell', 'contact', 'someth', 'not', 'satisfact', 'strong', 'recommend', 'phone'], ['receiv', 'galaxi', 'us', 'version', 'phone', 'pleas', 'howev', 'model', 'list', 'dual', 'simm', 'model', 'capabl', 'hold', 'simm', 'card', 'time', 'separ', 'line', 'use', 'separ', 'simm', 'card', 'holder', 'set', 'phone', 'left', 'simm', 'card', 'holder', 'miss', 'replac', 'plastic', 'insert', 'fill', 'hole', 'end', 'call', 'samsung', 'custom', 'servic', 'find', 'holder', 'miss', 'found', 'intern', 'version', 'cone', 'dual', 'simm', 'model', 'us', 'version', 'manufactur', 'singl', 'simm', 'model', 'line', 'miss', 'simm', 'holder', 'make', 'differ', 'appear', 'seller', 'use', 'descript', 'version', 'error', 'note', 'thing', 'first', 'write', 'model', 'not', 'know', 'true', 'model', 'complet', 'differ', 'phone', 'even', 'though', 'name', 'second', 'warn', 'version', 'dual', 'simm', 'also', 'appear', 'either', 'day', 'zero', 'warranti', 'versus', 'us', 'version', 'year', 'samsung', 'warranti', 'third', 'also', 'notifi', 'amazon', 'problem', 'not', 'sound', 'like', 'would', 'correct', 'list'], ['last', 'samsung', 'purchas', 'note', 'ii', 'disappoint', 'see', 'manufactur', 'slowli', 'veer', 'away', 'main', 'made', 'stand', 'appl', 'phone', 'remov', 'batteri', 'extern', 'sdhc', 'card', 'phone', 'unlock', 'support', 'dual', 'sim', 'suit', 'intern', 'travel', 'need', 'far', 'love', 'use', 'batteri', 'hour', 'sit', 'desk', 'standbi', 'mode'], ['excel', 'product', 'argentina', 'work', 'perfect', 'thank'], ['enjoy', 'phone', 'like', 'size', 'fast', 'start', 'auto', 'reboot', 'repeat', 'day', 'make', 'sign', 'back', 'googl', 'play', 'someth', 'stop', 'happen', 'otherwis', 'pleas', 'arriv', 'time', 'origin', 'box'], ['own', 'mani', 'galaxi', 'phone', 'one', 'not', 'live', 'samsung', 'galaxi', 'name', 'not', 'compat', 'straight', 'talk', 'walmart', 'hour', 'find', 'also', 'dual', 'sim', 'card', 'actual', 'slot', 'one', 'sim', 'one', 'micro', 'sd', 'per', 'electron', 'depart', 'personnel', 'not', 'happi', 'overal', 'funcual', 'product', 'not', 'even', 'use', 'video', 'call', 'featur'], ['purchas', 'phone', 'daughter', 'love', 'love', 'recommend', 'phone'], ['work', 'usa', 'problem', 'get', 'lte', 'data'], ['expect', 'week', 'signal', 'hous', 'good', 'price'], ['selfi', 'phone', 'take', 'pictur', 'night', 'dark', 'light', 'not', 'problem'], ['everi', 'thing', 'perfect', 'pts'], ['good'], ['excel'], ['great', 'product', 'time', 'advertis'], ['far', 'best', 'smart', 'phone', 'use', 'tracfon', 'servic', 'insert', 'sim', 'card', 'micro', 'sd', 'work', 'perfect', 'problem', 'call', 'tracfon', 'not', 'marshmallow', 'ok', 'research', 'not', 'want', 'pay', 'phone', 'most', 'sit', 'purs', 'problem', 'figur', 'micro', 'sd', 'card', 'get', 'insert', 'immedi', 'sim', 'card', 'consult', 'owner', 'manual'], ['ok', 'wrote', 'review', 'phone', 'came', 'french', 'go', 'att', 'rep', 'abl', 'figur', 'set', 'english', 'phone', 'self', 'seem', 'great', 'not', 'realli', 'use', 'yet', 'recap', 'come', 'anoth', 'languag', 'provid', 'abl', 'fix', 'not', 'send', 'back'], ['complaint', 'l', 'phone', 'not', 'chang', 'assign', 'differ', 'color', 'text', 'alert', 'phone', 'notif', 'specif', 'person'], ['us', 'phone', 'work', 'perfect', 'could', 'not', 'happier', 'iphon', 'plus', 'issu', 'decid', 'go', 'samsung', 'galaxi', 'arriv', 'pop', 'sim', 'iphon', 'plus', 'adapt', 'iphon', 'nano', 'micro', 'turn', 'phone', 'came', 'perfect', 'configur', 'requir', 'even', 'tether', 'work', 'say', 'con', 'thing', 'found', 'far', 'inabl', 'turn', 'shutter', 'sound', 'camera', 'worri', 'camera', 'qualiti', 'iphon', 'gold', 'standard', 'chang', 'pro', 'mode', 'adjust', 'iso', 'even', 'low', 'light', 'photo', 'good', 'leav', 'auto', 'get', 'much', 'nois', 'low', 'light', 'purchas', 'extra', 'batteri', 'spare', 'case', 'amazon', 'sd', 'card', 'buy', 'absolut', 'cost', 'iphon', 'plus', 'near', 'phone', 'similar', 'perform', 'remov', 'batteri', 'sd', 'slot', 'dual', 'sim', 'sd', 'card', 'pleas'], ['us', 'att', 'look', 'relat', 'inexpens', 'smartphon', 'without', 'contract', 'might', 'i', 'tri', 'cheaper', 'brand', 'amazon', 'sell', 'phone', 'intend', 'sale', 'us', 'blu', 'huawei', 'zte', 'budget', 'phone', 'dollar', 'someon', 'mention', 'samsung', 'anoth', 'forum', 'watch', 'bunch', 'video', 'learn', 'could', 'found', 'phone', 'far', 'capabl', 'game', 'budget', 'price', 'phone', 'also', 'phone', 'happen', 'look', 'quit', 'premium', 'outsid', 'game', 'also', 'perform', 'pretti', 'darn', 'well', 'i', 'give', 'decid', 'get', 'phone', 'ambient', 'light', 'sensor', 'not', 'big', 'deal', 'i', 'insid', 'keep', 'phone', 'percent', 'bright', 'go', 'outsid', 'use', 'outdoor', 'bright', 'option', 'phone', 'perform', 'beauti', 'much', 'nicer', 'budget', 'phone', 'i', 'use', 'notif', 'light', 'kind', 'miss', 'not', 'huge', 'deal', 'glass', 'back', 'not', 'care', 'backlit', 'key', 'bottom', 'phone', 'would', 'like', 'hour', 'two', 'brain', 'rememb', 'exact', 'button', 'version', 'phone', 'bought', 'intend', 'use', 'america', 'south', 'north', 'turn', 'select', 'spanish', 'languag', 'phone', 'let', 'us', 'scroll', 'select', 'english', 'point', 'everyth', 'english', 'put', 'sim', 'card', 'prior', 'turn', 'first', 'time', 'put', 'att', 'sim', 'slot', 'slot', 'right', 'memori', 'card', 'slot', 'immedi', 'memori', 'card', 'right', 'boot', 'phone', 'quick', 'setup', 'phone', 'download', 'app', 'told', 'spotifi', 'use', 'mem', 'card', 'store', 'music', 'podcast', 'app', 'cheap', 'way', 'conserv', 'precious', 'intern', 'storag', 'review', 'phone', 'amazon', 'state', 'not', 'work', 'att', 'complet', 'untru', 'version', 'phone', 'work', 'beauti', 'att', 'lte', 'speed', 'incred', 'problem', 'never', 'use', 'phone', 'touchwiz', 'read', 'lot', 'complaint', 'person', 'love', 'far', 'incred', 'configur', 'chang', 'entir', 'look', 'phone', 'ad', 'new', 'theme', 'ton', 'free', 'one', 'samsung', 'store', 'review', 'mention', 'phone', 'lot', 'bloatwar', 'also', 'untru', 'phone', 'usual', 'googl', 'app', 'coupl', 'microsoft', 'like', 'onedr', 'game', 'demo', 'etc', 'gig', 'intern', 'storag', 'gig', 'free', 'turn', 'first', 'line', 'great', 'phone', 'built', 'handl', 'network', 'america', 'mean', 'att', 'could', 'not', 'happier', 'batteri', 'life', 'first', 'day', 'incred', 'lollipop', 'screen', 'especi', 'night', 'consum', 'almost', 'batteri', 'sleep', 'hour', 'wake', 'percent', 'use', 'amaz', 'iphon', 'would', 'lose', 'percent', 'batteri', 'life', 'period', 'not', 'marshmallow', 'doze', 'featur', 'nativ', 'os', 'manag', 'cool', 'featur', 'i', 'not', 'seen', 'phone', 'manag', 'memori', 'app', 'samsung', 'includ', 'use', 'clear', 'app', 'memori', 'free', 'much', 'space', 'possibl', 'incred', 'not', 'use', 'case', 'screen', 'protector', 'one', 'knock', 'phone', 'review', 'lack', 'gorilla', 'glass', 'would', 'mean', 'regard', 'fingerprint', 'scratch', 'well', 'someon', 'test', 'glass', 'onlin', 'scratch', 'resist', 'phone', 'gorilla', 'glass', 'nasti', 'fingerprint', 'magnet', 'like', 'last', 'phone', 'lacklust', 'honor', 'not', 'fact', 'resist', 'fingerprint', 'way', 'not', 'experienc', 'phone', 'tablet', 'i', 'not', 'sure', 'impress', 'everi', 'day', 'hit', 'clean', 'cloth', 'not', 'fingerprint', 'control', 'make', 'look', 'brand', 'new', 'also', 'pleas', 'feel', 'weight', 'phone', 'hand', 'feel', 'incred', 'premium', 'despit', 'not', 'metal', 'phone', 'also', 'button', 'great', 'feel', 'well', 'use', 'phone', 'impress', 'samsung', 'deliv', 'dollar', 'game', 'perform', 'tremend', 'better', 'yet', 'phone', 'never', 'heat', 'game', 'also', 'love', 'customiz', 'theme', 'store'], ['everyth', 'phone', 'great', 'except', 'seem', 'unit', 'defect', 'signal', 'bar', 'home', 'most', 'sometim', 'live', 'remot', 'locat', 'must', 'signal', 'bar', 'howev', 'alway', 'random', 'previous', 'samsung', 'devic', 'sii', 'grand', 'grand', 'neo', 'grand', 'ii', 'use', 'remot', 'locat', 'past', 'sure', 'switch', 'sim', 'back', 'old', 'unit', 'voila', 'higher', 'bar', 'must', 'issu', 'antenna', 'cours', 'other', 'experienc', 'similar', 'issu', 'model', 'still', 'get', 'servic', 'left', 'alon', 'rather', 'go', 'return', 'luck', 'phone', 'date', 'back', 'first', 'replac', 'time'], ['give', 'burn', 'sensat', 'finger', 'hand', 'not', 'hold', 'long'], ['hello', 'bougth', 'phone', 'samsung', 'toda', 'ihad', 'problem', 'screen', 'iam', 'argentina', 'not', 'know', 'réplace', 'warren', 'comento', 'soon', 'mansilla'], ['got', 'phone', 'husband', 'love', 'phone'], ['not', 'dual', 'sim'], ['good', 'phone'], ['good'], ['not', 'usa', 'work', 'not', 'standard'], ['awesom', 'phone'], ['great', 'phone', 'phone', 'sim', 'card', 'slot', 'may', 'tri', 'one', 'work', 'usa', 'sim', 'need', 'slot', 'data', 'work', 'proper', 'phone', 'issu', 'data', 'switch', 'sim', 'card', 'around'], ['unabl', 'marri', 'wireless', 'router', 'help', 'samsung', 'support', 'us', 'model', 'countri', 'suggest', 'call', 'vietnam', 'devic', 'manufactur', 'day', 'tri', 'tip', 'trick', 'internet', 'return', 'devic'], ['excel'], ['lte'], ['got', 'phone', 'thought', 'set', 'russian', 'languag', 'version', 'languag', 'return', 'phone', 'back'], ['excel'], ['enjoy'], ['good'], ['thank', 'good', 'price'], ['nice', 'phone', 'bought', 'huzz', 'love', 'much', 'impress', 'batteri', 'life', 'although', 'use', 'phone', 'lot', 'batteri', 'last', 'whole', 'day', 'recommend', 'twould', 'shopper', 'purchas', 'phone', 'store', 'also', 'thank', 'prompt', 'deliveri'], ['nice', 'phone'], ['nice'], ['good', 'phone'], ['great', 'realli', 'fast', 'camera', 'amaz', 'love'], ['product', 'receiv', 'hold'], ['realiz', 'bought', 'phone', 'discount', 'turn', 'everyth', 'russian', 'quick', 'switch', 'english', 'everyth', 'complet', 'bought', 'phone', 'use', 'like', 'new', 'worri', 'amazon', 'strict', 'guidelin', 'like', 'new', 'suppos', 'box', 'includ', 'everyth', 'box', 'probabl', 'open', 'scratch', 'took', 'risk', 'amaz', 'phone', 'dollar', 'cheaper', 'list', 'price', 'i', 'work', 'fine', 'even', 'get', 'better', 'servic', 'indoor', 'previous', 'phone', 'not', 'compar', 'new', 'tmobil', 'band', 'howev', 'servic', 'indoor', 'not', 'good', 'could'], ['phone', 'great', 'way', 'cheaper', 'buy', 'att'], ['great', 'phone'], ['perfect'], ['irrespons', 'time', 'deliveri', 'not', 'recommend'], ['bought', 'month', 'ago', 'look', 'good', 'work', 'well', 'excel', 'price'], ['like', 'first', 'smart', 'phone', 'surpris', 'easi', 'use', 'somehow', 'sim', 'fail', 'work', 'give'], ['good', 'size', 'big', 'much', 'less', 'sim', 'card', 'numbersmemori', 'card', 'big', 'plus', 'sinc', 'store', 'file', 'without', 'worri', 'not', 'enough', 'space', 'intern', 'fingerprint', 'accesstil', 'not', 'big', 'deal'], ['lte'], ['love', 'everyth', 'phone', 'purchas', 'replac', 'samsung', 'drop', 'size', 'display', 'screen', 'i', 'still', 'adjust', 'larger', 'size', 'phone', 'phone', 'receiv', 'exact', 'describ', 'dual', 'sim', 'slot', 'memori', 'card', 'slot', 'purchas', 'gold', 'color', 'exact', 'shown', 'amazon', 'phone', 'unlock', 'work', 'perfect', 'bahama', 'issu', 'set', 'receiv', 'brand', 'new', 'phone', 'seal', 'box', 'day', 'order', 'prime', 'seller', 'also', 'sent', 'email', 'offer', 'support', 'may', 'need', 'would', 'definit', 'recommend', 'phone'], ['amaz', 'phone', 'bought', 'mom', 'almost', 'not', 'let', 'thought', 'sinc', 'low', 'price', 'would', 'bad', 'note', 'seller', 'rais', 'price', 'bought', 'mine', 'week', 'ago', 'say', 'price', 'goe', 'go', 'two', 'sim', 'card', 'slot', 'add', 'extra', 'memori', 'not', 'worri', 'not', 'enough', 'storag', 'space', 'possibl', 'endless', 'also', 'process', 'speed', 'flawless', 'play', 'game', 'well', 'camera', 'work', 'well', 'expect', 'camera', 'phone', 'problem', 'realli', 'great', 'thing', 'front', 'camera', 'flash', 'amaz', 'samsung', 'galaxi', 'not', 'even', 'come', 'memori', 'excel', 'phone', 'actual', 'good', 'phone', 'not', 'load', 'extra', 'app', 'one', 'page', 'come', 'folder', 'microsoft', 'word', 'powerpoint', 'etc', 'delet', 'i', 'talk', 'undelet', 'user', 'yes', 'work', 'use', 'lte', 'use', 'data', 'outsid', 'make', 'call', 'text', 'fulli', 'function', 'almost', 'big', 'samsung', 'galaxi', 'note', 'smaller', 'centimet', 'big', 'iphon', 'screen', 'amaz', 'clear', 'bright', 'sound', 'qualiti', 'realli', 'good', 'unless', 'want', 'blast', 'music', 'around', 'entir', 'citi', 'sound', 'volum', 'ram', 'realli', 'good', 'phone', 'not', 'heat', 'maintain', 'steadi', 'room', 'temperatur', 'matter', 'much', 'use', 'phone', 'arriv', 'definit', 'new', 'never', 'open', 'still', 'plastic', 'protector', 'screen', 'side', 'not', 'batteri', 'wrap', 'nice', 'phone', 'came', 'percent', 'charg', 'last', 'day', 'come', 'charger', 'earbud', 'charger', 'univers', 'okay', 'though', 'came', 'peic', 'match', 'wall', 'socket', 'could', 'seen', 'plus', 'though', 'mean', 'use', 'charger', 'around', 'world', 'also', 'use', 'phone', 'around', 'world', 'sinc', 'intern', 'earbud', 'came', 'littl', 'wonki', 'one', 'earbud', 'chord', 'size', 'much', 'short', 'okay', 'generous', 'even', 'includ', 'earbud', 'first', 'ooh', 'theme', 'yes', 'amaz', 'use', 'theme', 'chang', 'entir', 'look', 'phone', 'chang', 'font', 'rene', 'color', 'pattern', 'even', 'look', 'applic', 'decor', 'insid', 'app', 'keyboard', 'could', 'look', 'differ', 'could', 'cloud', 'instead', 'chat', 'bubbl', 'messag', 'app', 'tebddi', 'bear', 'pink', 'background', 'also', 'mani', 'theme', 'free', 'pay', 'one', 'find', 'problem', 'find', 'ten', 'realli', 'cute', 'free', 'phone', 'work', 'america', 'fun', 'phone', 'realli', 'unlock', 'use', 'buy', 'phone', 'doubt', 'head', 'lost', 'black', 'part', 'charger', 'turn', 'normal', 'charger', 'yes', 'come', 'one', 'omg', 'lost', 'alreadi'], ['phone', 'great', 'bought', 'gift', 'someon', 'philippin', 'everyth', 'suppos', 'everyth', 'want', 'featur', 'seem', 'even', 'work', 'better', 'appl', 'phone', 'easi', 'navig', 'work', 'well', 'everyth', 'thing', 'difficult', 'phone', 'tri', 'transfer', 'photo', 'taken', 'samsung', 'appl', 'iphon', 'aid', 'comput', 'back', 'home', 'think', 'transfer', 'photo', 'app', 'high', 'recommend', 'phone', 'appear', 'durabl', 'work', 'intern', 'situat', 'nice', 'abl', 'expand', 'memori', 'memori', 'card', 'whatev', 'need', 'good', 'deal'], ['use', 'tracfon', 'turn', 'data', 'unless', 'would', 'realli', 'need', 'like', 'phone', 'batteri', 'last', 'almost', 'week', 'standbi', 'touch', 'respons', 'wifi', 'work', 'great', 'call', 'clear', 'kind', 'larg', 'not', 'phone', 'fault', 'made', 'not', 'heat', 'issu', 'not', 'play', 'game', 'either', 'main', 'got', 'use', 'phone', 'replac', 'ipod', 'die', 'would', 'love', 'unlimit', 'data', 'not', 'afford', 'month', 'bill', 'fine', 'sinc', 'mani', 'said', 'data', 'not', 'fast', 'phone', 'one', 'thing', 'not', 'like', 'android', 'latest', 'os', 'not', 'allow', 'use', 'sd', 'card', 'anyth', 'pictur', 'song', 'seem', 'app', 'go', 'onto', 'intern', 'gb', 'fill', 'rather', 'quick', 'phone', 'work', 'well', 'purchas', 'warranti', 'squar', 'trade', 'chat', 'get', 'correct', 'warranti', 'devic'], ['great', 'phone', 'tri', 'three', 'differ', 'carrier', 'would', 'not', 'work'], ['not', 'support', 'mhl', 'not', 'buy', 'want', 'connect', 'tv'], ['love'], ['good', 'function', 'price'], ['everyt', 'ok', 'phone', 'recomend'], ['phone', 'would', 'okay', 'would', 'connect', 'network', 'metropc', 'would', 'not', 'allow', 'use', 'data', 'metro', 'apn', 'assum', 'may', 'defect', 'model', 'warn', 'could', 'happen', 'compat', 'phone', 'see', 'metro', 'actual', 'sell', 'model', 'white', 'addit', 'notic', 'batteri', 'went', 'rather', 'quick', 'use', 'fair', 'might', 'defect', 'model', 'realli', 'wish', 'would', 'work', 'love', 'interfac', 'screen', 'beauti', 'processor', 'seem', 'fast', 'sad', 'return'], ['far', 'good'], ['happi', 'price', 'fact', 'two', 'sim', 'card', 'galaxi', 'feel', 'differ', 'price', 'worth', 'buy', 'lot', 'rice', 'bean', 'come', 'hope', 'phone', 'last', 'well'], ['love', 'phone', 'great', 'pictur'], ['good'], ['good', 'phone', 'meet', 'expect', 'work', 'well', 'venezuela', 'movistar', 'digitel', 'movilnet'], ['not', 'correct', 'model', 'look', 'us', 'edit', 'happi', 'none', 'less', 'still', 'blowd', 'door', 'iphon'], ['love', 'bigger', 'thought'], ['got', 'phone', 'today', 'perfect', 'high', 'recommend', 'buy', 'galaxi'], ['best', 'phone', 'ever'], ['phone', 'perfect', 'data', 'cabl', 'not', 'work'], ['awesom', 'awesom', 'pricelov'], ['great', 'phone', 'work', 'perfect', 'thank'], ['love', 'phone', 'beauti', 'complaint', 'verizon', 'wireless', 'ensur', 'phone', 'would', 'network', 'sinc', 'unlock', 'not', 'work', 'return', 'great', 'phone', 'wish', 'could', 'kept'], ['good'], ['juli', 'concern', 'respons', 'adult', 'individualit', 'regret', 'convey', 'phone', 'defect', 'piec', 'load', 'virus', 'infect', 'full', 'error', 'phone', 'requir', 'chang', 'immedi', 'new', 'advic', 'process', 'exchang', 'cost', 'undersign', 'immedi', 'later', 'juli', 'regardssincer', 'ashokashok'], ['althouth', 'phone', 'seal', 'box', 'open', 'saw', 'fingerprint', 'white', 'smudg', 'film', 'back', 'cover', 'screen', 'work', 'stop', 'later', 'appear', 'back', 'short', 'period', 'time', 'unstabl', 'mayb', 'batteri', 'defect', 'sinc', 'connect', 'phone', 'pc', 'via', 'usb', 'cabl', 'screen', 'came', 'back', 'work', 'sometim', 'went', 'blank', 'return', 'seller', 'told', 'go', 'replac', 'new', 'one', 'think', 'unlucki'], ['realli', 'love', 'new', 'phone', 'screen', 'resolut', 'brilliant', 'speed', 'processor', 'dazzl', 'call', 'adequ', 'front', 'flash', 'camera', 'take', 'vibrant', 'photo', 'nd', 'dual', 'sim', 'card', 'capabl', 'huge', 'plus', 'great', 'price', 'high', 'recommend'], ['phone', 'ok', 'told', 'someth', 'wrong', 'within', 'phone', 'even', 'though', 'servic', 'not', 'abl', 'use', 'mobil', 'web', 'use', 'home', 'wifi'], ['phone', 'terribl', 'glitch', 'send', 'back'], ['love', 'phone', 'best', 'ever'], ['phone', 'work', 'great'], ['phone', 'big', 'great', 'video', 'phone', 'qualiti', 'batteri', 'last', 'long', 'replac', 'inch', 'phone', 'inch', 'found', 'amazon', 'differ', 'case', 'screen', 'cover', 'phone', 'realli', 'fast', 'not', 'design', 'best', 'like', 'samsung', 'lower', 'price', 'peopl', 'like', 'want', 'use', 'phone', 'not', 'brag'], ['phone', 'said', 'new', 'not', 'scratch', 'back', 'cover', 'phone'], ['excel', 'product'], ['want', 'samsung', 'galaxi', 'mega', 'year', 'got', 'first', 'mega', 'love', 'thought', 'big', 'not', 'imagin', 'phone', 'big', 'wow', 'love', 'readi', 'put', 'phone', 'straight', 'talk', 'not', 'wait', 'start', 'use', 'phone'], ['love', 'everyth', 'perfect'], ['love'], ['daughter', 'bought', 'phone', 'love', 'say', 'everyth', 'need', 'right', 'need', 'use'], ['receiv', 'phone', 'size', 'mega', 'much', 'bigger', 'love', 'use', 'simpl', 'mobil', 'transfer', 'inform', 'one', 'purchas'], ['great'], ['soonersoft', 'eletron', 'dealerl', 'hand', 'good', 'condit', 'look', 'like', 'brand', 'spankin', 'new', 'done', 'program', 'straight', 'talk', 'phone', 'switch', 'chip', 'boom', 'lame', 'fame'], ['good', 'phone'], ['phone', 'big', 'great', 'everyth', 'cell', 'phone', 'poepl', 'ask', 'check', 'much', 'get', 'lol'], ['arriv', 'time', 'exact', 'describ', 'bought', 'gift', 'friend', 'love', 'great', 'job', 'guy', 'i', 'order', 'soon'], ['price', 'great', 'product', 'much', 'better', 'visual', 'phone', 'skype', 'work', 'great'], ['great', 'phone', 'music', 'etc', 'great'], ['lot', 'fun', 'use', 'look', 'good', 'daili', 'use', 'internet', 'camera', 'great'], ['way', 'mani', 'cool', 'featur', 'digit', 'camera', 'awesom', 'imag', 'clear', 'sound', 'crisp', 'good', 'buy'], ['good'], ['great', 'languag', 'spanish', 'requir', 'separ', 'instal', 'os', 'android', 'excel', 'product', 'high', 'recommend'], ['love', 'phone', 'size', 'came', 'american', 'european', 'charger', 'would', 'recommend', 'phone', 'anyon', 'friend', 'samsung', 'phone', 'hare', 'jealous', 'amaz', 'screen'], ['phone', 'quit', 'work', 'day', 'use', 'speaker', 'atroci', 'could', 'not', 'hear', 'anyth', 'note', 'got', 'note'], ['live', 'va', 'switch', 'straight', 'talk', 'ph', 'acct', 'big', 'azz', 'ph', 'purchas', 'sim', 'card', 'straight', 'talk', 'walk', 'right', 'not', 'repeat', 'not', 'regret', 'upgrad', 'straight', 'talk', 'lg', 'dynam', 'still', 'learn', 'function', 'wish', 'oper', 'booklet', 'came', 'would', 'got', 'star'], ['phone', 'came', 'crack', 'screen', 'send', 'back', 'phone', 'look', 'nice', 'not', 'crack', 'screen'], ['good', 'phone', 'instruct', 'manual', 'written', 'chines', 'unabl', 'get', 'citi', 'name', 'written', 'english', 'weather', 'page', 'phone', 'good', 'size', 'overal', 'good', 'phone', 'satisfi'], ['phone', 'held', 'custom', 'almost', 'month', 'buyer', 'put', 'worth', 'wish', 'far', 'truth'], ['great', 'product', 'thank', 'much'], ['appear', 'fantast', 'howev', 'issu', 'phone', 'least', 'not', 'not', 'even', 'know', 'yet', 'could', 'not', 'call', 'phone', 'seller', 'best', 'assist', 'problem', 'avail', 'not', 'phone', 'children', 'not', 'contact', 'return'], ['pleas', 'samsung', 'galaxi', 'note', 'set', 'transfer', 'phone', 'less', 'minut', 'recommend', 'noah', 'quick', 'ship'], ['deliv', 'sooner', 'expect', 'exact', 'expect', 'product'], ['never', 'thought', 'would', 'buy', 'phone', 'realli', 'mega', 'woman', 'figur', 'would', 'tri', 'get', 'realli', 'love'], ['phone', 'great', 'thank'], ['work', 'great', 'fast', 'ship'], ['reciev', 'note', 'yesterday', 'wireless', 'group', 'nd', 'let', 'say', 'phone', 'came', 'day', 'seller', 'repli', 'question', 'best', 'part', 'phone', 'came', 'clean', 'not', 'one', 'sctratch', 'activ', 'everyth', 'clean', 'consid', 'buy', 'phone', 'extrem', 'pleas'], ['nice', 'phone', 'verizon', 'phone', 'arriv', 'describ'], ['bought', 'phone', 'run', 'straight', 'talk', 'phone', 'arriv', 'practic', 'new', 'condit', 'work', 'fantast', 'complaint', 'descript', 'state', 'come', 'origin', 'acessori', 'howev', 'came', 'generic', 'charger', 'rather', 'origin'], ['work', 'great', 'issu', 'report', 'yet'], ['great'], ['devic', 'work', 'expect', 'i', 'satisfi', 'look', 'forward', 'purchas', 'merchandis', 'near', 'futur'], ['great', 'product', 'came', 'dealfish', 'almost', 'new', 'condit', 'android', 'lollipop', 'alreadi', 'instal', 'mine', 'white', 'came', 'white', 'charger', 'usb', 'cord', 'took', 'consum', 'cellular', 'sim', 'card', 'network', 'creat', 'new', 'apn', 'find', 'set', 'need', 'onlin', 'work', 'even', 'call', 'imei', 'number', 'consum', 'verizon', 'model', 'gsm', 'use', 'global', 'work', 'fine', 'gsm', 'network', 'mvno', 'sim', 'card', 'not', 'lte', 'band', 'use', 'lte', 'settl', 'speed', 'switch', 'verizon', 'go', 'switch', 'anyway', 'want', 'gsm', 'support', 'page', 'manual', 'ww', 'dot', 'samsung', 'dot', 'also', 'download', 'usb', 'driver', 'model', 'version', 'note', 'avail', 'provid', 'amazon', 'sprint', 'verizon', 'gsm', 'order', 'one', 'need'], ['excelent'], ['phone', 'not', 'new', 'screen', 'next', 'lot', 'dust', 'charg', 'socket', 'dust', 'pen', 'damag'], ['good'], ['love', 'phone', 'order', 'new', 'batteri', 'price', 'anoth', 'thing', 'suck', 'phone', 'not', 'support', 'anymor', 'nfc', 'useless', 'still', 'one', 'best', 'phone', 'market', 'even', 'year', 'later', 'still', 'give', 'other', 'run', 'moneyaft', 'week', 'buy', 'new', 'batteri', 'charger', 'one', 'sent', 'suck', 'not', 'last', 'long'], ['great', 'servic', 'happi', 'product'], ['reason', 'gave', 'two', 'star', 'not', 'abl', 'use', 'phone', 'charger', 'came', 'not', 'work', 'box', 'complet', 'damag'], ['good', 'product'], ['excel', 'item', 'work', 'advertis'], ['pleas', 'not', 'get', 'phone', 'fake', 'china', 'copi', 'waist', 'samsung', 'galaxi', 'note'], ['phone', 'not', 'charg', 'batteri', 'quit', 'disappoint'], ['phone', 'problem'], ['i', 'set', 'moment', 'phone', 'not', 'use', 'mess', 'go', 'troubl', 'find', 'away', 'get', 'back', 'amazon', 'hope', 'get', 'resolv', 'spend', 'money'], ['great'], ['sent', 'back', 'would', 'not', 'work'], ['excel', 'cellphon', 'i', 'use', 'uruguay', 'wonder', 'screen', 'not', 'lag', 'work', 'like', 'charm', 'network'], ['describ', 'complaint'], ['alway', 'like', 'samsung', 'phone', 'one', 'work', 'perfect', 'difficulti', 'data', 'compani', 'gave', 'quick', 'respons', 'help', 'figur', 'question', 'quick', 'easili'], ['phone', 'like', 'brand', 'new', 'love', 'everyth', 'back', 'cover', 'look', 'beauti', 'draw', 'back', 'verizon', 'applic', 'not', 'uninstal', 'hotspot', 'function', 'not', 'work'], ['work', 'great', 'w', 'africa'], ['advertis'], ['unlock', 'phone'], ['good', 'phone', 'not', 'send', 'right', 'charger', 'phone'], ['bought', 'birthday', 'present', 'husband', 'week', 'far', 'satisfi', 'scratch', 'work', 'great', 'troubl', 'activ', 'verizon', 'would', 'buy', 'compani'], ['purchas', 'like', 'new', 'last', 'month', 'not', 'hold', 'charg', 'get', 'hot', 'purchas', 'new', 'batteri', 'help', 'seller', 'buyer', 'bewar', 'complet', 'rip'], ['bad', 'invest', 'regrett', 'phone', 'still', 'freez', 'time', 'day', 'realli', 'trust', 'guy', 'get', 'good', 'deal', 'good', 'phone', 'sent', 'bad', 'packag', 'obvious', 'mean', 'not', 'work', 'compens', 'week', 'pay'], ['good', 'not', 'work'], ['love', 'arriv', 'earli', 'easi', 'set'], ['month', 'screen', 'freez', 'use', 'minut', 'chk', 'email'], ['great', 'phone', 'came', 'time'], ['good', 'product', 'meet', 'expect'], ['not', 'use', 'phone', 'phone', 'not', 'onlin', 'want', 'download', 'some', 'not', 'not', 'know', 'not', 'set', 'one', 'tell', 'feel', 'fool'], ['issu', 'product', 'blame', 'take', 'well', 'write', 'month', 'purchas', 'phone', 'never', 'realli', 'act', 'right', 'thing', 'assum', 'servic', 'area', 'clear', 'anoth', 'phone', 'inde', 'phone', 'drop', 'call', 'everywher', 'simpli', 'never', 'got', 'first', 'place', 'digit', 'start', 'screen', 'caus', 'touch', 'sensit', 'problem', 'phone', 'refurbish', 'opinion', 'poor', 'done', 'not', 'proper', 'test', 'realli', 'think', 'entitl', 'refund', 'day', 'warranti', 'phone', 'much', 'thorough', 'disappoint'], ['phone', 'day', 'look', 'like', 'new', 'phone', 'size', 'perfect', 'type', 'much', 'betterthan', 'iphon', 'busi', 'perfect', 'phone', 'read', 'screenclear', 'send', 'email', 'also', 'not', 'larg', 'fit', 'pocket'], ['phone', 'came', 'great', 'condit', 'work', 'like', 'dream', 'complaint', 'sim', 'card', 'not', 'includ', 'charger', 'would', 'not', 'charg', 'phone', 'like', 'need', 'go', 'purchas', 'new', 'one', 'phone', 'work', 'good', 'look', 'brand', 'new'], ['exact', 'want', 'met', 'expect'], ['horriblephon', 'start', 'give', 'problem', 'third', 'week', 'automat', 'crashedtook', 'differ', 'phone', 'compani', 'told', 'old', 'phone', 'camera', 'would', 'not', 'take', 'pictur', 'certain', 'dial', 'pad', 'not', 'workwil', 'not', 'purchas'], ['good'], ['phone', 'not', 'work'], ['realli', 'good'], ['nope'], ['not', 'buy', 'sell', 'damag', 'product'], ['return', 'phone', 'model', 'not', 'advert', 'sticker', 'say', 'lock', 'american', 'sim', 'card', 'ripoff', 'seller', 'fals', 'advertis', 'would', 'not', 'buy', 'tri', 'buy', 'unlck', 'blackberri', 'phone', 'thing', 'happen', 'not', 'buy', 'seller', 'amazon', 'remov'], ['perfect', 'complaint'], ['galaxi', 'note', 'book', 'good', 'somebodi', 'love'], ['not', 'friggin', 'ass', 'get', 'frigg', 'product', 'not', 'kno', 'product', 'like', 'amazon', 'tell'], ['i', 'phone', 'month', 'work', 'great', 'replac', 'batteri', 'fast', 'drain', 'work', 'great', 'good', 'buy'], ['audio', 'damag', 'batter', 'around', 'edg', 'not', 'fill', 'expect', 'disappoint'], ['earphon', 'miss', 'phone', 'lot', 'scratch', 'side', 'even', 'camera', 'look', 'like', 'replac'], ['love', 'cours', 'minor', 'scratch', 'bit', 'good'], ['excel', 'came', 'fast', 'problem', 'phone', 'europ', 'south', 'america', 'adapt', 'phone', 'brand', 'new', 'work', 'awesom'], ['also', 'bought', 'friend', 'not', 'much', 'go', 'oversea', 'say', 'best', 'market', 'right', 'guy', 'littl', 'big'], ['upgrad', 'note', 'love', 'still', 'lag', 'littl', 'time', 'even', 'kit', 'kat', 'worth', 'bigger', 'n', 'brighter', 'screen', 'note', 'de', 'boss', 'high', 'recommend', 'get', 'spen', 'feel', 'better', 'serious', 'mine', 'even', 'though', 'say', 'jellybean', 'descript', 'got', 'kit', 'kat'], ['love'], ['excel', 'product', 'need', 'two', 'product'], ['not', 'receiv', 'item', 'not', 'know', 'good', 'bbe', 'poor', 'not', 'think', 'make', 'busi', 'saller', 'second', 'time'], ['good', 'expect'], ['phone', 'came', 'everyth', 'includ', 'happi', 'purchas', 'also', 'clean', 'unopen', 'great', 'purchas'], ['purchas', 'phone', 'state', 'clear', 'amazon', 'prime', 'phone', 'within', 'less', 'week', 'technic', 'difficulti', 'phone', 'bad', 'experi', 'start', 'order', 'placement', 'order', 'samsung', 'note', 'paid', 'day', 'deliveri', 'time', 'absent', 'valid', 'inform', 'not', 'shown', 'order', 'placement', 'phone', 'deliveri', 'day', 'time', 'next', 'challeng', 'phone', 'time', 'go', 'unrespons', 'thus', 'make', 'unabl', 'answer', 'import', 'incom', 'call', 'sometim', 'go', 'total', 'blank', 'forc', 'sever', 'batteri', 'pull', 'left', 'bitter', 'tast', 'mouth', 'regard', 'phone', 'conclud', 'phone', 'not', 'valu', 'money', 'way', 'jamaica', 'phone', 'keep', 'act', 'issu', 'approxim', 'week', 'old'], ['beauti', 'huge', 'screen', 'app', 'need', 'lot', 'cool', 'featur', 'may', 'go', 'youtub', 'watch', 'video', 'learn'], ['set', 'instruct', 'us', 'user', 'know', 'not', 'grow', 'txt', 'messag', 'love', 'wish', 'set', 'instruct', 'larger', 'print', 'like'], ['one', 'best', 'thing', 'ever', 'bought', 'love', 'see', 'screen', 'anyon', 'els', 'near', 'not', 'know', 'wait', 'long', 'use', 'sim', 'card', 'galaxi', 'updat', 'carrier', 'straight', 'talk', 'get', 'rural', 'southwest', 'virginia', 'great', 'phone'], ['good'], ['good'], ['i', 'move', 'mini', 'galaxi', 'onto', 'not', 'realli', 'compar', 'much', 'phone', 'know', 'want', 'big', 'screen', 'nice', 'camera', 'fast', 'got', 'phone', 'work', 'simpl', 'mobil', 'yet', 'see', 'signal', 'see', 'read', 'review', 'think', 'form', 'i', 'not', 'bother', 'simpl', 'mobil', 'rather', 'low', 'price', 'servic'], ['excel'], ['bought', 'hubbi', 'within', 'week', 'phone', 'alreadi', 'shut', 'without', 'warn'], ['item', 'found', 'describ', 'site', 'realli', 'nice', 'good', 'qualiti', 'servic', 'happi'], ['would', 'like', 'give', 'star', 'use', 'month', 'research', 'get', 'samsung', 'galaxi', 'note', 'great', 'phone', 'love', 'everyth', 'phone', 'would', 'not', 'turn', 'screen', 'lock', 'logo', 'sign', 'would', 'not', 'chang', 'anyth', 'keep', 'turn', 'got', 'march', 'love', 'april', 'phone', 'would', 'turn', 'went', 'got', 'phone', 'recent', 'month', 'noth', 'phone', 'root', 'reset', 'anyth', 'not', 'even', 'drop', 'phone', 'compani', 'pay', 'back', 'replac', 'phone', 'howev', 'say', 'use', 'warranti', 'would', 'not', 'work', 'us', 'i', 'current', 'wait', 'investig', 'guarante', 'claim', 'take', 'not', 'contact', 'anyon', 'least', 'recommend', 'galaxi', 'note', 'phone', 'perfect', 'get', 'normal', 'one', 'not', 'defect', 'one', 'like', 'mine', 'servic', 'horribl'], ['worst', 'experi', 'life', 'phone', 'stop', 'work', 'less', 'month', 'use', 'unit', 'factori', 'unlock', 'work', 'intern', 'samsung', 'corpor', 'refus', 'provid', 'technic', 'assist', 'warranti', 'inform', 'not', 'contain', 'advertis', 'seller', 'limit', 'refund', 'amount', 'paid', 'threw', 'away', 'money', 'never', 'buy', 'electron', 'product', 'samsung', 'i', 'sorri', 'lost'], ['previous', 'lost', 'phone', 'bless', 'order', 'samsung', 'galaxi', 'note', 'compani', 'came', 'claim', 'receiv', 'also', 'open', 'turn', 'devic', 'fantast', 'condit', 'coupl', 'scratch', 'vitriol', 'top', 'month', 'satisfi', 'purchas', 'plus', 'found', 'great', 'price', 'thank'], ['good', 'job', 'time', 'complet', 'new', 'congratul'], ['love', 'new', 'phone', 'still', 'discoveri', 'stage', 'got', 'less', 'week'], ['buy', 'specif', 'not', 'say', 'memori', 'capacitywhen', 'got', 'confirm', 'purchas', 'say', 'price', 'not', 'worth'], ['happi', 'phone'], ['trabajando', 'al', 'máximo', 'encanta'], ['good', 'one'], ['complet', 'satisfi', 'purchas', 'product'], ['great', 'phone', 'perfect', 'venezuela', 'work', 'perfect', 'three', 'phone', 'compani'], ['architect', 'best', 'mobil', 'tool', 'help', 'everyth', 'work', 'leisur', 'thing', 'miss', 'food', 'prepar', 'miss', 'fm', 'radio', 'function', 'make', 'mani', 'way'], ['refubish', 'cellphon'], ['good', 'phone', 'use', 'month', 'not', 'seem', 'find', 'issu', 'great', 'seller'], ['receiv', 'phone', 'less', 'hrs', 'excit', 'look', 'brand', 'new', 'not', 'well', 'packag', 'also', 'transfer', 'sim', 'old', 'phone', 'work', 'seller', 'cool'], ['four', 'samsung', 'galaxi', 'note', 'famili', 'i', 'power', 'user', 'i', 'quit', 'familiar', 'unit', 'one', 'arriv', 'excel', 'use', 'condit', 'beef', 'stylus', 'came', 'not', 'origin', 'much', 'play', 'tip', 'make', 'useless', 'necessit', 'better', 'replac', 'also', 'would', 'not', 'connect', 'via', 'usb', 'cabl', 'frustrat', 'factori', 'reset', 'last', 'resort', 'hour', 'troubleshoot', 'also', 'order', 'standard', 'note', 'charger', 'head', 'volt', 'faster', 'charg', 'phone', 'not', 'come', 'manual', 'paperwork', 'good', 'took', 'bit', 'get'], ['great'], ['told', 'tmobil', 'network', 'phone', 'unlock', 'want', 'tmobil', 'note'], ['work', 'perfect', 'fast', 'full', 'featur', 'beauti', 'resolut', 'love', 'abund', 'memori', 'space', 'gig', 'sd', 'card', 'ad', 'i', 'never', 'low', 'memori'], ['realli', 'like', 'samsung', 'galaxi', 'note', 'new', 'phone', 'fast', 'lot', 'properti', 'lot', 'thing', 'fantast', 'look', 'like', 'note', 'camera', 'great'], ['great', 'phone', 'came', 'promis', 'brand', 'new', 'box', 'accessori', 'unlock'], ['excel'], ['know', 'peep', 'opinion', 'experi', 'one', 'not', 'best', 'piec', 'comput', 'hardwar', 'softwar', 'devic', 'ever', 'far', 'phone', 'possibl', 'endless', 'thing', 'samsung', 'knock', 'outta', 'park', 'everi', 'time', 'step', 'note', 'seri', 'phone', 'best', 'phone', 'ever', 'put', 'market', 'far', 'expect', 'continu', 'blow', 'away', 'competit', 'wide', 'favor', 'throw', 'piec', 'garbag', 'get', 'real', 'phone'], ['littl', 'slow', 'compar', 'previous', 'phone'], ['good', 'product'], ['love', 'flavor', 'use', 'deliveryy'], ['phone', 'work', 'great'], ['great', 'phone', 'work', 'great', 'one', 'problem', 'heat', 'realli', 'fast', 'live'], ['awesom', 'phone', 'work', 'great', 'cricket', 'put', 'cricket', 'apn', 'address', 'complet', 'unlock', 'not', 'abl', 'delet', 'app', 'phone', 'abl', 'disabl', 'longer', 'look', 'thank', 'awesom', 'buy'], ['wrong', 'inform', 'amazon', 'site', 'use', 'oop', 'frustrat', 'not', 'work', 'sim', 'mention', 'unlock', 'gsm', 'not', 'reali'], ['actual', 'model', 'nice', 'phone', 'work', 'fine', 'regar', 'sim', 'card', 'howev', 'extern', 'speaker', 'would', 'distort', 'bad', 'could', 'not', 'use', 'phone', 'convers', 'must', 'use', 'also', 'advertis', 'refurbish', 'work', 'like', 'new'], ['list', 'unlock', 'show', 'rapid', 'condit', 'look', 'brand', 'new', 'love', 'thank'], ['thought', 'brand', 'good', 'look'], ['got', 'note', 'refurv', 'black', 'last', 'week', 'delight', 'see', 'fone', 'condit', 'coupl', 'day', 'charg', 'i', 'notic', 'charg', 'overnight', 'charg', 'sometim', 'batteri', 'drain', 'fast', 'even', 'iam', 'not', 'use', 'guess', 'got', 'bad', 'appl'], ['love', 'work', 'perfect', 'way', 'bigger', 'thank', 'million'], ['great', 'phone'], ['phone', 'came', 'seem', 'like', 'cheap', 'glass', 'broke', 'pocket', 'otterbox', 'defens', 'case', 'store', 'bought', 'note', 'took', 'quit', 'beat', 'not', 'even', 'crack', 'top', 'pen', 'never', 'stay', 'phone', 'fall', 'constant', 'gave', 'star', 'well', 'actual', 'phone', 'would', 'steer', 'clear', 'buy', 'craigslist', 'least', 'look', 'crook', 'eye', 'screw'], ['not', 'tell', 'much', 'love', 'phone', 'technic', 'challeng', 'user', 'friend', 'size', 'great', 'us', 'not', 'use', 'thumb'], ['near', 'new', 'refurbish', 'arriv', 'time', 'along', 'new', 'batteri', 'would', 'given', 'star', 'charger', 'includ', 'standard', 'travel', 'charger', 'adapt', 'fast', 'charger', 'origin', 'includ', 'note', 'variant'], ['got', 'phone', 'first', 'realiz', 'tmobil', 'not', 'att', 'month', 'work', 'fine', 'till', 'day', 'start', 'reboot', 'everi', 'minut', 'stop', 'work', 'took', 'servic', 'guy', 'told', 'not', 'buy', 'refurbish', 'phone', 'futur', 'use', 'not', 'origin', 'part', 'sloppi', 'job', 'put', 'everyth', 'togeth', 'disappoint', 'experi'], ['bought', 'husband', 'love', 'easi', 'set', 'straight', 'talk', 'not', 'realli', 'anyth', 'bad', 'say', 'would', 'not', 'use', 'hot', 'spot', 'internet'], ['great', 'phone', 'best', 'phone', 'i', 'ever'], ['love', 'love', 'phone', 'problem', 'except', 'phone', 'disabl', 'app', 'not', 'interfer', 'daili', 'usag', 'good', 'thereon', 'even', 'use', 'phone', 'outsid', 'us', 'high', 'recommend'], ['thought', 'order', 'new', 'galaxi', 'note', 'mistaken', 'advertis', 'new', 'refurbish', 'repeat', 'refurbish', 'phone', 'not', 'new', 'buyer', 'bewar', 'phone', 'arriv', 'sever', 'scratch', 'camera', 'glass', 'cost', 'anoth', 'replac', 'display', 'light', 'scratch', 'space', 'metal', 'frame', 'connect', 'lower', 'right', 'corner', 'phone', 'last', 'sensit', 'back', 'button', 'kept', 'note', 'fiasco', 'i', 'tire', 'set', 'new', 'phone', 'everyth', 'els', 'work', 'fine', 'decid', 'live', 'honest', 'review', 'custom', 'feel', 'cheat'], ['phone', 'unlock', 'intern', 'phone', 'phone', 'not', 'get', 'current', 'updat', 'not', 'network', 'told', 'huge', 'bomber', 'phone', 'screen', 'freez', 'alot', 'cut', 'i', 'reset', 'issu', 'persist'], ['got', 'phone', 'time', 'describ', 'brand', 'new', 'far', 'phone', 'perform', 'flawless', 'not', 'fault', 'fail'], ['excelent'], ['best', 'smartphon', 'i', 'ever', 'love', 'pen', 'fact', 'pop', 'charg', 'batteri', 'whenev', 'like', 'instead', 'tie', 'charger', 'extern', 'batteri', 'memori', 'expans', 'much', 'better', 'appl', 'reason', 'not', 'star', 'get', 'pop', 'ad', 'seem', 'get', 'rid'], ['right', 'bottom', 'not', 'work', 'good', 'pen', 'soo', 'bad'], ['phone', 'stope', 'work', 'turn', 'coud', 'turn', 'high', 'dissapoint', 'second', 'phone', 'order', 'amazon', 'first', 'one', 'also', 'never', 'order', 'anyth', 'site'], ['phone', 'work', 'fine', 'except', 'headphon', 'outlet', 'shortag', 'big', 'reason', 'not', 'like', 'old', 'phone'], ['awesom', 'phone', 'super', 'fast', 'love', 'pen', 'great', 'batteri', 'life', 'previous', 'phone', 'nexus', 'far', 'best', 'great', 'camera', 'well', 'phone', 'larg', 'though', 'fit', 'back', 'pocket', 'not', 'front', 'littl', 'weighti', 'one', 'hand', 'oper', 'not', 'great', 'must', 'not', 'phone'], ['batteri', 'goe', 'unit', 'not', 'origin', 'start', 'bulg', 'coupl', 'week', 'use', 'seller', 'replac', 'batteri', 'right', 'away'], ['came', 'time', 'day', 'unlock', 'go', 'metro', 'love', 'phone', 'not', 'much', 'damag', 'current', 'get', 'use', 'love', 'live'], ['advertis', 'new', 'phone', 'one', 'deliv', 'use', 'scratch', 'camera', 'len', 'sticki', 'dirt', 'accumul', 'camera', 'flash', 'collar', 'receiv', 'speaker', 'clear', 'indic', 'use', 'product', 'back', 'cover', 'not', 'snap', 'tight', 'bodi', 'leav', 'back', 'cover', 'loos', 'flimsi', 'bodi'], ['super', 'fast', 'deliveri', 'order', 'friday', 'receiv', 'sunday', 'morn', 'came', 'origin', 'packag', 'previous', 'note', 'gotten', 'wet', 'stop', 'work', 'provid', 'metro', 'pcs', 'went', 'store', 'switch', 'servic', 'new', 'note', 'charg', 'took', 'old', 'sim', 'card', 'dri', 'write', 'review', 'new', 'phone', 'i', 'satisfi', 'purchas'], ['aw', 'sent', 'devic', 'blown', 'batteri', 'screen', 'not', 'even', 'turn', 'get', 'ur', 'crap', 'togeth', 'extrem', 'disappoint'], ['deliv', 'packag', 'one', 'day', 'ahead', 'someth', 'good', 'howev', 'bad', 'screen', 'resolut', 'camera', 'specif', 'indic', 'camera', 'screen', 'not', 'true', 'user', 'samsung', 'year', 'famili', 'know', 'much', 'resolut', 'samsung', 'note', 'also', 'samsung', 'note', 'resolut', 'camera', 'phone', 'even', 'worst', 'note', 'look', 'okay', 'issu', 'bad', 'obvious', 'someth', 'manipul', 'screen', 'littl', 'scratch', 'rear', 'camera', 'screen', 'littl', 'bit', 'trace', 'edg', 'open', 'bought', 'phone', 'high', 'rate', 'seller', 'replac', 'phone', 'issu', 'like', 'give', 'high', 'rate', 'provid', 'good', 'custom', 'satisfact'], ['batteri', 'problem'], ['love', 'galaxi', 'note', 'purchas', 'j', 'mobil', 'llc', 'phone', 'arriv', 'perfect', 'condit', 'definit', 'buy', 'phone', 'hand', 'best', 'ever', 'love', 'love', 'love', 'galaxi', 'note'], ['work', 'perfect', 'far', 'sinc', 'not', 'bought', 'provid', 'intern', 'version', 'access', 'fine'], ['phone', 'basic', 'box', 'state', 'brand', 'new', 'coupl', 'month', 'use', 'visual', 'perfect', 'condit', 'not', 'one', 'scratch', 'pretti', 'careful', 'carri', 'alway', 'leather', 'case', 'work', 'fine', 'love', 'except', 'batteri', 'durat', 'around', 'hour', 'last', 'night', 'left', 'phone', 'charg', 'usual', 'morn', 'cell', 'phone', 'hot', 'celsius', 'batteri', 'drain', 'less', 'coupl', 'hour', 'even', 'without', 'activ', 'problem', 'use', 'around', 'hour', 'notic', 'drain', 'fast', 'even', 'phone', 'turn', 'sometim', 'not', 'turn', 'unless', 'start', 'charg', 'even', 'though', 'batteri', 'charg', 'went', 'local', 'samsung', 'servic', 'center', 'help', 'check', 'charger', 'batteri', 'phone', 'said', 'motherboard', 'short', 'circuit', 'could', 'not', 'repair', 'warranti', 'region', 'ecuador', 'could', 'not', 'order', 'spare', 'system', 'imei', 'not', 'databas', 'region', 'imei', 'uae', 'basic', 'not', 'permit', 'work', 'model', 'region', 'could', 'not', 'recommend', 'anybodi', 'buy', 'phone'], ['satisfi', 'custom', 'purchas', 'differ', 'seller', 'phone', 'last', 'got', 'phone', 'true', 'advertis', 'phone', 'realli', 'new'], ['confirm', 'english', 'voicemail', 'messag', 'shown', 'none', 'gish', 'languag', 'notif', 'think', 'fix', 'go', 'set', 'switch', 'devic', 'languag', 'back', 'forth', 'restart', 'chang', 'think', 'let', 'function', 'miss', 'devic', 'pakistan', 'beauti', 'batteri', 'alright', 'need', 'lot', 'phone', 'batteri', 'goe', 'everi', 'minut', 'not', 'bad', 'work', 'fine', 'tmobil', 'need', 'set', 'apn', 'set', 'search', 'use', 'pen', 'lot', 'almost', 'lost', 'though'], ['model', 'receiv', 'ask', 'not', 'avail', 'spanish', 'languag', 'happen'], ['fast', 'deliveri', 'happi', 'wen', 'show', 'earli', 'great', 'phone', 'work', 'perfect', 'problem', 'great', 'seller', 'recommend', 'friend', 'att'], ['total', 'best'], ['great', 'phone', 'great', 'screen', 'camera', 'wish', 'better', 'fingerprint', 'scanner'], ['plenti', 'review', 'phone', 'outsid', 'note', 'wife', 'happi', 'note', 'i', 'go', 'comment', 'vendor', 'chose', 'phone', 'not', 'ship', 'washington', 'came', 'kowloon', 'big', 'deal', 'love', 'kowloon', 'phone', 'ship', 'via', 'fedex', 'air', 'receiv', 'within', 'five', 'vendor', 'state', 'phone', 'new', 'origin', 'box', 'certain', 'one', 'end', 'seal', 'slit', 'open', 'seal', 'intact', 'therebi', 'act', 'like', 'hing', 'box', 'pack', 'film', 'still', 'intact', 'front', 'back', 'phone', 'sign', 'accessori', 'remov', 'includ', 'batteri', 'still', 'seal', 'bag', 'phone', 'box', 'well', 'protect', 'bubbl', 'wrap', 'sinc', 'nomin', 'intend', 'europ', 'usa', 'adapt', 'ac', 'charger', 'includ', 'ship', 'box', 'extern', 'power', 'usb', 'hub', 'realli', 'not', 'need', 'samsung', 'charger', 'charg', 'phone', 'intent', 'purpos', 'phone', 'new', 'box', 'perfect', 'condit', 'complet', 'unlock', 'quick', 'charg', 'insert', 'xdsc', 'transfer', 'micro', 'sim', 'card', 'phone', 'came', 'life', 'recogn', 'carrier', 'thus', 'readi', 'servic', 'almost', 'like', 'buy', 'phone', 'singapor', 'purchas', 'old', 'phone', 'must', 'unlock', 'order', 'research', 'indic', 'phone', 'contain', 'band', 'necessari', 'us', 'either', 'mobil', 'not', 'data', 'plan', 'current', 'carrier', 'pure', 'talk', 'thought', 'fulli', 'capabl', 'phone', 'ever', 'find', 'practic', 'switch', 'reli', 'wifi', 'home', 'free', 'wifi', 'airport', 'data', 'keep', 'mind', 'free', 'public', 'wifi', 'general', 'anem', 'mayb', 'improv', 'time', 'meantim', 'data', 'perform', 'phone', 'use', 'robust', 'home', 'wifi', 'not', 'wife', 'happi', 'samsung', 'note', 'heartili', 'endors', 'particular', 'vendor'], ['great', 'phone', 'would', 'not', 'model', 'nevertheless', 'flaw', 'like', 'super', 'soft', 'aluminum', 'bazel', 'easili', 'get', 'scratch', 'even', 'phone', 'case', 'heat', 'bit', 'usual', 'touch', 'wizz', 'definit', 'not', 'best', 'interfac', 'hand', 'get', 'memori', 'storag', 'expans', 'swap', 'batteri', 'stylus', 'come', 'handi', 'everi', 'multitask', 'anoth', 'featur', 'make', 'life', 'much', 'not', 'go', 'releas', 'new', 'version', 'touch', 'wizz', 'note', 'kill', 'sale', 'note', 'build', 'new', 'note', 'model', 'remov', 'batteri', 'finger', 'cross', 'note', 'remain', 'best', 'phablet', 'option', 'market'], ['product', 'arriv', 'time', 'manner', 'met', 'descript', 'advertis', 'satisfi'], ['good'], ['far', 'good', 'absolut', 'love', 'complet', 'unlock', 'came', 'promis', 'light', 'today', 'third', 'day', 'hold', 'charg', 'easi', 'oper', 'love', 'samsung', 'issu', 'seller', 'jnform', 'phkne', 'work', 'micro', 'sim', 'card', 'go', 'chang', 'sim', 'card', 'need', 'transfer', 'contact', 'phone', 'star'], ['cell', 'fake'], ['month', 'sinc', 'use', 'got', 'problem', 'realli', 'best', 'smartphon', 'avail', 'market', 'right', 'good', 'batteri', 'life', 'awesom', 'camera', 'featur', 'ad', 'pen', 'make', 'worth', 'price'], ['love', 'wish', 'came', 'manual'], ['perfect'], ['problem', 'far'], ['excel'], ['save', 'hundr', 'buy', 'amazon', 'rather', 'store', 'first', 'mobil', 'worri', 'put', 'sim', 'anoth', 'phone', 'data', 'anoth', 'sim', 'manual', 'enter', 'access', 'point', 'network'], ['like', 'good', 'phone'], ['love', 'phone'], ['excel'], ['product', 'nice', 'thank', 'write', 'problem'], ['item', 'work', 'perfect', 'describ', 'issu', 'plug', 'came', 'packag', 'differ', 'region', 'not', 'work', 'us', 'separ', 'charger', 'not', 'issu', 'would', 'recommend', 'buy', 'look', 'new', 'phone'], ['work', 'great', 'far', 'complaint'], ['great', 'phone'], ['excel', 'phone'], ['nice'], ['awesom'], ['great', 'phone', 'everyth', 'mention', 'go', 'come', 'phone', 'perfect', 'condit'], ['i', 'phone', 'day', 'work', 'great', 'issu', 'includ', 'charger', 'european', 'come', 'flimsi', 'us', 'adapt', 'attach', 'loos', 'make', 'difficult', 'plug', 'wall', 'recptacl', 'tri', 'support', 'wait', 'charger', 'i', 'attach', 'photo', 'illustr'], ['unfortun', 'bought', 'third', 'parti', 'seller', 'never', 'sent', 'review', 'anoth', 'galaxi', 'note', 'purchas', 'phone', 'awesom', 'regret', 'said', 'love', 'samsung', 'better', 'screen', 'note', 'unbeat'], ['excel'], ['i', 'lose', 'sleep', 'phone', 'i', 'not', 'techi', 'person', 'smooth', 'find', 'use', 'pen', 'lot', 'i', 'happi', 'bought', 'phone'], ['love', 'note'], ['awesom'], ['i', 'brazilian', 'everyth', 'work', 'sim', 'card', 'internet', 'aweosm', 'phone'], ['product', 'live', 'good', 'invest'], ['phone', 'intern', 'version', 'use', 'america', 'realli', 'enjoy', 'phone', 'come', 'free', 'carrier', 'bloatwar', 'unlock', 'allow', 'go', 'gsm', 'carrier', 'sim', 'card', 'great', 'phone', 'good', 'altern', 'pay', 'month', 'payment', 'carrier', 'use', 'north', 'america', 'phone', 'log', 'not', 'lte'], ['perfect', 'state', 'thank'], ['samsung', 'note', 'edg', 'say', 'love', 'damn', 'phone', 'easi', 'use', 'light', 'camera', 'outstand', 'ill', 'buy', 'samsung', 'note', 'coupl', 'month', 'find', 'one', 'good', 'price'], ['best', 'cellphon', 'ever', 'total', 'love'], ['love', 'phone', 'hold', 'charg', 'day', 'like', 'larg', 'size', 'download', 'kindl', 'make', 'read', 'easi'], ['good', 'bought', 'one', 'two', 'yrs', 'ago', 'drop', 'water', 'last', 'month', 'bought', 'anoth', 'one', 'work', 'great', 'stay', 'cool', 'batteri', 'last', 'long', 'time'], ['absolut', 'love', 'phone', 'i', 'glad', 'got', 'note', 'note', 'nano', 'sim', 'sd', 'card', 'slot', 'would', 'not', 'cut', 'go', 'get', 'better', 'get', 'batteri'], ['recommend', 'phone', 'best'], ['great', 'packag', 'item', 'describ', 'happi'], ['great', 'phone', 'wow', 'intern', 'not', 'work', 'lte', 'network'], ['excel', 'condit', 'happi', 'purchas'], ['phone', 'good', 'shape', 'except', 'screen', 'perman', 'imag', 'burn', 'screen', 'imag', 'visibl', 'white', 'screen'], ['devic', 'not', 'bad', 'buy', 'consid', 'fact', 'not', 'brand', 'new', 'problem', 'batteri', 'drain', 'quock', 'howev', 'found', 'note', 'particular', 'problem', 'like', 'brand', 'new', 'phone', 'love'], ['i', 'pleas', 'purchas', 'phone', 'arriv', 'perfect', 'condit', 'good', 'new', 'phone', 'batteri', 'function', 'like', 'updat', 'phone', 'latest', 'android', 'updat', 'abl', 'updat', 'phone', 'sim', 'card', 'insert', 'prepaid', 'account', 'connect', 'home', 'network', 'select', 'updat', 'phone', 'work', 'great', 'still', 'unlock', 'updat', 'fyith', 'phone', 'come', 'standard', 'charger', 'not', 'fast', 'phone', 'support', 'fast', 'charg', 'charger', 'bought', 'amazon', 'work', 'fine', 'heat', 'issu', 'bought', 'amazon', 'oem', 'samsung', 'adapt', 'fast', 'charg', 'charger', 'samsung', 'galaxi'], ['phone', 'freez', 'constant', 'not', 'load', 'page', 'time', 'week', 'i', 'return'], ['phone', 'work', 'said', 'not', 'elig', 'return'], ['product', 'came', 'time', 'phone', 'work', 'speaker', 'not', 'not', 'seem', 'work', 'proper', 'sound', 'system', 'phone', 'poor', 'qualiti'], ['phone', 'beauti', 'condit', 'scratch', 'screen', 'tiniest', 'scrape', 'back', 'normal', 'cover', 'case', 'fine', 'thank', 'speed', 'great', 'condit', 'much', 'worth'], ['phone', 'not', 'unlock', 'return', 'immedi'], ['product', 'not', 'certifi', 'refurbish', 'receiv', 'phone', 'bracket', 'hold', 'batteri', 'broken', 'phone', 'not', 'charg', 'fast', 'charger', 'best', 'phone', 'appear', 'wipe', 'factori', 'reset', 'would', 'definit', 'not', 'purchas', 'compani'], ['nice', 'phone', 'great', 'condit', 'pen', 'includ', 'would', 'never', 'use', 'anyway'], ['far', 'good', 'like', 'new', 'one', 'hundr', 'buck', 'cheaper'], ['purchas', 'refurbish', 'samsung', 'note', 'dealfish', 'phone', 'receiv', 'look', 'brand', 'new', 'not', 'one', 'scratch', 'look', 'perfect', 'coupl', 'day', 'notic', 'batteri', 'would', 'go', 'complet', 'dead', 'around', 'contact', 'dealfish', 'immedi', 'gave', 'price', 'adjust', 'purchas', 'anker', 'brand', 'batteri', 'awesom', 'i', 'love', 'phone', 'opinion', 'top', 'line', 'learn', 'curv', 'smart', 'phone', 'learn', 'way', 'around', 'start', 'use', 'featur', 'love', 'samsung', 'went', 'top', 'one'], ['mother', 'love'], ['love', 'note'], ['expect', 'recommend'], ['screen', 'crack', 'first', 'accident', 'drop', 'great', 'phone', 'pertain', 'featur', 'intern', 'smart', 'stylus', 'truli', 'uniqu', 'lot', 'potenti', 'creativ', 'camera', 'creat', 'wonder', 'photo', 'surpris', 'could', 'not', 'endur', 'singl', 'accident', 'drop', 'corner', 'frame', 'not', 'screen', 'result', 'screen', 'glass', 'crack', 'happen', 'first', 'day', 'big', 'disappoint', 'contact', 'samsung', 'said', 'not', 'take', 'phone', 'repair', 'even', 'will', 'pay', 'whatev', 'take', 'intern', 'version', 'still', 'recommend', 'phone', 'would', 'rate', 'star', 'intern', 'featur', 'stylus', 'camera', 'product', 'two', 'star', 'falsli', 'advertis', 'corn', 'gorilla', 'glass', 'hard', 'may', 'phone', 'bad', 'batch', 'recommend', 'get', 'phone', 'care', 'not', 'drop', 'even', 'protect', 'screen', 'crack', 'screen', 'photo'], ['good'], ['nice', 'thk', 'guy'], ['like', 'phone', 'okay', 'i', 'disappoint', 'screen', 'display', 'notic', 'purpl', 'hue', 'top', 'half', 'screen', 'realli', 'see', 'white', 'background', 'not', 'notic', 'first', 'got', 'phone', 'soon', 'download', 'kindl', 'open', 'book', 'obvious', 'distract', 'unfortun', 'late', 'return', 'not', 'stand', 'read', 'book', 'phone', 'disappoint', 'make', 'sure', 'check', 'soon', 'get', 'stuck', 'defect', 'phone', 'like'], ['love', 'note'], ['awesom', 'spec', 'great', 'phone', 'recommend', 'anyon', 'want', 'larger', 'phone', 'also', 'great', 'seller', 'ship', 'free', 'got', 'fast', 'amazon', 'prime'], ['seller', 'descript', 'describ', 'like', 'new', 'prove', 'true', 'open', 'box', 'everyth', 'unopen', 'except', 'batteri', 'need', 'insert', 'phone', 'power', 'everyth', 'wrap', 'unopen', 'origin', 'packag', 'phone', 'two', 'plastic', 'protector', 'one', 'front', 'one', 'back', 'found', 'phone', 'zero', 'scratch', 'dent', 'look', 'unus', 'whatsoev', 'nitpick', 'problem', 'would', 'box', 'phone', 'speck', 'dirt', 'everyth', 'packag', 'great', 'product', 'well', 'protect', 'bubbl', 'wrap', 'foam', 'piec', 'box', 'larger', 'need', 'protect', 'fill', 'high', 'recommend', 'product', 'price', 'reason', 'someth', 'use', 'minut', 'seller', 'look', 'brand', 'new'], ['excelent'], ['love', 'phone', 'wish', 'got', 'sooner'], ['good', 'size', 'watch', 'youtub', 'video', 'play', 'game', 'surf', 'web', 'would', 'love', 'buy', 'anoth', 'could', 'get', 'discount'], ['excel', 'fit', 'color', 'sexi'], ['excel', 'phone', 'still', 'one', 'best', 'phone', 'market', 'right', 'great', 'price', 'worth', 'everi', 'penni'], ['phone', 'week', 'still', 'get', 'know', 'i', 'ever', 'known', 'iphon', 'find', 'read', 'manual', 'give', 'inform', 'best', 'util', 'phone', 'featur', 'like', 'size', 'although', 'still', 'fumbl', 'tri', 'hold', 'i', 'hope', 'get', 'use', 'size', 'not', 'get', 'use', 'bad', 'placement', 'button', 'direct', 'across', 'phone', 'volum', 'button', 'top', 'phone', 'not', 'good', 'place', 'alway', 'turn', 'phone', 'adjust', 'volum', 'speak', 'volum', 'adjust', 'not', 'know', 'differ', 'volum', 'adjust', 'nice', 'ad', 'stress', 'level', 'not', 'increas', 'volum', 'ringer', 'also', 'media', 'notif', 'system', 'whatev', 'mean', 'still', 'read', 'manual', 'main', 'reason', 'got', 'phone', 'amount', 'memori', 'could', 'add', 'fact', 'could', 'add', 'anoth', 'batteri', 'would', 'not', 'buy', 'whole', 'new', 'phone', 'batteri', 'wore', 'use', 'phablet', 'busi', 'take', 'field', 'take', 'pictur', 'record', 'note', 'need', 'quick', 'access', 'internet', 'road', 'thing', 'miss', 'iphon', 'task', 'list', 'abil', 'place', 'app', 'folder', 'clean', 'look', 'screen', 'perhap', 'i', 'not', 'part', 'manual', 'yet', 'made', 'switch', 'appl', 'android', 'comput', 'pc', 'not', 'mac', 'itun', 'never', 'work', 'right', 'pc', 'tire', 'worri', 'phone', 'system', 'not', 'abl', 'transfer', 'music', 'pictur', 'file', 'easili', 'comput', 'phone', 'far', 'breez', 'new', 'android', 'someon', 'would', 'make', 'bluetooth', 'headset', 'would', 'fit', 'play', 'audio', 'file', 'would', 'happi', 'worker', 'bee', 'phone', 'includ', 'earphon', 'short', 'wire', 'amazon', 'seller', 'yet', 'respond', 'request', 'return', 'exchang'], ['love'], ['work', 'great', 'love', 'new', 'phone', 'upgrad', 'note', 'mani', 'restrict', 'caribbean', 'problem', 'upgrad', 'sum', 'card'], ['good', 'phone', 'system', 'product', 'one', 'top', 'ten', 'worldwid'], ['love', 'phone', 'alreadi', 'carrier', 'brand', 'note', 'love', 'pink', 'carrier', 'not', 'went', 'know', 'not', 'honest', 'not', 'notic', 'speed', 'test', 'carrier', 'brand', 'note', 'perform', 'make', 'wonder', 'carrier', 'realli', 'anyway', 'plenti', 'fast', 'enough', 'work', 'well', 'notic', 'differ', 'ever', 'carrier', 'brand', 'best', 'part', 'pink'], ['phone', 'offer', 'great', 'experi', 'far'], ['galaxi', 'note', 'note', 'beauti', 'note', 'posit', 'say', 'fabul', 'phone', 'slimlin', 'though', 'well', 'built', 'fast', 'sharp', 'imag', 'chang', 'write', 'recognit', 'great', 'pressur', 'sensit', 'interfac', 'write', 'great', 'improv', 'like', 'use', 'abil', 'last', 'phone', 'still', 'use', 'one', 'doubl', 'tap', 'home', 'button', 'speak', 'phone', 'ask', 'question', 'get', 'weather', 'set', 'alarm', 'timer', 'get', 'convers', 'thing', 'pretti', 'nifti', 'breez', 'note', 'use', 'note', 'use', 'laptop', 'need', 'bulki', 'tablet', 'incred', 'clear', 'sharp', 'screen', 'phone', 'like'], ['love', 'thank', 'lot'], ['wow', 'i', 'arriv', 'first', 'ever', 'smart', 'phone', 'i', 'hesit', 'technolog', 'devic', 'especi', 'social', 'media', 'get', 'info', 'take', 'pictur', 'video', 'super', 'great', 'much', 'fun', 'real', 'intuit'], ['excel'], ['horribl', 'not', 'real', 'note'], ['brazen', 'like', 'merced', 'benz', 'without', 'wheel'], ['fast', 'beauti'], ['amaz'], ['awesom', 'product', 'bar', 'none'], ['great', 'rug', 'phone', 'stylish', 'video', 'photo', 'qualiti', 'die', 'great', 'phone'], ['great', 'phone', 'deliveri'], ['love', 'phone', 'way', 'expect'], ['love', 'phone'], ['amaz', 'phone', 'get', 'exact', 'seller', 'say', 'i', 'happi', 'purchas'], ['deliveri', 'time', 'excel'], ['satisfi'], ['great'], ['amaz', 'phone', 'love', 'much'], ['love', 'like', 'ur', 'person', 'lil', 'laptop'], ['perfect'], ['love', 'phone', 'best', 'phone', 'i', 'ever', 'complaint', 'thus', 'far', 'phone'], ['awesom', 'work', 'perfect'], ['perfect', 'happi'], ['amaz', 'devic', 'everyth', 'need', 'look', 'forward', 'note'], ['good', 'phone', 'everyth', 'work'], ['purchas', 'someon', 'els', 'complaint'], ['phone', 'arriv', 'time', 'absolut', 'perfect', 'condit', 'order', 'intern', 'version', 'simpli', 'not', 'carrier', 'bloat', 'ware', 'phone', 'arriv', 'stock', 'awesom', 'devic', 'nothingvto', 'seller', 'phone', 'batteri', 'averag', 'signal', 'strength', 'par', 'i', 'guess', 'metal', 'case', 'otherwis', 'awesom'], ['expect'], ['everyth', 'work', 'great', 'phone'], ['upgrad', 'note', 'note', 'beauti', 'use', 'color', 'white', 'purchas', 'gold', 'not', 'techi', 'person', 'not', 'go', 'much', 'detail', 'negat', 'thing', 'say', 'note', 'obvious', 'lack', 'expand', 'storag', 'remov', 'batteri', 'samsung', 'announc', 'bring', 'back', 'howev', 'okay', 'storag', 'amount', 'littl', 'nervous', 'purchas', 'phone', 'amazon', 'especi', 'intern', 'version', 'not', 'sure', 'differ', 'not', 'notic', 'anyth', 'everyth', 'arriv', 'safe', 'time', 'phone', 'arriv', 'origin', 'samsung', 'box', 'samsung', 'headphon', 'uk', 'style', 'samsung', 'wall', 'adapt', 'concern', 'box', 'seller', 'suppli', 'adapt', 'awesom', 'phone', 'still', 'recogn', 'fast', 'travel', 'charger', 'even', 'adapt', 'use', 'tmobil', 'note', 'straighttalk', 'micro', 'sim', 'note', 'nano', 'size', 'purchas', 'new', 'one', 'transfer', 'number', 'easi', 'process', 'last', 'hour', 'normal', 'note', 'lte', 'capabl', 'panick', 'first', 'said', 'status', 'bar', 'cosmet', 'lte', 'say', 'phone', 'fast', 'without', 'love', 'galaxi', 'note', 'model', 'pen', 'note', 'pull', 'pen', 'model', 'push', 'get', 'littl', 'new', 'not', 'someth', 'not', 'get', 'use', 'function', 'pen', 'excel', 'also', 'look', 'realli', 'lag', 'note', 'everyth', 'process', 'smooth', 'big', 'fan', 'samsung', 'amaz', 'thing', 'devic', 'colleg', 'student', 'help', 'daili', 'task', 'also', 'love', 'stream', 'video', 'music', 'tell', 'note', 'screen', 'look', 'way', 'better', 'note', 'note', 'note', 'great', 'phone', 'chanc', 'upgrad', 'know', 'review', 'comparison', 'note', 'tri', 'give', 'much', 'detail', 'possibl', 'comment', 'question'], ['everyth', 'good', 'like'], ['everyth', 'good', 'like'], ['good', 'product', 'purchas', 'pleas', 'note', 'devic', 'not', 'support', 'samsun', 'pay'], ['excel'], ['phone', 'not', 'work', 'intern', 'sim', 'card', 'send', 'back'], ['alway', 'user', 'appl', 'think', 'note', 'seri', 'much', 'better', 'iphon', 'true', 'love', 'product'], ['love', 'phone', 'super', 'happi'], ['could', 'not', 'work', 'one', 'post', 'work', 'call', 'seller', 'whole', 'month', 'not', 'get', 'respons', 'problem', 'need', 'help'], ['phone', 'audio', 'port', 'not', 'work', 'good', 'month', 'ignor', 'phone', 'bought', 'less', 'month', 'ago', 'speaker', 'start', 'problem', 'screen', 'come', 'call', 'samsung', 'said', 'sinc', 'seller', 'not', 'provid', 'proof', 'purchas', 'imei', 'number', 'not', 'servic'], ['love'], ['sleek', 'big', 'greater', 'experi', 'move', 'window', 'phone'], ['great', 'phone', 'love', 'love', 'love'], ['great', 'phone', 'get', 'updat', 'much', 'faster', 'us', 'base', 'phone', 'unfortun', 'samsung', 'pay', 'not', 'work', 'big', 'loss', 'note', 'best', 'adroid', 'phone', 'histori', 'abil', 'take', 'note', 'etc', 'wonder', 'long', 'live'], ['long', 'time', 'note', 'fan', 'not', 'disappoint', 'otg', 'storag', 'not', 'sd', 'card', 'option', 'not', 'bother', 'much', 'thought', 'would', 'phone', 'look', 'feel', 'qualiti', 'quick', 'power', 'best', 'featur', 'super', 'snappi', 'camera', 'holi', 'cow', 'spigen', 'transpar', 'case', 'hunt', 'silver', 'color', 'worth', 'best', 'phone', 'ever', 'note', 'hah', 'particular', 'model', 'india', 'mean', 'slight', 'differ', 'band', 'might', 'need', 'i', 'tmobil', 'everyth', 'work', 'great', 'except', 'wifi', 'call', 'big', 'bummer', 'option', 'like', 'whatsapp'], ['great', 'product'], ['alway', 'user', 'appl', 'think', 'note', 'seri', 'much', 'better', 'iphon', 'true', 'love', 'product'], ['nice', 'case'], ['simpli', 'great', 'phone', 'materi', 'use', 'give', 'solid', 'good', 'qualiti', 'feel', 'dual', 'sim', 'function', 'easi', 'use', 'add', 'alreadi', 'good', 'hardwar', 'softwar', 'camera', 'easi', 'use', 'produc', 'beauti', 'pictur'], ['box', 'phone', 'touchscreen', 'never', 'work', 'use', 'pen', 'work', 'screen', 'email', 'seller', 'respons', 'date', 'not', 'buy', 'phone'], ['lost', 'star', 'top', 'stylus', 'pop', 'love', 'phone', 'without', 'stylus', 'feel', 'slight', 'handicap'], ['excel', 'phone', 'live', 'dominican', 'republ', 'work', 'well', 'two', 'main', 'oper', 'orang', 'claro'], ['love', 'phone'], ['good'], ['phone', 'arriv', 'time', 'exact', 'describ', 'origin', 'authent', 'samsung', 'new', 'box', 'without', 'flaw'], ['wife', 'could', 'not', 'like', 'great'], ['nice'], ['awesom', 'phone', 'exceed', 'expect', 'work', 'fine', 'total', 'satisfi'], ['fantast', 'dual', 'sim', 'phone', 'wish', 'camera', 'better', 'edg', 'pictur', 'qualiti', 'much', 'better', 'like', 'night', 'day', 'liter', 'not', 'understand', 'new', 'samsung', 'product'], ['product', 'arriv', 'time', 'look', 'great', 'charger', 'name', 'brand', 'phone', 'suppos', 'come', 'screen', 'protector', 'not', 'includ', 'give', 'star', 'rate', 'later', 'use', 'phone'], ['not', 'relat', 'phone', 'samsung', 'note', 'seem', 'fine', 'might', 'bought', 'amazon', 'refurbish', 'return', 'phone', 'bought', 'edg', 'cellular', 'keep', 'drop', 'mute', 'call', 'random', 'i', 'order', 'new', 'one', 'compani', 'hope', 'fluke'], ['i', 'love', 'phone', 'i', 'almost', 'month', 'i', 'use', 'straight', 'talk', 'wireless', 'great', 'featur', 'arriv', 'perfect', 'condit', 'hesit', 'buy', 'expens', 'item', 'use', 'perfect', 'thank'], ['great', 'phone'], ['unsatisfi', 'product', 'go', 'led', 'believ', 'phone', 'would', 'free', 'scuff', 'scrach', 'paid', 'upon', 'phone', 'ariv', 'immedi', 'notic', 'scratch', 'screen', 'back', 'note', 'fals', 'advertis', 'finest', 'recommend', 'spend', 'money', 'elsewher'], ['love', 'phone', 'not', 'work', 'proper', 'updat', 'fail', 'not', 'sync', 'gear', 'fit', 'returnung'], ['phone', 'could', 'not', 'activ'], ['one', 'best', 'phone', 'batteri', 'life', 'main', 'attract', 'full', 'charg', 'go', 'day', 'screen', 'also', 'clear'], ['pretti'], ['love', 'not', 'buy', 'one'], ['perfect', 'good', 'condit', 'describ'], ['love', 'phone', 'issu', 'order', 'receiv', 'att', 'phone', 'perfect'], ['excel', 'phone', 'far', 'i', 'happi', 'replac', 'galaxi', 'note'], ['great', 'phone', 'version', 'previous', 'thought', 'tri', 'one', 'x', 'end', 'order', 'yesterday', 'direct', 'amazon', 'order', 'around', 'yesterday', 'got', 'today', 'got', 'overnight', 'ship', 'great', 'phone', 'fast', 'batteri', 'life', 'cours', 'version', 'come', 'realli', 'great', 'grip', 'intern', 'phone', 'amazon', 'must', 'thrown', 'us', 'adapt', 'know', 'i', 'usa', 'want', 'intern', 'unbox'], ['order', 'unlock', 'version', 'phone', 'abesolu', 'love', 'phone', 'pleas', 'servic', 'reciev', 'custom', 'servic', 'seller', 'far', 'complaint', 'honesli', 'not', 'see', 'form', 'phone', 'heavehn', 'sent', 'jesus', 'use', 'phone', 'would', 'love', 'everyth', 'camera', 'not', 'think', 'one', 'thing', 'not', 'awesom', 'screen', 'crazi', 'beauti', 'speed', 'phone', 'super', 'fast', 'actual', 'area', 'basic', 'servic', 'kick', 'basic', 'servic', 'phone', 'still', 'manag', 'move', 'way', 'faster', 'phone', 'sold', 'tri', 'figur', 'live', 'long', 'without', 'ever', 'chang', 'thank', 'samsung', 'hit', 'park'], ['far', 'good', 'well', 'complaint', 'great', 'phone', 'like', 'capabl', 'fast', 'work', 'enjoy'], ['love', 'size', 'internet', 'use', 'not', 'need', 'use', 'notepad', 'got', 'one', 'packag', 'deal', 'internet', 'connect', 'fast', 'camera', 'well', 'okay', 'main', 'interest', 'phone', 'notepad', 'camera', 'internet', 'use', 'well', 'go', 'love'], ['overal', 'great', 'phone', 'not', 'new', 'note', 'get', 'job', 'done', 'softwar', 'updat', 'made', 'like', 'note', 'overal', 'happi', 'debic'], ['nice'], [], ['love'], ['not', 'wast', 'time', 'good', 'bewar', 'seller', 'hes', 'good'], ['get', 'job', 'done', 'not', 'impress'], ['ok'], ['not', 'includ', 'note', 'pen', 'disappoint'], ['look', 'everyth', 'love', 'size', 'iti', 'recommend', 'anyon', 'need', 'big', 'screen', 'phonethank', 'amazon'], ['suck', 'wast', 'money', 'not', 'buy', 'bluedot', 'ever', 'never', 'wish', 'could', 'give', 'star', 'half', 'star'], ['order', 'phone', 'wife', 'came', 'fast', 'complet', 'great', 'phone', 'great', 'price', 'week', 'drope', 'broke', 'len', 'plan', 'buy', 'anoth', 'one'], ['bought', 'phone', 'two', 'year', 'ago', 'worst', 'ever', 'spent', 'phone', 'coupl', 'day', 'charg', 'port', 'start', 'go', 'would', 'not', 'hold', 'charg', 'would', 'shut', 'worst', 'phone', 'ever', 'own'], ['phone', 'problem', 'softwar', 'not', 'work', 'proper'], ['samsung', 'galaxi', 'note', 'arriv', 'time', 'promis', 'unlock', 'exact', 'describ', 'love', 'galaxi', 'note', 'second', 'bought'], ['love', 'galaxi', 'note', 'replac', 'laptop', 'smaller', 'tablet', 'easili', 'use', 'communic', 'need'], ['receiv', 'defect', 'devic', 'stope', 'charg', 'first', 'week', 'first', 'would', 'show', 'charg', 'hour', 'charg', 'would', 'charg', 'stop', 'charg', 'email', 'vendor', 'repli', 'day', 'took', 'anoth', 'two', 'day', 'give', 'email', 'return', 'devic', 'return'], ['got', 'present', 'son', 'happi'], ['learn', 'use', 'let', 'know', 'like', 'arriv', 'quick', 'work', 'fine'], ['excel'], ['phone', 'work', 'one', 'month', 'system', 'crash'], ['phone', 'not', 'bougth', 'color', 'blu', 'phone', 'black'], ['good', 'still', 'kick'], ['phone', 'suck'], ['excel', 'cell'], ['got', 'work', 'excel', 'choic'], ['new', 'condit', 'use', 'happi', 'purchas', 'would', 'recommend', 'product', 'anyon'], ['simpli', 'love', 'phone', 'compani', 'rock', 'arriv', 'great', 'servic', 'great', 'packag', 'brand', 'new', 'problem', 'high', 'recommend'], ['love', 'phone', 'easi', 'problem', 'awsom', 'hate', 'tri', 'put', 'screen', 'protector'], ['great', 'phone', 'unfortunatley', 'not', 'charg', 'batteri', 'phone', 'charg', 'port', 'not', 'work', 'separ', 'charger', 'wish', 'bought', 'elsewher'], ['not', 'like', 'pack', 'delic', 'not', 'like', 'not', 'much', 'inform', 'product', 'trust', 'amazon', 'approv', 'sale', 'thought', 'would', 'get', 'charger', 'not', 'say', 'unlock', 'not', 'get', 'unlock', 'key', 'not', 'specifi', 'scratch', 'bottom'], ['one', 'day', 'turn', 'super', 'slow', 'ppi', 'low', 'feel', 'cheap', 'come', 'earli', 'hate', 'bottom', 'lay'], ['purchas', 'wife', 'great', 'thing', 'problem', 'batteri', 'batteri', 'not', 'last', 'long', 'charg', 'everi', 'night', 'great', 'phone', 'though', 'plan', 'get', 'anoth'], ['wors', 'thing', 'done', 'money', 'last', 'year', 'wors', 'phone', 'seen', 'life', 'start', 'freez', 'first', 'day', 'thought', 'noth', 'mayb', 'excit', 'month', 'trash', 'call', 'phone', 'freez', 'time', 'day', 'restart', 'everi', 'time', 'tri', 'make', 'call', 'use', 'not', 'even', 'buy', 'wors', 'enemi', 'world', 'like', 'run', 'scissor', 'money', 'cal', 'confirm'], ['want', 'good', 'phone', 'use', 'gsm', 'network', 'especi', 'straight', 'talk', 'att', 'would', 'strong', 'recommend', 'buy', 'phone'], ['nice'], ['pretti', 'good', 'phone', 'price', 'wonder', 'screen', 'even', 'better', 'iphon'], ['buy', 'one', 'phone', 'not', 'work', 'countri', 'angola', 'could', 'help', 'way'], ['first', 'smart', 'phone', 'pleas', 'way', 'upgrad', 'phone', 'usag', 'much', 'use', 'much', 'call', 'someon', 'laptop', 'tablet', 'get', 'lot', 'less', 'use', 'day'], ['say', 'excel', 'condit', 'well', 'protect', 'realli', 'love', 'amaz', 'discov', 'someth', 'new', 'differ', 'everi', 'day'], ['bien'], ['bought', 'phone', 'last', 'decemb', 'begin', 'work', 'great', 'realli', 'love', 'phone', 'agre', 'posit', 'review', 'phone', 'work', 'five', 'month', 'use', 'phone', 'sudden', 'becam', 'dead', 'specif', 'phone', 'never', 'turn', 'got', 'charg', 'also', 'tri', 'factori', 'reset', 'not', 'wast', 'hour', 'research', 'internet', 'best', 'inform', 'guess', 'relat', 'sudden', 'death', 'syndrom', 'search', 'googl', 'interest', 'contact', 'samsung', 'usa', 'refus', 'repair', 'phone', 'sinc', 'intern', 'suggest', 'contact', 'uk', 'servic', 'contact', 'samsung', 'repair', 'servic', 'uk', 'took', 'long', 'iter', 'email', 'take', 'month', 'due', 'dysfunct', 'system', 'afterward', 'final', 'receiv', 'respons', 'attach', 'phone', 'not', 'repair', 'eu', 'sinc', 'warranti', 'arab', 'emir', 'would', 'not', 'bought', 'phone', 'spend', 'knew', 'warranti', 'base', 'uae', 'seller', 'simpli', 'dishonest', 'sinc', 'never', 'specifi', 'thing', 'product', 'inform', 'extrem', 'pain', 'go', 'custom', 'servic', 'wast', 'way', 'worth', 'time', 'calcul', 'base', 'busi', 'hour', 'point', 'almost', 'gave', 'never', 'buy', 'phone', 'seller', 'unlock', 'intern', 'phone', 'unreli', 'respons', 'samsung', 'repair', 'servic', 'uk', 'check', 'devic', 'warranti', 'serial', 'number', 'provid', 'us', 'unfortun', 'unabl', 'devic', 'repair', 'due', 'warranti', 'outsid', 'eu', 'warranti', 'warranti', 'devic', 'unit', 'arab', 'would', 'like', 'discuss', 'pleas', 'contact', 'samsung', 'custom', 'servic', 'option', 'need', 'anyth', 'els', 'pleas', 'let', 'us', 'know', 'happi', 'contact', 'samsung', 'repair', 'centr'], ['great', 'far', 'small', 'problem', 'bug', 'not', 'show', 'date', 'clear', 'selet', 'show', 'date', 'time', 'set', 'not', 'show', 'date', 'not', 'know', 'fix', 'wonder', 'anybodi', 'problem', 'know', 'fix'], ['best', 'decis', 'ever', 'love', 'phone', 'supplier', 'deliv', 'time', 'downlow', 'fact', 'hous', 'receiv', 'went', 'back', 'twice', 'extrem', 'happi', 'thank'], ['word', 'not', 'express', 'power', 'phone', 'upgrad', 'galaxi', 'note', 'intern', 'ram', 'note', 'make', 'world', 'differ', 'instal', 'old', 'app', 'first', 'galaxi', 'note', 'plus', 'coldfust', 'ui', 'take', 'ram', 'total', 'app', 'get', 'coldfust', 'look', 'bought', 'note', 'use', 'unfortun', 'seller', 'bought', 'not', 'mention', 'small', 'scratch', 'screen', 'notic', 'time', 'screen', 'black', 'background', 'behind', 'known', 'would', 'paid', 'dollar', 'new', 'one', 'i', 'love', 'power', 'galaxi', 'note', 'ii', 'could', 'not', 'mail', 'back', 'refund', 'loland', 'probabl', 'scratch', 'end', 'month', 'own', 'least', 'save', 'buck'], ['phone', 'describ', 'intern', 'version', 'part', 'korean', 'version', 'henc', 'not', 'pick', 'network', 'seller', 'stubborn', 'insist', 'not', 'know', 'talk', 'work', 'repair', 'bunch', 'comput', 'phone', 'ipad', 'etc', 'year', 'pick', 'frequenc', 'gsm', 'umt', 'hsdpa', 'korean', 'version', 'support', 'hsdpa', 'not', 'work', 'carrier', 'use', 'bewar', 'doubl', 'check', 'version', 'phone', 'intend', 'buy'], ['love', 'phone', 'ship', 'fast', 'defintin', 'order', 'seller', 'thing', 'hate', 'not', 'come', 'intern', 'harddriv', 'not', 'deal', 'breaker', 'otherwis', 'realli', 'great', 'phone'], ['galaxi', 'note', 'best', 'phone', 'everi', 'creat', 'love', 'abl', 'use', 'multitask', 'suck', 'though', 'not', 'alot', 'app', 'support', 'function', 'yet', 'though', 'batteri', 'life', 'amaz', 'take', 'heavi', 'pound', 'day', 'long', 'fast', 'charg', 'joke', 'fast', 'pen', 'function', 'suppos', 'beep', 'vibrant', 'leav', 'pen', 'walk', 'away', 'not', 'work', 'well', 'though', 'phone', 'run', 'littk', 'hot', 'quad', 'core', 'not', 'also', 'big', 'deal', 'breaker', 'led', 'light', 'top', 'left', 'devic', 'know', 'notif', 'not', 'go', 'root', 'phone', 'not', 'need', 'like', 'phone'], ['satisfação', 'total', 'recebi', 'dentro', 'prazo', 'com', 'condiçõ', 'perfeita', 'de', 'embalagem', 'estou', 'amando', 'celular', 'funcionando', 'plenament', 'inclus', 'com', 'operadora', 'brasil'], ['fantast', 'phone', 'size', 'keep', 'buy', 'phone', 'not', 'think', 'one', 'hardwar', 'jelli', 'bean', 'neat', 'littl', 'stylus', 'ole', 'display', 'list', 'goe', 'onon', 'thing', 'consid', 'go', 'prepaid', 'provid', 'rout', 'specif', 'assum', 'might', 'sinc', 'purchas', 'unlock', 'phone', 'phone', 'support', 'frequenc', 'current', 'process', 'upgrad', 'tower', 'depend', 'live', 'may', 'stuck', 'dread', 'slow', 'speed', 'upgrad', 'not', 'taken', 'place', 'i', 'total', 'smitten', 'phone'], ['item', 'would', 'great', 'receiv', 'not', 'empti', 'box', 'accessori', 'compani', 'kind', 'enough', 'reimburs', 'wan', 'buy', 'phone', 'go', 'ahead', 'cautious'], ['good'], ['came', 'time', 'box', 'proper', 'seal', 'phone', 'work', 'great', 'complaint', 'love', 'everyth', 'white', 'headset', 'charger', 'data', 'cabl', 'great', 'batteri', 'life', 'charg', 'super', 'fast', 'definit', 'great', 'phone'], ['love', 'mobil', 'much', 'expect', 'featur', 'amaz', 'speed', 'extrem', 'high', 'sensor', 'brilliant', 'enjoy', 'screen', 'good', 'watch', 'read', 'write', 'confort', 'air', 'view', 'use', 'stylus', 'pretti', 'cool'], ['love', 'good', 'brand', 'new', 'express', 'deliveri'], ['tmobil', 'bought', 'son', 'easi', 'unlock', 'follow', 'youtub', 'video', 'illustr', 'referbush', 'like', 'new', 'phone', 'work', 'great', 'not', 'singl', 'scratch', 'found', 'came', 'origin', 'box', 'includ', 'accessori', 'except', 'earphon', 'bought', 'separ', 'love', 'styli', 'phone', 'much', 'cuter', 'tmobil', 'one'], ['galaxi', 'samsung', 'note', 'ii', 'cell', 'phone', 'gray', 'husband', 'pleas', 'come', 'look', 'like', 'knew', 'thank', 'use', 'cell', 'phone', 'love'], ['like', 'phone', 'call', 'not', 'work', 'proper', 'make', 'call', 'not', 'hear', 'person', 'not', 'hear'], ['look', 'brand', 'new', 'load', 'lot', 'applic', 'intstal', 'sim', 'work', 'perfect', 'complaint', 'owner', 'manual', 'decent', 'phone', 'contract', 'month', 'plan'], ['phone', 'huge', 'love', 'big', 'also', 'everyth', 'could', 'imagin', 'phone', 'littl', 'comput', 'pocket', 'would', 'recommend', 'everyon'], ['everyth', 'good', 'shape', 'batteri', 'bad', 'get', 'replac'], ['love', 'phone', 'huge', 'fit', 'fine', 'hand', 'pocket', 'fast', 'not', 'singl', 'problem', 'know', 'phone', 'mani', 'capabl', 'yet', 'tap', 'went', 'store', 'clerk', 'show', 'fantast', 'trick', 'could', 'phone', 'need', 'go', 'back', 'train', 'function', 'love', 'size', 'phone', 'actual', 'see', 'screen', 'without', 'squint', 'galaxi', 'smaller', 'screen', 'size', 'realli', 'advanc', 'everyth', 'could', 'not', 'imagin', 'phone', 'could', 'phablet', 'definit', 'accur', 'descript'], ['previous', 'purchas', 'phone', 'differ', 'color', 'love', 'daughter', 'iphon', 'junki', 'saw', 'went', 'thru', 'featur', 'voila', 'samsung', 'convert', 'beg', 'month', 'cave', 'got', 'love', 'phone', 'absolut', 'phenomen', 'smarter', 'previous', 'samsung', 'smartphon', 'sometim', 'think', 'smarter', 'lol'], ['nice', 'phone'], ['k'], ['excel'], ['phone', 'amaz', 'everi', 'way', 'complaint', 'boatload', 'prais', 'opinion', 'one', 'edg', 'enough', 'phone', 'fast', 'user', 'friend', 'realli', 'like', 'music', 'make', 'app', 'perk', 'come', 'samsung', 'like', 'custom', 'support', 'use', 'platform', 'samsung', 'camera', 'onlin', 'storag', 'perk', 'good', 'phone', 'great', 'price'], ['excel'], ['exact', 'seen', 'photo'], ['bought', 'phone', 'love', 'featur', 'pictur', 'take', 'clear', 'give', 'phone', 'five', 'star', 'across', 'board'], ['phone', 'lock', 'expect', 'unlock', 'phone', 'could', 'use', 'cellular', 'network', 'oper'], ['phone', 'perfect', 'condit', 'user', 'friend', 'perfect', 'birthday', 'gift', 'son', 'thank'], ['christma', 'gift', 'granddaught', 'love'], ['excelent', 'telefono'], ['phone', 'arriv', 'packag', 'well', 'arriv', 'allot', 'time', 'like', 'almost', 'everyth', 'phone', 'not', 'want', 'big', 'phone', 'stuck', 'hand', 'size', 'favor', 'agre', 'review', 'batteri', 'drain', 'fast', 'run', 'app', 'understood', 'not', 'troubl', 'drop', 'call', 'sim', 'went', 'right', 'old', 'phone', 'work', 'pick', 'router', 'fine', 'hous', 'use', 'phone', 'travel', 'philippin', 'southeast', 'asian', 'countri', 'without', 'take', 'us', 'sim', 'phone', 'work', 'guam', 'usa'], ['exclent', 'expect'], ['smaller', 'expect', 'work', 'well', 'bought', 'daughter'], ['perfect'], ['six', 'month', 'use', 'smart', 'phone', 'not', 'turn', 'reason', 'want', 'chang'], ['excelent'], ['not', 'phone', 'could', 'not', 'get', 'internet', 'lucki', 'mother', 'law', 'not', 'use', 'internet', 'phone', 'made', 'nice', 'gift', 'not', 'good', 'deal'], ['excel', 'good', 'servic'], ['great', 'cellphon', 'año', 'smsrtphone', 'good', 'product', 'sincard', 'amaz', 'recomend', 'thank', 'much', 'samsung', 'vey', 'amaz'], ['great', 'phone', 'howev', 'chines', 'not', 'use', 'phone', 'i', 'go', 'return', 'order', 'anoth', 'one', 'aunt', 'suppos', 'christma', 'gift', 'way', 'past', 'due', 'not', 'first', 'phone', 'order', 'onlin', 'first', 'disappoint', 'experi', 'ever', 'receiv'], ['exelent'], ['phone', 'look', 'nice', 'buy', 'new', 'phone', 'send', 'use', 'phone', 'app', 'not', 'work', 'not', 'open', 'send', 'back'], ['spent', 'total', 'hour', 'time', 'find', 'phone', 'lock', 'not', 'unlock', 'disappoint', 'upset', 'realli', 'want', 'phone', 'hope', 'send', 'two', 'unlock', 'phone', 'happi', 'servic'], ['good', 'phone'], ['far', 'like', 'expect', 'travel', 'add', 'second', 'sim', 'abl', 'give', 'better', 'review'], ['satisfact', 'model', 'much', 'love', 'product', 'recommend', 'everyon', 'need', 'dual', 'sim', 'mobil', 'work', 'well', 'venezuela'], ['muy', 'bueno'], ['nice', 'beauti', 'cel', 'phone', 'good', 'qualiti', 'good', 'appear', 'great', 'featur', 'sport', 'social', 'event', 'work', 'fine', 'recommend', 'purchas'], ['samsung', 'worst', 'type', 'phone', 'world', 'left', 'comment', 'seller', 'even', 'tri', 'return', 'ignor', 'worst', 'invest', 'ever'], ['good', 'cell', 'phone', 'not', 'expect', 'default', 'languag', 'chines', 'look', 'good', 'phone'], ['bien'], ['muy', 'bien'], ['excelent'], ['excelet'], ['excel', 'recommend', 'good', 'product', 'reliabl', 'buy', 'confid', 'telefon', 'good', 'comfort', 'lightweight', 'good', 'softwar', 'fast', 'muy', 'bueno'], ['product', 'real', 'scam', 'fake', 'not', 'origin', 'equip', 'samsung', 'touch', 'screen', 'damag', 'replac', 'comput', 'imit', 'made', 'china', 'not', 'buy', 'comput', 'scam', 'éste', 'producto', 'es', 'una', 'verdadera', 'estafa', 'una', 'imitación', 'es', 'un', 'equipo', 'origin', 'samsung', 'se', 'daño', 'la', 'pantalla', 'tactil', 'exist', 'repuesto', 'para', 'ese', 'equipo', 'porqu', 'es', 'una', 'imitación', 'hecha', 'en', 'china', 'compren', 'ese', 'equipo', 'es', 'una', 'estafa'], ['bought', 'dad', 'took', 'friend', 'india', 'good', 'phone', 'work', 'india', 'sill', 'work', 'strong', 'time'], ['not', 'download', 'app', 'celular', 'bought', 'never', 'life', 'buy', 'samsung', 'mobil', 'warranti', 'usa', 'not', 'buy', 'mobil', 'wast', 'money'], ['good'], ['good', 'product', 'perfect'], ['good', 'phone', 'use', 'good', 'featur', 'user', 'friend', 'nice', 'look', 'easi', 'hold', 'hand', 'easi', 'big'], ['work', 'great', 'expect'], ['compar', 'appl', 'android', 'appl', 'not', 'high', 'version', 'though', 'like'], ['excel'], ['un', 'poco', 'lento', 'pero', 'satisfac', 'aplicacion', 'basica', 'banco', 'pin'], ['great'], ['muy', 'bueno'], ['excelent'], ['pleas', 'factori', 'seal', 'new', 'unopen', 'spec', 'describ', 'factori', 'unlock', 'bought', 'base', 'samsung', 'reput', 'dual', 'sim', 'capabl', 'us', 'european', 'travel', 'supplier', 'kept', 'commit', 'time', 'manner'], ['bien'], ['great', 'phone', 'confort', 'two', 'line', 'one', 'movil', 'android', 'system'], ['love'], ['excelent'], ['bought', 'brother', 'law', 'africa', 'abirthday', 'present', 'love'], ['excel', 'product', 'thank'], ['good', 'enough', 'rather', 'cheap', 'size', 'neither', 'big', 'small', 'process', 'go', 'fast', 'enough', 'stabl', 'system', 'great', 'screen', 'resolut', 'compat', 'pretti', 'much', 'camera', 'could', 'better', 'aw', 'zoom', 'would', 'better', 'keep', 'hand', 'steadi', 'well', 'phone', 'not', 'nikkon', 'profession', 'camera', 'definit', 'alright', 'drawback', 'work', 'top', 'speed', 'signal', 'realli', 'strong', 'goe', 'way', 'slower', 'crowd', 'area', 'someth', 'probabl', 'consid', 'not', 'load', 'map', 'fast', 'enough', 'downtown', 'popul', 'citi', 'instanc', 'came', 'nice', 'surpris', 'one', 'samsung', 'phone', 'give', 'free', 'space', 'dropbox', 'first', 'sync'], ['hello', 'came', 'expect', 'perfect', 'recommend', 'item', 'shop', 'apolog', 'english', 'not', 'good'], ['excel'], ['phone', 'hang', 'repeat', 'first', 'day', 'even', 'reebot', 'remov', 'batteri', 'mobil', 'never', 'came', 'googl', 'search', 'not', 'open', 'singl', 'time'], ['good'], ['phone', 'meet', 'expect', 'still', 'tri', 'use', 'gadget'], ['yes', 'good'], ['ust', 'ha', 'enviado', 'un', 'samsung', 'galaxi', 'duo', 'en', 'lugar', 'del', 'samsung', 'galaxi', 'duo', 'ii', 'vendedor', 'sent', 'samsung', 'galaxi', 'duo', 'instead', 'samsung', 'galaxi', 'ii', 'duo', 'seller', 'not', 'recommend'], ['super'], ['great', 'phone'], ['phone', 'perform', 'use', 'good', 'phone', 'use', 'phone', 'call', 'featur', 'basic', 'capabl'], ['excel'], ['love', 'phone', 'much', 'bought', 'twice', 'time', 'paid', 'around', 'buck', 'price', 'realli', 'not', 'beat', 'i', 'patient', 'wait', 'arriv'], ['excel', 'product', 'punctual', 'deliveri'], ['slow', 'mean', 'not', 'iphon', 'would', 'not', 'recommend'], ['tremendo', 'cel'], ['excel', 'product'], ['good'], ['excelent'], ['muy', 'bueno'], ['bueno'], ['person', 'realli', 'like', 'phone', 'mom', 'hard', 'learn', 'technolog', 'know', 'come', 'love', 'phone'], ['good', 'buy', 'need', 'memori', 'though'], ['full', 'featur', 'phone', 'nice', 'fit'], ['bought', 'one', 'start', 'use', 'februari', 'work', 'well', 'even', 'though', 'littl', 'intern', 'memori', 'howev', 'month', 'later', 'batteri', 'not', 'hold', 'charg', 'hour', 'i', 'lucki', 'not', 'buy', 'not', 'worth', 'hassl'], ['bought', 'one', 'phone', 'year', 'ago', 'india', 'use', 'return', 'usa', 'abl', 'use', 'without', 'problem', 'insert', 'sim', 'card', 'consum', 'cellular', 'phone', 'phone', 'chang', 'set', 'happi', 'perform', 'recent', 'bought', 'anoth', 'one', 'wife', 'amazon', 'usa', 'one', 'also', 'work', 'great', 'use', 'sim', 'card', 'consum', 'cellular', 'phone', 'littl', 'problem', 'set', 'second', 'one', 'consum', 'cellular', 'technic', 'assist', 'help', 'set', 'correct', 'take', 'phone', 'us', 'vacat', 'new', 'zealand', 'expect', 'abl', 'use', 'local', 'purchas', 'sim', 'card', 'shall', 'tri', 'make', 'anoth', 'post', 'case', 'face', 'problem'], ['order', 'white', 'receiv', 'black', 'phone', 'plug', 'adapt', 'not', 'use', 'feel', 'disappoint'], ['ok'], ['excel'], ['lot', 'featur', 'good'], ['excelent'], ['excel'], ['great', 'item'], ['phone', 'nice', 'work', 'perfect', 'price', 'realli', 'good', 'pleas'], ['thank', 'great', 'piec'], ['unless', 'look', 'phone', 'grand', 'parent', 'babysitt', 'phone', 'useless'], ['bought', 'smartphon', 'gift', 'belov', 'famili', 'member', 'must', 'say', 'amaz', 'mani', 'aspect', 'reliabl', 'get', 'surpris', 'came', 'android', 'realli', 'work', 'fine', 'simcard', 'web', 'brows', 'smooth', 'perform', 'excel', 'screen', 'size', 'perfect', 'phone', 'also', 'came', 'earphon', 'intern', 'charger', 'usb', 'cabl', 'pleas', 'phone', 'high', 'recommend', 'gift', 'person', 'use'], ['got', 'far', 'run', 'smooth', 'surpris', 'see', 'oper', 'system', 'actual', 'jellybean', 'compar', 'cheaper', 'altern', 'phone', 'came', 'earphon', 'intern', 'charger', 'usb', 'cabl', 'pleas', 'phone', 'high', 'recommend'], ['excelent'], ['good'], ['pictur', 'qualiti', 'outstand', 'phone', 'work', 'great', 'problem', 'might', 'ram', 'space', 'littl'], ['samsung', 'replac', 'iphon', 'went', 'swim', 'salt', 'water', 'fell', 'back', 'boat', 'fish', 'person', 'like', 'samsung', 'better'], ['great', 'phone', 'complet', 'use'], ['great', 'phone', 'took', 'oversea', 'famili', 'member', 'unlock', 'work', 'great'], ['excel', 'product'], ['purchas', 'phone', 'husband', 'love', 'happi', 'done', 'verizon', 'virgin', 'great', 'network', 'unlimit', 'date', 'great', 'price', 'final', 'say', 'goodby', 'verizon', 'crazi', 'high', 'price', 'data'], ['phone', 'fine', 'not', 'want', 'virgin', 'mobil', 'switch', 'save', 'buck', 'could', 'not', 'port', 'number', 'everi', 'month', 'drive', 'best', 'buy', 'card', 'pay', 'bill', 'virgin', 'not', 'process', 'credit', 'card', 'complain', 'tell', 'contact', 'bank', 'funni', 'credit', 'card', 'work', 'elsewher', 'nightmar', 'not', 'believ', 'peopl', 'let', 'compani', 'fli', 'take', 'space'], ['real', 'bad', 'arthriti', 'take', 'vitamin', 'call', 'tripleflex', 'msm', 'glucosamin', 'chondroitin', 'never', 'care', 'vitamin', 'someth', 'type', 'pain', 'free', 'not', 'work', 'compani', 'wish', 'press', 'littl', 'microphon', 'front', 'page', 'galaxi', 'speak', 'search', 'googl', 'search', 'text', 'field', 'search', 'everyth', 'day', 'bla', 'bla', 'bla', 'begin', 'realli', 'not', 'talk', 'much', 'phone', 'final', 'reason', 'help', 'decid', 'get', 'phone', 'plan', 'togeth', 'perfect', 'afford', 'main', 'attract', 'like', 'special', 'present', 'forev', 'bonus', 'hard', 'explain', 'guess', 'realli', 'knew', 'sure', 'miss', 'galaxi', 'coupl', 'minut', 'need', 'handheld', 'state', 'art', 'fulli', 'function', 'never', 'drop', 'call', 'well', 'tri', 'samsung', 'galaxi', 'virgin', 'mobil', 'prepay', 'deal'], ['batteri', 'not', 'work', 'not', 'hold', 'enough', 'charg', 'take', 'long', 'batteri', 'never', 'work', 'proper', 'charg', 'hour', 'use'], ['phone', 'may', 'age', 'go', 'rout', 'like', 'virgin', 'mobil', 'specif', 'good', 'way', 'go', 'relat', 'light', 'weight', 'slim', 'profil', 'fit', 'nice', 'pocket', 'glass', 'touch', 'screen', 'deliv', 'vibrant', 'display', 'option', 'live', 'background', 'add', 'modern', 'attract', 'aesthet', 'screen', 'sleek', 'enjoy', 'took', 'littl', 'time', 'learn', 'in', 'out', 'os', 'android', 'ice', 'cream', 'sandwich', 'camera', 'excel', 'take', 'fine', 'detail', 'pictur', 'pretti', 'smart', 'focus', 'option', 'i', 'would', 'like', 'control', 'white', 'balanc', 'honest', 'qualiti', 'pictur', 'phone', 'take', 'make', 'biggest', 'differ', 'higher', 'end', 'camera', 'much', 'think', 'get', 'good', 'not', 'much', 'need', 'pictur', 'need', 'extra', 'light', 'nice', 'flash', 'phone', 'get', 'mileag', 'flashlight', 'app', 'camera', 'short', 'phone', 'take', 'excel', 'pictur', 'photograph', 'inclin', 'not', 'like', 'carri', 'one', 'electron', 'devic', 'phone', 'definit', 'sound', 'record', 'abil', 'surpris', 'i', 'recent', 'start', 'work', 'voic', 'act', 'demo', 'appli', 'colleg', 'studi', 'audio', 'record', 'sound', 'pictur', 'make', 'sound', 'profession', 'phone', 'instrument', 'record', 'foley', 'go', 'sure', 'not', 'thousand', 'dollar', 'condens', 'microphon', 'stretch', 'job', 'pinch', 'sound', 'i', 'record', 'outdoor', 'background', 'nois', 'auto', 'bodi', 'part', 'found', 'bodi', 'shop', 'dump', 'etc', 'enough', 'lend', 'profession', 'demo', 'without', 'burn', 'hole', 'pocket', 'i', 'longer', 'yeah', 'phone', 'featur', 'rather', 'wari', 'buy', 'phone', 'without', 'button', 'text', 'talk', 'phone', 'honest', 'best', 'smart', 'text', 'entri', 'system', 'i', 'seen', 'yet', 'actual', 'enter', 'word', 'trace', 'line', 'letter', 'letter', 'time', 'text', 'entri', 'program', 'guess', 'word', 'correct', 'need', 'lift', 'finger', 'even', 'line', 'direct', 'question', 'still', 'get', 'less', 'typo', 'i', 'smart', 'text', 'entri', 'system', 'thank', 'system', 'coupl', 'inkpad', 'notepad', 'app', 'littl', 'moleskin', 'notebook', 'compar', 'size', 'phone', 'thicker', 'get', 'much', 'less', 'use', 'system', 'almost', 'quick', 'write', 'hand', 'easier', 'sinc', 'done', 'one', 'multipurpos', 'devic', 'carri', 'web', 'easi', 'get', 'phone', 'grant', 'experi', 'limit', 'first', 'data', 'plan', 'take', 'grain', 'salt', 'must', 'quick', 'easi', 'pan', 'scroll', 'zoom', 'imag', 'view', 'expect', 'great', 'given', 'high', 'qualiti', 'display', 'complaint', 'larg', 'virgin', 'mobil', 'recept', 'get', 'certain', 'not', 'intoler', 'call', 'text', 'anywher', 'although', 'i', 'experi', 'drop', 'call', 'gone', 'twenti', 'minut', 'although', 'call', 'rare', 'not', 'huge', 'deal', 'check', 'map', 'go', 'mind', 'prepar', 'dodgi', 'recept', 'score', 'home', 'find', 'easier', 'connect', 'via', 'fio', 'internet', 'use', 'capabl', 'phone', 'even', 'though', 'i', 'still', 'within', 'zone', 'though', 'near', 'edg', 'admit', 'still', 'per', 'month', 'hidden', 'fee', 'furthermor', 'not', 'complain', 'also', 'not', 'impress', 'music', 'player', 'look', 'like', 'zune', 'year', 'use', 'yet', 'organ', 'track', 'alphabet', 'accord', 'titl', 'not', 'even', 'file', 'name', 'much', 'less', 'track', 'number', 'song', 'tag', 'sure', 'app', 'turn', 'phone', 'gig', 'add', 'stock', 'latter', 'format', 'choic', 'never', 'mind', 'file', 'size', 'player', 'zune', 'alreadi', 'not', 'see', 'reason', 'bother', 'look', 'conclud', 'lengthi', 'review', 'batteri', 'life', 'charg', 'daili', 'twice', 'day', 'use', 'connect', 'optim', 'not', 'wast', 'batteri', 'life', 'ask', 'par', 'cours', 'far', 'smartphon', 'go', 'essenti', 'includ', 'conclus', 'i', 'happi', 'galaxi', 'ii', 'comput', 'away', 'home', 'notebook', 'go', 'portabl', 'microphon', 'camera', 'even', 'hold', 'book', 'thank', 'kindl', 'app', 'oh', 'yeah', 'fulli', 'function', 'telephon', 'honest', 'not', 'even', 'halfway', 'plumb', 'depth', 'devic', 'capabl', 'minor', 'detail', 'keep', 'give', 'full', 'five', 'star', 'i', 'would', 'give', 'four', 'half', 'could', 'larg', 'virgin', 'mobil', 'servic', 'although', 'month', 'quit', 'reason', 'consid', 'unlimit', 'whole', 'like', 'one', 'peopl', 'tast', 'happi', 'hour', 'budget', 'phone', 'definit'], ['phone', 'arriv', 'good', 'thing'], ['excelent'], ['phone', 'last', 'less', 'year', 'went', 'belli', 'i', 'not', 'abus', 'electron', 'user', 'guess', 'get', 'pay', 'numer', 'technic', 'issu', 'well', 'i', 'pro', 'made', 'head', 'hurt'], ['good'], ['problem', 'purchas', 'satisfi', 'excel', 'product', 'price'], ['start', 'confus', 'phone', 'buy', 'market', 'went', 'strict', 'budget', 'mind', 'believ', 'phone', 'worth', 'thing', 'need', 'care', 'plus', 'plus', 'number', 'number', 'plus', 'minor', 'enhanc', 'compar', 'major', 'one', 'os', 'android', 'android', 'jelli', 'bean', 'thing', 'need', 'keep', 'mind', 'hard', 'featur', 'differ', 'plus', 'use', 'henc', 'tilt', 'decis', 'favour', 'bewar', 'old', 'os', 'cost', 'sold', 'site', 'buy', 'realiz', 'samsung', 'releas', 'plus', 'latest', 'os'], ['awesom'], ['arriv', 'perfect', 'daugher', 'love', 'thank'], ['sad', 'bought', 'two', 'phone', 'decemb', 'first', 'ever', 'review', 'product', 'amazon', 'i', 'use', 'site', 'year', 'phone', 'start', 'charg', 'problem', 'time', 'start', 'use', 'present', 'not', 'would', 'phone', 'not', 'hold', 'charg', 'even', 'replac', 'batteri', 'not', 'even', 'turn', 'previous', 'contact', 'seller', 'sent', 'wrong', 'charger', 'buyer', 'not', 'even', 'send', 'samsung', 'charger', 'phone', 'see', 'green', 'robot', 'sign', 'appear', 'state', 'phone', 'reboot', 'phone', 'die', 'not', 'know', 'unlock', 'phone', 'tamper', 'caus', 'problem', 'paid', 'phone', 'month', 'later', 'worth', 'crap', 'also', 'tri', 'call', 'samsung', 'repair', 'phone', 'told', 'warranti', 'expir', 'month', 'purchas', 'phone'], ['faulti', 'equip', 'get', 'answer', 'never', 'paragraph', 'guarante'], ['phone', 'best', 'featur', 'want', 'pretti', 'fast', 'love'], ['superb', 'phone', 'mani', 'featur', 'techi', 'fulli', 'test', 'phone', 'sinc', 'phone', 'exceed', 'expect', 'detail', 'review', 'special', 'fun', 'use', 'skyrocket', 'phone', 'although', 'paid', 'purchas', 'phone', 'new', 'glad', 'work', 'wonder', 'goal', 'review', 'help', 'buy', 'decis', 'one', 'way', 'regard', 'size', 'weight', 'perfect', 'size', 'view', 'screen', 'like', 'keep', 'phone', 'insid', 'case', 'cover', 'still', 'fit', 'easili', 'rather', 'small', 'purs', 'also', 'take', 'gym', 'listen', 'music', 'work', 'sinc', 'phone', 'lightweight', 'easi', 'wear', 'waistband', 'storag', 'case', 'unlock', 'sim', 'yes', 'phone', 'receiv', 'new', 'test', 'sim', 'slot', 'make', 'sure', 'unlock', 'first', 'insert', 'neighbor', 'standard', 'sim', 'card', 'plan', 'data', 'plan', 'simpli', 'pop', 'phone', 'work', 'right', 'box', 'call', 'someon', 'work', 'great', 'sent', 'text', 'pictur', 'attach', 'text', 'went', 'fine', 'remov', 'sim', 'place', 'activ', 'sim', 'card', 'standard', 'size', 'card', 'sim', 'card', 'phone', 'work', 'perfect', 'phone', 'sim', 'unlock', 'basic', 'logo', 'still', 'origin', 'app', 'still', 'use', 'say', 'straight', 'talk', 'gsm', 'sim', 'card', 'work', 'fine', 'make', 'sure', 'buy', 'unlock', 'one', 'not', 'lock', 'want', 'use', 'anyth', 'pleas', 'contact', 'comment', 'apn', 'set', 'data', 'mms', 'thing', 'say', 'unlock', 'rather', 'intern', 'unlock', 'mean', 'sim', 'card', 'slot', 'unlock', 'gsm', 'standard', 'size', 'sim', 'card', 'still', 'show', 'logo', 'top', 'front', 'phone', 'sinc', 'not', 'anyth', 'neighbor', 'sim', 'card', 'make', 'quick', 'call', 'tri', 'minut', 'think', 'buy', 'phone', 'use', 'not', 'account', 'also', 'use', 'wifi', 'like', 'need', 'data', 'unless', 'wifi', 'area', 'lot', 'time', 'around', 'wifi', 'percent', 'time', 'larg', 'screen', 'good', 'resolut', 'absolut', 'gorgeous', 'screen', 'measur', 'inch', 'seem', 'larger', 'right', 'size', 'screen', 'phone', 'use', 'use', 'galaxi', 'note', 'grand', 'inch', 'screen', 'big', 'heavi', 'bulki', 'use', 'skyrocket', 'screen', 'larg', 'good', 'resolut', 'ppi', 'pixel', 'per', 'inch', 'higher', 'better', 'sharp', 'screen', 'easi', 'read', 'screen', 'look', 'sharp', 'old', 'galaxi', 'note', 'much', 'much', 'sharper', 'galaxi', 'grand', 'ppi', 'not', 'clear', 'skyrocket', 'extra', 'pixel', 'per', 'inch', 'make', 'big', 'differ', 'opinion', 'screen', 'vivid', 'clear', 'standard', 'regular', 'size', 'sim', 'card', 'phone', 'sim', 'card', 'slot', 'note', 'regular', 'phone', 'phone', 'accept', 'micro', 'sim', 'glad', 'phone', 'accept', 'phone', 'call', 'clariti', 'etc', 'matter', 'locat', 'use', 'phone', 'phone', 'call', 'clariti', 'call', 'loud', 'clear', 'whether', 'phone', 'speaker', 'headset', 'etc', 'even', 'turn', 'volum', 'quit', 'lot', 'call', 'come', 'internet', 'connect', 'wifi', 'tri', 'quick', 'easili', 'browser', 'instal', 'opera', 'mini', 'free', 'playstor', 'found', 'easi', 'use', 'fast', 'browser', 'overal', 'speed', 'perform', 'smooth', 'pictur', 'qualiti', 'screen', 'fast', 'peppi', 'found', 'way', 'save', 'memori', 'batteri', 'go', 'manag', 'app', 'disabl', 'app', 'not', 'use', 'without', 'root', 'phone', 'not', 'uninstal', 'factori', 'app', 'disabl', 'disabl', 'one', 'not', 'use', 'make', 'phone', 'run', 'faster', 'free', 'memori', 'sinc', 'techi', 'know', 'one', 'disabl', 'one', 'not', 'disabl', 'doubt', 'pleas', 'ask', 'comment', 'glad', 'assist', 'batteri', 'life', 'phone', 'given', 'one', 'best', 'batteri', 'life', 'smartphon', 'ever', 'own', 'use', 'bright', 'even', 'bright', 'use', 'wifi', 'need', 'turn', 'get', 'day', 'night', 'one', 'singl', 'charg', 'charg', 'night', 'phone', 'readi', 'go', 'next', 'morn', 'extern', 'slot', 'micro', 'sd', 'card', 'help', 'sell', 'phone', 'add', 'person', 'music', 'photo', 'video', 'phone', 'place', 'mine', 'music', 'file', 'etc', 'keep', 'mind', 'extern', 'sd', 'card', 'concern', 'person', 'file', 'music', 'video', 'photo', 'file', 'instal', 'app', 'playstor', 'sourc', 'store', 'either', 'intern', 'memori', 'card', 'sometim', 'phone', 'area', 'store', 'intern', 'sd', 'area', 'law', 'land', 'android', 'concern', 'newer', 'android', 'devic', 'includ', 'samsung', 'work', 'way', 'store', 'download', 'app', 'intern', 'storag', 'space', 'phone', 'advertis', 'intern', 'space', 'space', 'drive', 'format', 'os', 'instal', 'factori', 'app', 'instal', 'phone', 'instal', 'app', 'left', 'flash', 'drive', 'sd', 'card', 'hard', 'drive', 'format', 'alon', 'take', 'sinc', 'android', 'not', 'save', 'app', 'person', 'sd', 'card', 'instead', 'app', 'instal', 'one', 'way', 'intern', 'space', 'howev', 'good', 'thing', 'person', 'file', 'photo', 'music', 'video', 'instal', 'extern', 'sd', 'card', 'space', 'app', 'download', 'playstor', 'game', 'still', 'gb', 'left', 'phone', 'app', 'later', 'wish', 'instal', 'camera', 'camera', 'concern', 'took', 'indoor', 'outdoor', 'pictur', 'even', 'video', 'well', 'pleasant', 'surpris', 'print', 'close', 'shot', 'realli', 'happi', 'detail', 'pictur', 'turn', 'good', 'bluetooth', 'speed', 'perform', 'bluetooth', 'pair', 'quick', 'sever', 'devic', 'copi', 'file', 'great', 'rate', 'otg', 'go', 'usb', 'plug', 'flash', 'drive', 'mice', 'etc', 'use', 'otg', 'micro', 'adapt', 'one', 'work', 'abl', 'plug', 'flash', 'drive', 'mous', 'could', 'not', 'get', 'portabl', 'hard', 'disk', 'work', 'flash', 'drive', 'work', 'nfc', 'near', 'field', 'communic', 'advertis', 'work', 'phone', 'not', 'yet', 'tri', 'built', 'fm', 'radio', 'like', 'regular', 'sii', 'not', 'problem', 'instal', 'tunein', 'radio', 'free', 'playstor', 'play', 'lot', 'radio', 'fm', 'wifi', 'adob', 'flash', 'not', 'support', 'phone', 'android', 'devic', 'os', 'way', 'get', 'flash', 'get', 'archiv', 'flash', 'use', 'high', 'end', 'browser', 'puffin', 'maxthon', 'browser', 'download', 'older', 'archiv', 'flash', 'give', 'abil', 'view', 'internet', 'video', 'better', 'flash', 'keep', 'mind', 'problem', 'brand', 'android', 'devic', 'os', 'higher', 'android', 'came', 'new', 'best', 'flash', 'not', 'support', 'android', 'devic', 'line', 'would', 'buy', 'phone', 'yes', 'certain', 'would', 'hope', 'review', 'assist', 'thank', 'read', 'pleas', 'feel', 'free', 'ask', 'question', 'comment', 'area', 'answer', 'question', 'time', 'manner'], ['excit', 'purchas', 'phone', 'give', 'away', 'test', 'realiz', 'phone', 'bad', 'connect', 'load', 'load', 'not', 'start', 'someth', 'bother', 'lot', 'regular', 'custom', 'i', 'alway', 'done', 'shop', 'amazon', 'take', 'distrust', 'safeti', 'product'], ['nice', 'cool', 'littl', 'phone', 'right', 'featur', 'would', 'recommend', 'phone', 'someon', 'els', 'ask'], ['ok', 'deal', 'buy', 'phone', 'form', 'guy', 'hill', 'side', 'deal', 'one', 'samsung', 'galaxi', 'skyrocket', 'white', 'discrib', 'phone', 'good', 'condit', 'got', 'phone', 'scratch', 'border', 'screen', 'buy', 'phone', 'well', 'galaxi', 'skyrocket', 'black', 'thts', 'say', 'advertis', 'amazon', 'page', 'surpris', 'not', 'samsung', 'galaxi', 'skyrocket', 'samsung', 'galaxi', 'regular', 'versio', 'not', 'skyrocket', 'difrenc', 'next', 'time', 'not', 'buy', 'hill', 'side', 'deal'], ['far', 'excel', 'phone', 'att', 'unlock', 'servic', 'android', 'ic', 'realli', 'enjoy', 'keep', 'good', 'work', 'hope', 'seller', 'good', 'job', 'star', 'rate'], ['got', 'unopen', 'new', 'product', 'said', 'time', 'also', 'lte', 'not', 'like', 'far'], ['todo', 'en', 'perfecto', 'estado', 'funcionamiento', 'por', 'qué', 'tengo', 'que', 'escribir', 'est', 'montón', 'de', 'palabra', 'si', 'solo', 'quiero', 'calificar', 'al', 'vendedor'], ['good', 'condit', 'accord', 'web', 'offer', 'think', 'batteri', 'wear', 'necessari', 'chang', 'soon', 'normal', 'convict'], ['like', 'not', 'unlok'], ['bought', 'gift', 'nephew', 'request', 'happi'], ['samsunggalaxi', 'not', 'good', 'bought', 'three', 'phone', 'three', 'phone', 'less', 'three', 'month', 'stay', 'screen', 'black', 'batteri', 'take', 'long', 'charg', 'last', 'half', 'day', 'lost', 'money', 'bad', 'stuff'], ['receiv', 'damag'], ['bought', 'phone', 'i', 'not', 'two', 'month', 'longer', 'batteri', 'charg', 'eas', 'hot', 'phone', 'shock', 'ecuador', 'buy', 'amazon', 'not', 'ask', 'settlement', 'reclarmar', 'miss', 'serious', 'seller'], ['spent', 'lot', 'time', 'search', 'best', 'unlock', 'phone', 'bang', 'buck', 'budget', 'dread', 'idea', 'lock', 'contract', 'pay', 'high', 'month', 'servic', 'fee', 'use', 'puretalk', 'usa', 'pleas', 'piggi', 'back', 'go', 'network', 'gsm', 'offer', 'lot', 'money', 'upgrad', 'htc', 'run', 'jelli', 'bean', 'develop', 'bad', 'charg', 'port', 'like', 'move', 'prius', 'porsch', 'respect', 'perform', 'paid', 'mine', 'begin', 'januari', 'use', 'amazon', 'reward', 'pick', 'money', 'object', 'would', 'bought', 'honest', 'probabl', 'would', 'bought', 'use', 'one', 'ebay', 'less', 'want', 'use', 'amazon', 'reward', 'bring', 'price', 'use', 'one', 'easili', 'anyway', 'end', 'glad', 'brand', 'new', 'one', 'rather', 'use', 'one', 'enough', 'shop', 'i', 'super', 'happi', 'glad', 'arriv', 'describ', 'sometim', 'product', 'like', 'not', 'alway', 'receiv', 'exact', 'list', 'would', 'recommend', 'contact', 'seller', 'first', 'confirm', 'ask', 'question', 'exampl', 'phone', 'not', 'unlock', 'would', 'real', 'pain', 'deal', 'fyi', 'sever', 'differ', 'version', 'gsm', 'cdma', 'know', 'buy', 'wait', 'arriv', 'scour', 'forum', 'xda', 'develop', 'root', 'instal', 'custom', 'rom', 'soon', 'phone', 'arriv', 'charg', 'root', 'instal', 'newest', 'cyanogenmod', 'night', 'extrem', 'stabl', 'went', 'like', 'charm', 'took', 'minut', 'jelli', 'bean', 'smooth', 'fast', 'put', 'screen', 'move', 'dinosaur', 'not', 'found', 'anyth', 'not', 'like', 'yet', 'phone', 'screen', 'amaz', 'like', 'slight', 'larger', 'screen', 'skyrocket', 'compar', 'model', 'phone', 'seem', 'hit', 'sweet', 'spot', 'size', 'start', 'look', 'littl', 'small', 'compar', 'newer', 'phone', 'come', 'still', 'portabl', 'not', 'start', 'think', 'go', 'carri', 'around', 'go', 'store', 'actual', 'see', 'look', 'like', 'sinc', 'still', 'sale', 'use', 'screen', 'bright', 'sun', 'not', 'great', 'visibl', 'general', 'like', 'not', 'hardwar', 'button', 'sometim', 'wish', 'button', 'end', 'call', 'like', 'smooth', 'clean', 'camera', 'work', 'well', 'not', 'spent', 'much', 'time', 'camera', 'not', 'tell', 'compar', 'real', 'camera', 'want', 'pictur', 'normal', 'use', 'real', 'camera', 'phone', 'camera', 'quick', 'snapshot', 'front', 'camera', 'work', 'fine', 'i', 'got', 'plenti', 'free', 'memori', 'ad', 'microsd', 'card', 'btw', 'phone', 'partit', 'take', 'intern', 'memori', 'instal', 'os', 'program', 'find', 'adequ', 'i', 'impress', 'sound', 'crank', 'almost', 'sound', 'better', 'vaio', 'laptop', 'concern', 'batteri', 'life', 'seem', 'averag', 'phone', 'like', 'mean', 'need', 'start', 'day', 'full', 'charg', 'juic', 'defend', 'app', 'help', 'stretch', 'three', 'week', 'use', 'found', 'call', 'qualiti', 'general', 'good', 'clear', 'earpiec', 'volum', 'could', 'littl', 'bit', 'louder', 'use', 'speaker', 'phone', 'lot', 'anyway', 'might', 'vari', 'depend', 'upon', 'os', 'use', 'call', 'not', 'good', 'probabl', 'network', 'connect', 'not', 'phone', 'phone', 'regist', 'puretalk', 'go', 'network', 'like', 'provid', 'data', 'speed', 'fast', 'enough', 'use', 'doubt', 'stream', 'video', 'sever', 'compani', 'provid', 'similar', 'phone', 'servic', 'go', 'network', 'think', 'would', 'run', 'full', 'speed', 'want', 'pay', 'twice', 'much', 'regular', 'month', 'flexibl', 'unlockedscreen', 'big', 'bright', 'clearsound', 'loud', 'clearcal', 'qualiti', 'goodcamera', 'goodfront', 'face', 'camera', 'work', 'skype', 'test', 'fast', 'speed', 'avail', 'work', 'research', 'set', 'note', 'read', 'place', 'phone', 'use', 'micro', 'mini', 'sim', 'confus', 'place', 'said', 'use', 'regular', 'sim', 'mine', 'use', 'regular', 'sim', 'think', 'could', 'mistaken', 'tool', 'purchas', 'cut', 'size', 'necessari', 'also', 'could', 'take', 'phone', 'oversea', 'pop', 'local', 'sim', 'card', 'would', 'work', 'fine'], ['bought', 'phone', 'though', 'excit', 'still', 'never', 'use', 'not', 'work', 'right', 'lag', 'slow', 'mess', 'like', 'someth', 'wrong', 'would', 'replac'], ['i', 'big', 'fan', 'galaxi', 'anyway', 'phone', 'great', 'inch', 'screen', 'perfect', 'watch', 'video', 'movi', 'camera', 'qualiti', 'great', 'also', 'front', 'camera', 'qualiti', 'good', 'also', 'record', 'video', 'hd', 'love', 'phone', 'fast', 'not', 'slow', 'various', 'app', 'run', 'time', 'problem', 'phone', 'not', 'unlock', 'receiv', 'call', 'seller', 'kind', 'provid', 'unlock', 'code', 'buy', 'phone', 'buy', 'wireless', 'expert', 'good', 'custom', 'servic'], ['job', 'intend', 'also', 'bought', 'one', 'galaxi', 'phone', 'not', 'work', 'phone', 'not', 'work', 'well', 'could', 'not', 'get', 'bubbl', 'take'], ['good', 'experi', 'skyrocket', 'came', 'fifth', 'day', 'phone', 'look', 'flawless', 'worl', 'flawless', 'would', 'absolut', 'recommend', 'us', 'wireless', 'good', 'sourc', 'thank', 'us', 'wireless', 'elli'], ['straight', 'talk', 'phone', 'great', 'carrier', 'charg', 'batteri', 'insert', 'sim', 'card'], ['love', 'phone', 'best', 'phone', 'ever', 'bought', 'amazon', 'stylish', 'colour', 'fast', 'love', 'app', 'would', 'recommend', 'phone', 'anyon', 'want', 'style', 'technolog'], ['great', 'phone', 'back', 'current', 'howev', 'purchas', 'two', 'month', 'later', 'becom', 'quit', 'laggi', 'time', 'appar', 'reason', 'tri', 'clean', 'bloatwar', 'thing', 'noth', 'seem', 'caus', 'problem', 'abl', 'fix', 'not', 'sure', 'issu', 'realli', 'nice', 'phone', 'first', 'part', 'nice', 'big', 'clear', 'display', 'howev', 'still', 'function', 'okay', 'time', 'occasion', 'sit', 'wait', 'second', 'nowher', 'even', 'light', 'task'], ['love', 'first', 'android', 'keeper', 'first', 'worri', 'size', 'big', 'given', 'nice', 'screen', 'size', 'manag', 'comfort', 'today', 'otter', 'case', 'arriv', 'fit', 'nice', 'make', 'phone', 'bulkier', 'h', 'p', 'electron', 'ship', 'fast', 'unlock', 'advertis', 'problem', 'get', 'work', 'call', 'samsung', 'said', 'happen', 'sometim', 'advis', 'factori', 'reset', 'problem', 'fix', 'i', 'samsung', 'phone', 'nice', 'job', 'preload', 'app', 'get', 'delet', 'side', 'great', 'phone', 'think', 'son', 'alreadi', 'eye', 'one'], ['bought', 'unlock', 'galaxi', 'ii', 'cell', 'phone', 'first', 'not', 'come', 'unlock', 'took', 'day', 'solv', 'cell', 'not', 'charg', 'plug', 'connect', 'via', 'went', 'samsung', 'dealer', 'result', 'main', 'board', 'contain', 'sulfat', 'happen', 'got', 'cell', 'phone', 'wet', 'humid', 'electr', 'creat', 'sulfat', 'told', 'not', 'expert', 'cours', 'not', 'put', 'cell', 'phone', 'water', 'not', 'sure', 'receiv', 'brand', 'new', 'galaxi', 'disappoint', 'galaxi', 'side', 'iphon', 'user', 'last', 'year', 'seen', 'galaxi', 'amaz', 'app', 'paid', 'appstor', 'free', 'android', 'market', 'bigger', 'area', 'slimmer', 'hope', 'solv', 'issu', 'enjoy', 'write', 'tell', 'end'], ['first', 'cell', 'phone', 'year', 'honest', 'not', 'know', 'expect', 'arriv', 'start', 'play', 'around', 'littl', 'must', 'say', 'phone', 'must', 'not', 'want', 'spend', 'crazi', 'amount', 'money', 'first', 'time', 'phone', 'everyth', 'want'], ['not', 'bad', 'se', 'not', 'work', 'well', 'one', 'phone', 'old', 'batteri', 'not', 'hold', 'charg', 'whole', 'day', 'also', 'one', 'would', 'turn', 'batteri', 'icon', 'yellow', 'phone', 'seem', 'ok', 'not', 'compat', 'carrier', 'return', 'got', 'phone', 'amazon', 'awesom', 'return'], ['fist', 'got', 'phone', 'one', 'year', 'ago', 'first', 'came', 'love', 'need', 'anoth', 'one', 'phone', 'great', 'first', 'week', 'would', 'restart', 'could', 'not', 'answer', 'incom', 'call', 'peopl', 'would', 'text', 'would', 'not', 'abl', 'see', 'messag', 'respond', 'start', 'great', 'turn', 'sour'], ['phone', 'suppos', 'new', 'phone', 'refurbish', 'phone', 'dead', 'batteri', 'headset', 'user', 'guid', 'charger', 'not', 'even', 'origin', 'samsung', 'tri', 'charg', 'phone', 'get', 'real', 'hot', 'not', 'worst', 'servic', 'ever', 'got', 'want', 'money', 'back'], ['excel', 'cell', 'came', 'perfecct', 'follow', 'purchas'], ['first', 'receiv', 'counterfeit', 'version', 'amazon', 'warehous', 'deal', 'problem', 'remedi', 'turn', 'great', 'phone', 'like', 'much', 'better', 'regular', 'own', 'good', 'perform', 'batteri', 'life', 'reliabl'], ['updat', 'phone', 'not', 'unlock', 'flash', 'phone', 'work', 'stock', 'rom', 'research', 'discov', 'phone', 'never', 'truli', 'unlock', 'phone', 'advertis', 'unlock', 'phone', 'lie', 'extra', 'virgin', 'tech', 'not', 'truli', 'unlock', 'phone', 'tri', 'subvert', 'network', 'lock', 'instal', 'custom', 'rom', 'oper', 'system', 'phone', 'problem', 'work', 'network', 'network', 'phone', 'origin', 'lock', 'instal', 'stock', 'rom', 'phone', 'work', 'fine', 'could', 'not', 'use', 'network', 'requir', 'network', 'unlock', 'key', 'unlock', 'phone', 'talk', 'android', 'phone', 'expert', 'inform', 'flash', 'phone', 'custom', 'rom', 'instal', 'new', 'os', 'not', 'truli', 'unlock', 'phone', 'network', 'lock', 'part', 'firmwar', 'phone', 'not', 'oper', 'system', 'softwar', 'phone', 'phone', 'truli', 'firmwar', 'unlock', 'remain', 'unlock', 'regardless', 'mani', 'time', 'phone', 'flash', 'new', 'virgin', 'tech', 'never', 'unlock', 'phone', 'su', 'say', 'still', 'not', 'answer', 'email', 'amazon', 'asham', 'allow', 'seller', 'sell', 'give', 'phone', 'star', 'evt', 'star', 'amaxon', 'get', 'star', 'let', 'evt', 'sell', 'review', 'bought', 'phone', 'amazon', 'extra', 'virgin', 'tech', 'evt', 'short', 'phone', 'great', 'evt', 'load', 'custom', 'oper', 'system', 'rom', 'call', 'cyanogenmod', 'rom', 'bare', 'bone', 'rom', 'limit', 'function', 'known', 'problem', 'not', 'work', 'servic', 'tri', 'call', 'evt', 'find', 'phone', 'number', 'got', 'email', 'amazon', 'sent', 'email', 'never', 'respond', 'took', 'two', 'day', 'figur', 'problem', 'way', 'fix', 'problem', 'flash', 'phone', 'stock', 'rom', 'samsung', 'took', 'long', 'time', 'sinc', 'never', 'done', 'anyth', 'like', 'first', 'two', 'attempt', 'result', 'phone', 'stuck', 'start', 'screen', 'scare', 'crud', 'hour', 'search', 'found', 'fix', 'phone', 'work', 'love', 'phone', 'warn', 'not', 'order', 'extra', 'virgin', 'tech', 'put', 'crappi', 'dysfunct', 'rom', 'phone', 'offer', 'tech', 'support', 'custom', 'servic'], ['steal', 'not', 'look', 'display', 'unit', 'seem', 'new', 'descript', 'correct', 'number', 'leav', 'shadow', 'due', 'left', 'burn', 'screen', 'happen', 'new', 'phone', 'year', 'anyway'], ['month', 'phone', 'stop', 'read', 'sim', 'card', 'use', 'would', 'not', 'recom'], ['awesom', 'phone', 'got', 'deliveri', 'date', 'great', 'price', 'also', 'busi', 'seller', 'anytim', 'ty', 'ty', 'ty'], ['not', 'want', 'money', 'back'], ['far', 'phone', 'perform', 'great', 'batteri', 'life', 'realli', 'good', 'perform', 'expect', 'thing', 'realli', 'not', 'like', 'fact', 'wire', 'headphon', 'littl', 'bit', 'bent', 'almost', 'damag', 'look', 'use', 'work', 'biggi'], ['love', 'phone', 'not', 'get', 'enough', 'great', 'choic', 'thank', 'best', 'phone'], ['samsung', 'galaxi', 'phone', 'awesom', 'convert', 'die', 'hard', 'appl', 'phone', 'user', 'say', 'enough', 'thanx'], ['seller', 'said', 'lcd', 'screen', 'work', 'not', 'big', 'waist', 'money'], ['first', 'would', 'like', 'say', 'buy', 'thing', 'amazon', 'great', 'buy', 'cell', 'phone', 'disast', 'receiv', 'phone', 'everyth', 'look', 'good', 'soon', 'seen', 'light', 'would', 'not', 'come', 'made', 'phone', 'useless', 'attempt', 'return', 'phone', 'could', 'not', 'replac', 'needless', 'say', 'repair', 'phone', 'cost', 'money'], ['purchas', 'unlock', 'gift', 'someon', 'want', 'second', 'phone', 'good', 'unlock', 'smartphon', 'price', 'also', 'purchas', 'sd', 'card', 'case', 'phone', 'would', 'recommend', 'phone', 'yes'], ['perfect'], ['samsung', 'galaxi', 'misrepres', 'sprint', 'cellphon', 'sprint', 'store', 'repres', 'advis', 'scan', 'barcod', 'phone', 'actual', 'prepaid', 'phone', 'could', 'never', 'activ', 'sprint', 'network', 'therefor', 'product', 'unus', 'return', 'amazon'], ['i', 'phone', 'day', 'alreadi', 'call', 'custom', 'support', 'center', 'twice', 'would', 'not', 'let', 'make', 'receiv', 'call', 'text', 'messag', 'look', 'new', 'phone', 'would', 'advis', 'look', 'els', 'disappoint', 'custom'], ['got', 'phone', 'month', 'later', 'got', 'fri', 'screen', 'went', 'black', 'charg', 'overnight', 'amazon', 'want', 'noth', 'samsung', 'told', 'not', 'cover', 'kind', 'damag', 'amount', 'money', 'cost', 'total', 'rip', 'still', 'not', 'believ'], ['logo', 'print', 'front', 'load', 'softwar', 'total', 'unlock', 'phone', 'use', 'network', 'want', 'give', 'miss'], ['great', 'phone', 'want', 'batteri', 'life', 'awe', 'though', 'faster', 'processor', 'look', 'solut'], ['work', 'fine', 'temp', 'cell', 'wait', 'upgrad'], ['use', 'straighttalk', 'plan', 'problem'], ['not', 'download', 'app', 'last', 'review', 'phone', 'case', 'purchas', 'amazon', 'phone', 'not', 'download', 'app'], ['i', 'still', 'learn', 'devic', 'must', 'say', 'quit', 'versatil', 'use', 'tool', 'anyon', 'irrespect', 'profess', 'involv'], ['great', 'deal'], ['greet', 'friend', 'rate', 'low', 'mention', 'titl', 'buy', 'unlock', 'phone', 'not', 'true', 'not', 'unlock', 'thus', 'use', 'line', 'network', 'use', 'purchas', 'articl', 'accord', 'notificaba', 'unlock', 'phone'], ['phone', 'problem', 'month', 'stop', 'work', 'complet', 'worst', 'purchas', 'ever', 'made', 'amazon', 'galaxi', 'ii', 'one', 'not', 'compar', 'mayb', 'work', 'great', 'would', 'weari', 'least', 'realiz', 'may', 'problem', 'one', 'instanc', 'get', 'pay'], ['i', 'alway', 'like', 'samsung', 'phone', 'one', 'best', 'i', 'look', 'unlock', 'gsm', 'cellphon', 'buy', 'not', 'regret'], ['phone', 'sweet', 'fast', 'smooth', 'oper', 'easi', 'use', 'size', 'easi', 'phone', 'ever', 'happi'], ['greet', 'venezuela', 'excelent', 'producto', 'fue', 'enviado', 'correctament', 'en', 'buen', 'estado', 'el', 'equipo', 'funciona', 'esperaba', 'que', 'viniera', 'con', 'audifono'], ['like', 'not', 'unlok'], ['work', 'good', 'far', 'came', 'unlock', 'compat', 'caribbean', 'work', 'b', 'mobil', 'sim', 'card'], ['marvelth', 'team', 'day', 'realli', 'wonder', 'i', 'venezuela', 'data', 'plan', 'movilnet', 'still', 'state', 'not', 'lift', 'connect', 'liter', 'fli', 'not', 'qualifi', 'star', 'function', 'charg', 'batteri', 'long', 'life', 'music', 'player', 'bit', 'annoy', 'use', 'put', 'song', 'song', 'attribut', 'inexperi', 'world', 'smartphon', 'furthermor', 'actual', 'clarifi', 'sgh', 'case', 'even', 'specifi', 'realli', 'realli', 'recommend', 'buy', 'comput', 'vendedpr', 'eye', 'close', 'respons', 'worthwhil', 'experi', 'android'], ['read', 'hype', 'came', 'not', 'sure', 'would', 'happi', 'lesser', 'model', 'plus', 'lust', 'huge', 'screen', 'galaxi', 'note', 'wonder', 'whether', 'buy', 'one', 'happi', 'say', 'not', 'imagin', 'happier', 'either', 'two', 'phone', 'phone', 'amaz', 'fast', 'wonder', 'display', 'voic', 'recognit', 'softwar', 'excel', 'seller', 'great', 'job', 'ship', 'phone', 'phone', 'arriv', 'exact', 'problem', 'live', 'work', 'egypt', 'came', 'home', 'summer', 'went', 'older', 'phone', 'not', 'yet', 'arriv', 'ask', 'sim', 'card', 'whatev', 'plan', 'could', 'give', 'keep', 'connect', 'next', 'two', 'month', 'hook', 'gophon', 'said', 'could', 'add', 'data', 'plan', 'new', 'phone', 'arriv', 'got', 'put', 'sim', 'card', 'call', 'add', 'data', 'plan', 'hour', 'still', 'could', 'not', 'connect', 'call', 'said', 'sinc', 'phone', 'data', 'plan', 'gophon', 'went', 'local', 'store', 'took', 'hour', 'get', 'hook', 'regular', 'account', 'not', 'lose', 'money', 'alreadi', 'spent', 'final', 'learn', 'could', 'gone', 'sever', 'carrier', 'half', 'price', 'needless', 'say', 'summer', 'not', 'interest', 'work', 'complaint', 'crapwar', 'add', 'phone', 'i', 'research', 'see', 'get', 'rid', 'not', 'offer', 'uninstal', 'featur', 'line', 'phone', 'everyth', 'hope', 'would', 'recommend', 'high', 'samsung', 'great', 'job', 'serious', 'need', 'get', 'act', 'togeth'], ['said', 'new', 'problem', 'not', 'beliv', 'say', 'new'], ['phone', 'great', 'problem'], ['great', 'qualiti'], ['perfect', 'condit', 'fast', 'day', 'prime', 'ship', 'pop', 'sim', 'card', 'work', 'excel', 'recommend'], ['like', 'phone', 'month', 'charg', 'port', 'not', 'work', 'told', 'common', 'phone', 'fix', 'use', 'extern', 'batteri', 'charger'], ['great', 'phone', 'work', 'fine'], ['galaxi', 'ii', 'nice', 'upgrad', 'droid', 'incred', 'want', 'keep', 'current', 'contract', 'reason', 'pay', 'sale', 'price', 'found', 'amazon', 'way', 'go'], ['make', 'mistak', 'tri', 'window', 'two', 'year', 'contract', 'verizon', 'final', 'found', 'phone', 'worth', 'keep', 'phone', 'came', 'time', 'brand', 'new', 'immedi', 'start', 'updat', 'not', 'given', 'problem'], ['diehard', 'iphon', 'person', 'drop', 'phone', 'one', 'mani', 'time', 'would', 'break', 'everi', 'time', 'drop', 'even', 'though', 'realli', 'good', 'case', 'fix', 'screen', 'everi', 'time', 'final', 'said', 'enough', 'enough', 'bought', 'phone', 'less', 'half', 'price', 'iphon', 'actual', 'not', 'break', 'slightest', 'drop', 'serious', 'could', 'drop', 'iphon', 'grass', 'would', 'broken', 'phone', 'everyth', 'iphon', 'actual', 'access', 'free', 'app', 'featur', 'go', 'android', 'never', 'go', 'back'], ['upgrad'], ['even', 'though', 'older', 'model', 'phone', 'run', 'smooth', 'today', 'app', 'screen', 'big', 'yet', 'not', 'big', 'not', 'oper', 'one', 'hand', 'batteri', 'life', 'okay', 'box', 'great', 'improv', 'froze', 'bloatwar', 'android', 'app', 'disabl', 'turn', 'without', 'root', 'access', 'exterior', 'design', 'thin', 'actual', 'bought', 'phone', 'temporari', 'use', 'switch', 'back', 'page', 'plus', 'verizon', 'futur', 'sim', 'card', 'slot', 'back', 'micro', 'sd', 'slot', 'call', 'text', 'data', 'sim', 'card', 'work', 'thing', 'get', 'edg', 'speed', 'data', 'not', 'phone', 'color', 'call', 'volum', 'low', 'seem', 'issu', 'run', 'android', 'turn', 'tti', 'full', 'call', 'set', 'seem', 'like', 'help'], ['love', 'phone'], ['product', 'describ', 'work', 'well'], ['seem', 'charg', 'port', 'problem', 'sometim', 'charg', 'sometim', 'stop', 'charg', 'problem'], ['good'], ['phone', 'two', 'major', 'camara', 'not', 'work', 'anyth', 'not', 'even', 'origin', 'camera', 'swype', 'type', 'featur', 'garbag', 'phone', 'random', 'capit', 'word', 'type', 'swype', 'recognit', 'horribl', 'etc', 'etc', 'make', 'call', 'brows', 'internet', 'fine'], ['phone', 'work', 'like', 'dream', 'happi', 'purchas', 'would', 'high', 'recommend', 'phone', 'other'], ['love'], ['batteri', 'life', 'suck', 'phone'], ['ok'], ['excel'], ['excel', 'cell', 'phone', 'great', 'perform', 'camera'], ['excel'], ['bueno'], ['everyth', 'great'], ['good', 'cell', 'phone', 'wifi', 'signal', 'bad'], ['excel', 'product', 'good', 'seller'], ['work', 'great', 'perfect', 'size', 'not', 'big', 'readabl', 'display', 'bought', 'daughter', 'cost', 'way', 'less', 'galaxi', 'mini', 'bought', 'function', 'similar', 'import', 'sinc', 'first', 'stop', 'tech', 'support', 'could', 'not', 'satisfi', 'differ', 'slight', 'tri', 'decid', 'two', 'phone', 'price', 'issu', 'go', 'one'], ['work', 'great', 'easi', 'setup'], ['i', 'much', 'satisfi', 'phone', 'son', 'love', 'sinc', 'bought', 'unlock', 'state', 'trustworthi', 'seller'], ['excelent'], ['good'], ['qualiti', 'item', 'seem', 'durabl'], ['excelent'], ['good'], ['good', 'attent', 'get', 'product', 'time', 'perfect', 'condit', 'good', 'qualiti', 'much', 'charm', 'recommend', 'entir', 'communiti', 'amazon'], ['buen', 'teléfono', 'la', 'pila', 'un', 'poco', 'delicada', 'con', 'el', 'calor'], ['thing', 'charger', 'plug', 'european', 'box', 'not', 'adaptor', 'find', 'anoth', 'charger', 'phone'], ['order', 'product', 'sight', 'littl', 'scari', 'first', 'step', 'easi'], ['nice'], ['good'], ['excel'], ['excel', 'phone', 'recommend', 'fast', 'deliveri', 'amaz', 'function', 'thank'], ['without', 'problem', 'camera', 'minor', 'detail', 'photo', 'come', 'speck', 'thank', 'much', 'greet'], ['excel', 'phone'], ['excel', 'cell', 'brought', 'everyth', 'describ', 'articl'], ['excelent'], ['excel'], ['excelent'], ['exelent'], ['product', 'expect', 'excel'], ['excelent'], ['work', 'fine', 'movilnet', 'venezuela'], ['sinc', 'first', 'smartphon', 'enough', 'learn', 'curv', 'call', 'phone', 'howev', 'come', 'enjoy', 'use', 'prefer', 'android', 'anoth', 'oper', 'system'], ['live', 'bahama', 'cell', 'work', 'great', 'love', 'technolog', 'easi', 'usag', 'devic', 'would', 'recommend'], ['excelent'], ['thx'], ['total', 'satisfi', 'mini', 'howev', 'manual', 'came', 'everi', 'languag', 'despis', 'go', 'download', 'pdf', 'never', 'use', 'phone', 'not', 'comput', 'left', 'dark', 'samsung', 'afford', 'send', 'high', 'recommend', 'phone', 'tightwad', 'samsung', 'need', 'get', 'togeth', 'star', 'phone', 'star', 'custom', 'consider'], ['origin', 'purchas', 'spare', 'start', 'use', 'full', 'size', 'galaxi', 'ii', 'misplac', 'batteri', 'life', 'better', 'full', 'size', 'ii', 'issu', 'found', 'smaller', 'keyboard', 'would', 'buy', 'anoth', 'one'], ['loyal', 'nokia', 'user', 'mani', 'mani', 'year', 'bad', 'nokia', 'experi', 'late', 'final', 'took', 'friend', 'advic', 'tri', 'samsung', 'much', 'hesit', 'i', 'love', 'everyth', 'instal', 'anoth', 'input', 'languag', 'figur', 'interfac', 'phone', 'need', 'option', 'turn', 'sound', 'download', 'app', 'not', 'seem', 'like', 'best', 'solut', 'work'], ['excel', 'fast', 'problem'], ['great', 'smartphon'], ['buen', 'producto'], ['good'], ['muy', 'bueno'], ['good'], ['excel'], ['great', 'product', 'great', 'phone', 'great', 'price', 'quick', 'ship', 'best', 'price', 'new', 'unlock', 'mini', 'lot', 'would', 'recommend', 'seller', 'anyon', 'look', 'new', 'unlock', 'phone'], ['gift', 'son', 'told', 'exceed', 'expect', 'versatil', 'uniqu', 'softwar', 'son', 'chang', 'samsung', 'galaxi', 'ii', 'previous', 'new', 'devic'], ['bien'], ['love', 'better', 'expect', 'pleas', 'bought', 'perfect', 'everi', 'graciess'], ['great', 'would', 'buy', 'vendor'], ['chose', 'give', 'phone', 'love', 'easi', 'use', 'neither', 'larg', 'small', 'perfect', 'download', 'sever', 'applic'], ['phone', 'fine', 'not', 'spanish', 'languag', 'menu'], ['excel', 'product', 'good', 'qualiti', 'meet', 'expect', 'color', 'design', 'finish', 'expect', 'price', 'ratio', 'good', 'articl'], ['love', 'phone', 'miss', 'abl', 'put', 'want', 'card', 'get', 'around', 'issu', 'fast', 'love', 'size', 'big', 'enough', 'not', 'strain', 'eye', 'easi', 'hold', 'true', 'english', 'manual', 'not', 'includ', 'not', 'pc', 'due', 'hous', 'fire', 'go', 'use', 'comput', 'offic', 'apart', 'resid', 'use', 'print', 'mani', 'communiti', 'librari', 'comput', 'printer', 'problem', 'thus', 'far', 'own', 'coupl', 'month'], ['good'], ['machin', 'recomend'], ['love', 'beauti', 'phone', 'thank'], ['word', 'mini', 'miss', 'order', 'found', 'receiv', 'sent', 'oversea', 'africa', 'work', 'also', 'samsung', 'galaxi', 'ii', 'sgh', 'tle', 'unlock', 'white', 'color', 'let', 'know', 'price', 'thank', 'ask', 'follow', 'good', 'product', 'want', 'use', 'old', 'sim', 'card'], ['excel', 'smartphon', 'son'], ['excel'], ['item', 'arriv', 'packag', 'seal', 'phone', 'star', 'part', 'charger', 'piec', 'plug', 'wall', 'outlet', 'not', 'contact', 'time', 'trip', 'jamaica'], ['love', 'phone', 'read', 'review', 'buy', 'one', 'someon', 'said', 'not', 'come', 'charger', 'mine', 'funni', 'look', 'one', 'work', 'appar', 'oversea', 'connector', 'us', 'i', 'day', 'get', 'far', 'good'], ['everyth', 'good'], ['gracia'], ['use', 'phone', 'research', 'area', 'africa', 'far', 'exceed', 'expect', 'inform', 'provid'], ['got', 'refurbish'], ['best', 'phone', 'i', 'ever', 'not', 'say', 'much', 'i', 'not', 'much', 'techi', 'want', 'phone', 'work', 'not', 'mani', 'glitch', 'previous', 'phone', 'i', 'two', 'thing', 'bother', 'slick', 'kind', 'easi', 'drop', 'not', 'voic', 'text'], ['great', 'phone', 'not', 'break', 'bank', 'everyth', 'need', 'notic', 'review', 'said', 'gps', 'never', 'work', 'i', 'use', 'trip', 'state', 'seem', 'get', 'need', 'go', 'pretti', 'effici'], ['great'], ['great', 'phone', 'must', 'cheaper'], ['ok'], ['perfect', 'love'], ['use', 'month', 'everyth', 'good', 'far', 'batteri', 'last', 'one', 'day', 'half', 'i', 'satisfi', 'product'], ['good'], ['ok', 'prefect'], ['real', 'intern', 'smart', 'phone', 'still', 'work'], ['phone', 'came', 'lock', 'i', 'anoth', 'countri', 'useless', 'thing', 'hand', 'not', 'recommend', 'buy', 'irrespons', 'not', 'work', 'realli', 'not', 'intern', 'releas', 'state', 'public', 'phone', 'use', 'itali', 'specif'], ['happi', 'new', 'phone', 'nice', 'fast', 'recommend'], ['came', 'not', 'unlock', 'intern', 'accept', 'european', 'sim', 'return'], ['love', 'phone'], ['great', 'phone', 'speedi', 'work', 'amaz'], ['work', 'sturdi', 'not', 'fail', 'yet'], ['love', 'work', 'like', 'new'], ['week', 'much', 'function', 'use', 'got', 'devic', 'turn', 'hear', 'sound', 'screen', 'black', 'stay', 'black', 'matter', 'tri', 'onlin', 'search', 'see', 'combin', 'button', 'press', 'could', 'bring', 'screen', 'back', 'luck', 'found', 'lot', 'case', 'like', 'samsung', 'galaxi', 'line', 'known', 'issu', 'unfortun', 'past', 'return', 'window', 'not', 'abl', 'return', 'paper', 'weight'], ['work'], ['batteri', 'realli', 'bad', 'use', 'coupl', 'month', 'keep', 'die', 'charger', 'not', 'look', 'origin', 'well', 'i', 'troubl', 'charg'], ['bought', 'three', 'phone', 'within', 'five', 'day', 'two', 'issu', 'camera', 'not', 'work', 'phone', 'not', 'charg', 'third', 'stop', 'charg', 'day', 'day', 'warranti', 'three', 'new', 'phone', 'like', 'phone', 'unreli'], ['got', 'replac', 'old', 'motorola', 'run', 'slow', 'alreadi', 'samsung', 'tablet', 'love', 'decid', 'tri', 'samsung', 'phone', 'phone', 'work', 'better', 'new', 'phone', 'i', 'ever', 'easi', 'set', 'compat', 'sim', 'card', 'alreadi', 'get', 'lie', 'hit', 'charg', 'batteri', 'could', 'better', 'drain', 'fast', 'use', 'thing', 'not', 'stop', 'use', 'adjust', 'still', 'love', 'i', 'definit', 'consid', 'buy', 'refurbish', 'samsung', 'futur', 'i', 'brag', 'advertis', 'lot', 'peopl', 'know'], ['good', 'purchas', 'phone', 'replac', 'lost', 'still', 'year', 'half', 'left', 'verizon', 'abl', 'get', 'necessari', 'sim', 'card', 'free', 'verizon', 'would', 'not', 'mail', 'sim', 'hesit', 'give', 'five', 'star', 'i', 'refirbish', 'hope', 'last', 'remaind', 'contract'], ['nice', 'phone', 'work', 'great'], ['wow', 'came', 'new', 'box', 'pleas', 'great', 'product'], ['product', 'ok', 'minor', 'difficulti'], ['좋군', 'good'], ['bought', 'wife', 'one', 'love', 'high', 'qualiti', 'phone', 'option', 'would', 'want', 'cell', 'phone'], ['product', 'sold', 'describ', 'complaint', 'product', 'work', 'wonder', 'advertis', 'would', 'definit', 'busi'], ['item', 'receiv', 'good', 'go', 'not', 'complain', 'recommend', 'friend', 'buy', 'save', 'moneypleas', 'keep', 'good', 'job', 'custom', 'love', 'like', 'thank'], ['phone', 'absolut', 'meet', 'descript', 'seller', 'ship', 'fast', 'even', 'faster', 'expect'], ['faulti', 'logic', 'board'], ['ship', 'faster', 'tought', 'well', 'wrape', 'ensur', 'noth', 'happen', 'sure', 'know', 'te', 'phone', 'look', 'like', 'brand', 'new', 'not', 'even', 'singl', 'scratch', 'descriv', 'use', 'two', 'day', 'work', 'flawless', 'love', 'thank', 'much', 'i', 'realli', 'pleas'], ['phone', 'awesom', 'best', 'phone', 'world', 'never', 'find', 'better', 'problem', 'late', 'ship', 'expens', 'not', 'one', 'afford', 'price'], ['batteri', 'last', 'hour'], ['great', 'phone'], ['boght', 'new', 'start', 'give', 'problem', 'immedi', 'took', 'repairman', 'open', 'surpris', 'repair', 'amazon', 'pleas', 'pay', 'atent', 'qualiti'], ['good', 'cell'], ['fast', 'ship', 'retail', 'box', 'pack', 'bubbl', 'wrap', 'pack', 'insid', 'anoth', 'box', 'insur', 'surviv', 'usp', 'gb', 'intern', 'memori', 'minus', 'gb', 'att', 'bloatwar', 'leav', 'lot', 'space', 'app', 'fire', 'stuck', 'bring', 'phone', 'straight', 'talk', 'micro', 'sim', 'card', 'old', 'phone', 'mini', 'sim', 'follow', 'instruct', 'make', 'call', 'minut', 'set', 'apn', 'info', 'straight', 'talk', 'site', 'get', 'internet', 'amazon', 'best'], ['samsung', 'galaxi', 'good', 'product', 'l', 'like', 'problem', 'far'], ['love'], ['enjoy', 'year', 'ago', 'not', 'mind', 'bought', 'use', 'evan', 'deal', 'everyth', 'work', 'well', 'complaint', 'unlock', 'advertis'], ['excel', 'phone', 'work', 'well'], ['phone', 'work', 'great', 'got', 'today'], ['love', 'phone'], ['good', 'phone', 'litter', 'problem', 'scrime', 'ok', 'time', 'frize', 'restart', 'alon', 'wene', 'usea', 'game'], ['got', 'phone', 'awesom', 'root', 'work', 'great', 'prepaid', 'connect', 'work', 'amaz', 'compar', 'friend', 'nexus', 'phone', 'still', 'better', 'high', 'recommend'], ['samsung', 'galaxi', 'one', 'love', 'said', 'brand', 'new', 'knew', 'not', 'true', 'figur', 'good', 'touch', 'screen', 'alway', 'constant', 'throw', 'app', 'goe', 'home', 'screen', 'show', 'app', 'not', 'know', 'describ', 'month', 'fail', 'fast', 'suppos', 'longer', 'return', 'refund', 'date', 'day', 'i', 'realli', 'not', 'happi'], ['first', 'smartphon', 'use', 'two', 'month', 'love', 'kind', 'book', 'includ', 'bibl', 'dictionari', 'play', 'game', 'friend', 'import', 'stay', 'touch', 'kid', 'communic', 'messag', 'pictur', 'video', 'like', 'feel', 'phone', 'super', 'easi', 'use', 'thing', 'not', 'like', 'way', 'switch', 'close', 'app', 'problem', 'actual', 'go', 'home', 'screen', 'open', 'list', 'run', 'app', 'feel', 'clumsi', 'compar', 'everyth', 'els', 'phone', 'run', 'would', 'recommend', 'phone', 'anyon', 'learn', 'smartphon', 'daughter', 'teas', 'not', 'latest', 'greatest', 'save', 'seem', 'total', 'worth'], ['batteri', 'last', 'hr', 'emei', 'sticker', 'back', 'print', 'normal', 'paper', 'origin', 'sticker', 'chang', 'red', 'white', 'water', 'damag', 'remov', 'normal', 'due', 'water', 'damag', 'phone', 'headphon', 'not', 'origin', 'white', 'color', 'give', 'black', 'cheap', 'samsung', 'headset', 'awar', 'not', 'buy', 'softwar', 'also', 'not', 'work', 'proper', 'return', 'buy', 'brand', 'new', 'intern', 'unlock', 'version', 'amazon', 'know', 'get', 'quad', 'core', 'instead', 'dual', 'core', 'plus', 'get', 'brand', 'new', 'phone', 'cheater', 'seller'], ['love', 'phone', 'recommend', 'phone', 'anyon', 'want', 'great', 'phone', 'love', 'galaxi', 'ii', 'could', 'not', 'better'], ['came', 'exact', 'describ', 'phone', 'almost', 'month', 'great', 'would', 'recommend'], ['problem', 'phone', 'horribl', 'signal', 'otherwis', 'phone', 'great'], ['greatest', 'phone', 'ever', 'own', 'glad', 'bought', 'glad'], ['phone', 'bad', 'condit', 'microphon', 'not', 'work', 'lot', 'scratch', 'time', 'began', 'work', 'hard', 'want', 'buy', 'buy', 'new', 'one'], ['power', 'download', 'googl', 'speech', 'recognit', 'languag', 'translat', 'android', 'softwar', 'phone', 'work', 'real', 'time', 'near', 'flawless', 'work', 'well', 'extrem', 'work', 'well', 'even', 'network', 'pleasant', 'surpris', 'find', 'gb', 'intern', 'flash', 'extern', 'flash', 'lot', 'tune', 'case', 'ram', 'never', 'gotten', 'memori', 'exceed', 'error', 'messag', 'ram', 'special', 'version', 'big', 'deal', 'unlock', 'instead', 'due', 'short', 'batteri', 'life', 'hint', 'shut', 'gps', 'bluetooth', 'wifi', 'not', 'need', 'gps', 'especi', 'power', 'hog', 'umt', 'band', 'one', 'band', 'still', 'work', 'ok', 'often', 'edg', 'rather', 'hspa', 'edg', 'realli', 'slow', 'probabl', 'get', 'phone', 'get', 'weird', 'camera', 'good', 'way', 'handl', 'backlight', 'without', 'flash', 'stop', 'exposur', 'seem', 'noth', 'mayb', 'miss', 'someth'], ['excel', 'use', 'product'], ['bien'], ['bought', 'galaxi', 'ii', 'last', 'month', 'servic', 'sinc', 'januari', 'anoth', 'buyer', 'state', 'bewar', 'seller', 'purchas', 'phone', 'purchas', 'mine', 'jp', 'mobil', 'llc', 'amazon', 'fullfil', 'shipment', 'phone', 'accessori', 'oem', 'compon', 'i', 'regist', 'phone', 'samsung', 'web', 'site', 'receiv', 'confirm', 'manufactur', 'full', 'warranti', 'phone', 'arriv', 'new', 'unlock', 'advertis', 'present', 'straight', 'talk', 'servic', 'provid', 'far', 'phone', 'perform', 'flawless'], ['phone', 'great', 'love', 'thank', 'much', 'phone', 'awesom', 'amount', 'space', 'great'], ['phone', 'absolut', 'meet', 'descript', 'seller', 'ship', 'fast', 'even', 'faster', 'expect'], ['love', 'cellphon', 'i', 'still', 'use', 'work', 'perfect'], ['perfect', 'condit', 'money', 'well', 'spent', 'thank', 'also', 'huge', 'upgrad', 'galaxi', 'everyth', 'look', 'new', 'said', 'like', 'new', 'look', 'brand', 'new'], ['bought', 'two', 'phone', 'come', 'batteri', 'not', 'compat', 'devic', 'smaller', 'not', 'recommend'], ['great', 'phone'], ['great', 'build', 'qualiti', 'physic', 'button', 'water', 'impact', 'open', 'box', 'unlock', 'root', 'avail', 'via', 'geohot', 'activeroot', 'tool'], ['love', 'phone', 'even', 'better', 'expect', 'love', 'fast', 'use', 'straighttalk'], ['excel'], ['not', 'inform', 'constant', 'shut', 'came', 'numer', 'pic', 'could', 'not', 'delet', 'phone', 'not', 'prepar', 'sale', 'anoth', 'result', 'return', 'phone', 'purchas', 'new', 'one', 'i', 'wait', 'refund'], ['keep', 'shut', 'hot', 'put', 'pocket', 'phone', 'freez', 'use', 'snow', 'rain', 'not', 'satisfi', 'not', 'come', 'warranti', 'guess', 'deal', 'call', 'manufactur', 'said', 'not', 'normal', 'freez', 'call', 'seller', 'mani', 'time', 'explain', 'situat', 'one', 'pick'], ['simpli', 'samsung', 'galaxi', 'activ', 'best', 'resolut', 'video', 'qualiti', 'audio', 'great', 'i', 'happi', 'new', 'phone'], ['gracia'], ['excelent'], ['excelent'], ['serious', 'respons', 'compani', 'good', 'product', 'recommend'], ['excel'], ['give', 'star', 'phone', 'gift', 'reciev', 'seem', 'happi'], ['perfecta', 'condicion'], ['great', 'deal', 'exact', 'look'], ['stolen', 'could', 'not', 'upgrad', 'not', 'want', 'pay', 'full', 'price', 'big', 'box', 'store', 'phone', 'arriv', 'packag', 'perfect', 'shape', 'upgrad', 'glad', 'got', 'lot', 'newer', 'featur', 'make', 'phone', 'intuit', 'pictur', 'video', 'qualiti', 'outstand', 'abl', 'talk', 'look', 'internet', 'time', 'well', 'thing', 'good', 'batteri', 'life', 'depend', 'app', 'got'], ['awesom', 'gift'], ['great', 'way', 'better', 'expect'], ['first', 'smart', 'phone', 'user', 'friend', 'get', 'use', 'touch', 'screen'], ['great', 'phone', 'anyth', 'want', 'phone', 'good', 'batteri', 'internet', 'speed', 'overal', 'great', 'phone'], ['wonder', 'would'], ['got', 'year', 'old', 'son', 'replac', 'iphon', 'love'], ['stolen', 'could', 'not', 'upgrad', 'not', 'want', 'pay', 'full', 'price', 'big', 'box', 'store', 'phone', 'arriv', 'packag', 'perfect', 'shape', 'upgrad', 'glad', 'got', 'lot', 'newer', 'featur', 'make', 'phone', 'intuit', 'pictur', 'video', 'qualiti', 'outstand', 'abl', 'talk', 'look', 'internet', 'time', 'well', 'thing', 'good', 'batteri', 'life', 'depend', 'app', 'got'], ['i', 'love', 'new', 'phone', 'seem', 'like', 'i', 'sure', 'play', 'i', 'find'], ['great', 'phone', 'wonder', 'screen', 'size', 'anyth', 'need', 'done', 'smart', 'phone', 'could', 'not', 'keep', 'phone', 'not', 'compat', 'tracfon', 'system', 'otherwis', 'would', 'phone', 'primari'], ['arriv', 'broken'], ['origin', 'purchas', 'phone', 'crack', 'screen', 'repair', 'littl', 'prici', 'work', 'good', 'use', 'cours', 'technolog', 'mobil', 'devic', 'never', 'problem', 'free', 'i', 'happi', 'price', 'paid', 'sad', 'not', 'water', 'resist', 'like', 'galaxi', 'i', 'own'], ['gave', 'phone', 'son', 'need', 'replac', 'friend', 'toss', 'one', 'broke', 'replac', 'phone', 'use', 'sim', 'card', 'old', 'one', 'pop', 'one', 'year', 'ad', 'work', 'great'], ['not', 'work', 'call', 'sim', 'port', 'not', 'work', 'nice', 'phone', 'would', 'fix', 'not', 'pleas'], ['great', 'phone', 'describ', 'buy'], ['wonder', 'glad', 'abl', 'find', 'phone', 'given', 'ladi', 'south', 'africa', 'christma', 'present', 'work', 'fine'], ['good'], ['work', 'fine'], ['happi', 'phone', 'everyth', 'perfect'], ['ok', 'excel'], ['good'], ['good'], ['sell', 'item', 'samsung', 'lie', 'item', 'version', 'screen', 'broken', 'not', 'find', 'screen', 'phone', 'i', 'dissapoint', 'item'], ['item', 'problem', 'sim', 'card', 'remov', 'traumat', 'time', 'time', 'face', 'problem', 'cell', 'phone', 'data', 'cabl', 'not', 'good', 'not', 'fix', 'proper', 'cell', 'phone', 'charg'], ['use', 'nexus', 'light', 'fast', 'brows', 'download', 'live', 'stream', 'due', 'processor', 'bought', 'product', 'not', 'good', 'like', 'nexus', 'slow', 'not', 'like', 'use', 'product', 'processor', 'slow', 'mani', 'option', 'work', 'condit', 'wast', 'money', 'camera', 'good', 'pixel', 'advantag', 'nexus'], ['nice'], ['sweeti', 'think', 'best', 'get', 'phone', 'noth', 'not', 'like', 'carri', 'bosom', 'kid', 'guess', 'good', 'doggi', 'mee', 'yeahh'], ['best', 'phone', 'i', 'person', 'recommend', 'seller', 'phone', 'quit', 'fast', 'aspect', 'good', 'qualiti', 'imag', 'happi', 'purchas'], ['phone', 'emensli', 'great', 'love', 'everyth', 'easi', 'phone', 'seller', 'acur', 'ship', 'provid', 'great', 'surv', 'real', 'not', 'fake', 'iteam'], ['love', 'everyth', 'bigger', 'iphon', 'clear', 'pictur', 'screen', 'look', 'better', 'iphon', 'screen', 'download', 'comput', 'not', 'realli', 'better', 'iphon', 'photo', 'icon', 'not', 'easi', 'organ', 'receiv', 'charger', 'european', 'adapt', 'convert', 'peac', 'not', 'work'], ['excel', 'continu', 'well'], ['best', 'color', 'wonderful', 'live', 'costa', 'rica', 'use', 'phone', 'without', 'problem', 'fast', 'unlock', 'chang', 'chip', 'begin', 'good', 'love', 'cellphon', 'ship', 'day'], ['excel'], ['great', 'phone', 'like', 'work', 'great', 'purchas', 'open', 'group', 'wireless', 'merchant', 'receiv', 'expect', 'great', 'seller'], ['alway', 'samsung', 'bring', 'us', 'good', 'bought', 'wife', 'replac', 'old', 'galaxi', 'use', 'phone', 'digitel', 'work', 'year', 'purchas', 'batteri', 'becom', 'discharg', 'quick', 'new', 'batteri', 'solv', 'problem'], ['cell', 'awesom', 'samsung', 'realli', 'get', 'improv', 'chanc', 'half', 'atribut'], ['slimmer', 'lack', 'fm', 'radio', 'good', 'improv', 'keyboard', 'numer', 'row', 'top', 'not', 'switch', 'abc', 'durat', 'seem', 'littl', 'bit', 'better'], ['order', 'new', 'got', 'refurbish', 'phone', 'boot', 'swiss', 'app', 'alreadi', 'instal', 'not', 'buy', 'seller', 'total', 'ripoff'], ['phone', 'kept', 'lose', 'servic', 'year', 'usag', 'eventu', 'buy', 'new', 'one'], ['i', 'phone', 'month', 'today', 'purchas', 'supplier', 'phone', 'work', 'great', 'minus', 'issu', 'fix', 'softwar', 'updat', 'howev', 'septemb', 'phone', 'start', 'random', 'shut', 'despit', 'fulli', 'charg', 'run', 'simpl', 'app', 'would', 'also', 'well', 'first', 'thought', 'app', 'instal', 'factori', 'restor', 'phone', 'success', 'elimin', 'problem', 'happen', 'start', 'suspect', 'batteri', 'issu', 'batteri', 'swollen', 'slight', 'odor', 'come', 'research', 'came', 'realiz', 'batteri', 'fake', 'made', 'china', 'rather', 'korea', 'swollen', 'batteri', 'caus', 'screen', 'lift', 'phone', 'slight', 'shut', 'make', 'simpl', 'phone', 'call', 'left', 'high', 'dissatisfi', 'blame', 'blame', 'fgs', 'trade', 'fake', 'batteri', 'got', 'box', 'phone', 'purchas', 'unknown', 'supplier', 'point', 'sore', 'disappoint', 'outsid', 'problem', 'phone', 'great', 'phone'], ['well', 'not', 'give', 'less', 'star', 'spent', 'not', 'use', 'ramdom', 'shut'], ['troubl', 'initi', 'not', 'abl', 'turn', 'phone', 'network', 'go', 'end', 'reboot', 'back', 'factori', 'default', 'sever', 'time', 'end', 'determin', 'defect', 'motherboard', 'neither', 'us', 'kenya', 'samsung', 'repair', 'warranti', 'first', 'day', 'stuck', 'useless', 'lemon', 'feel', 'disappoint', 'cheat', 'definit', 'stay', 'away', 'samsung', 'futur', 'note', 'also', 'rapid', 'drain', 'batteri', 'incred', 'requir', 'realli', 'unexpect', 'frugal', 'power', 'save', 'plug', 'time'], ['smartphon', 'work', 'line', 'countri', 'well'], ['order', 'samung', 'galaxi', 'smartphon', 'crocodhil', 'fair', 'price', 'sent', 'abroad', 'made', 'sens', 'sinc', 'want', 'global', 'readi', 'unlock', 'unfortun', 'us', 'custom', 'would', 'not', 'let', 'across', 'border', 'crocodhil', 'notif', 'instant', 'provid', 'full', 'refund'], ['disappoint', 'item', 'littl', 'mishap', 'submit', 'review', 'alway', 'without', 'good', 'sign', 'realiz', 'intern', 'phone', 'wet', 'lack', 'stem', 'hold', 'camera'], ['truli', 'happi', 'phone'], ['exelent'], ['first', 'smartphon', 'negat', 'thing', 'could', 'say', 'addit', 'softwar', 'samsung', 'place', 'take', 'half', 'storag', 'app', 'still', 'use', 'microsd', 'card', 'larg', 'file', 'one', 'reciev', 'german', 'model', 'came', 'adapt', 'use', 'standard', 'us', 'outlet', 'everi', 'time', 'updat', 'os', 'app', 'total', 'german', 'kept', 'reappear', 'uninstal', 'around', 'great', 'phone', 'beauti', 'screen'], ['disappoint', 'purchas', 'could', 'not', 'bring', 'log', 'write', 'review', 'use', 'phone', 'buy', 'samsung', 'not', 'even', 'make', 'samsung', 'sound', 'power', 'come', 'big', 'slogan', 'across', 'front', 'say', 'yoigo', 'disappoint', 'look', 'like', 'fake', 'even', 'though', 'work', 'feel', 'embarrass', 'power', 'anyon', 'know', 'get', 'japanes', 'slogan', 'i', 'would', 'great'], ['not', 'wast', 'money', 'poor', 'qualiti', 'unlock', 'phone', 'not', 'unlock', 'one', 'month', 'touch', 'screen', 'useless', 'not', 'work'], ['excel', 'item'], ['love', 'phone', 'state', 'review', 'love', 'work', 'better', 'thought', 'would', 'happi'], ['nice'], ['first', 'phone', 'buy', 'amazon', 'realli', 'good', 'phone', 'complain', 'except', 'charger', 'us', 'adapt', 'bought', 'anoth', 'origin', 'charger', 'fix', 'devic', 'run', 'smooth', 'realli', 'well', 'day', 'not', 'got', 'tire', 'like', 'never', 'requir', 'alot', 'care', 'alway', 'pull', 'phone', 'pocket', 'check', 'messag', 'notif', 'drop', 'land', 'rock', 'shatter', 'glass', 'luckili', 'glass', 'tr', 'slim', 'screen', 'protector', 'save', 'not', 'big', 'deal', 'alway', 'replac', 'instead', 'pay', 'whole', 'lot', 'fix', 'shatter', 'glass', 'devic'], ['product', 'bought', 'probabl', 'not', 'unlock', 'version', 'lot', 'vodafon', 'staff', 'applic', 'not', 'use', 'sim', 'card', 'live', 'usa', 'not', 'understand', 'unlock', 'not', 'understand', 'abl', 'use', 'turkey'], ['great', 'phone', 'deliveri', 'predict', 'phone', 'came', 'origin', 'box', 'factori', 'unlock', 'brand', 'new', 'headphon', 'qualiti', 'bad', 'compar', 'iphon', 'batteri', 'live', 'not', 'expect', 'make', 'sens', 'big', 'display', 'love'], ['i', 'work', 'phone', 'month', 'i', 'use', 'afghanistan', 'high', 'doubt', 'actual', 'not', 'vouch', 'mobil', 'download', 'speed', 'time', 'use', 'wifi', 'screen', 'best', 'i', 'seen', 'mobil', 'devic', 'includ', 'gf', 'ipad', 'retina', 'display', 'fast', 'everyth', 'game', 'app', 'etc', 'not', 'wait', 'tri', 'get', 'back', 'state'], ['everyth', 'good', 'phone', 'work', 'realli', 'good', 'fine', 'except', 'phone', 'came', 'french', 'know', 'chang', 'like', 'besid', 'good'], ['wife', 'realli', 'fallen', 'love', 'phone', 'phone', 'pleas'], ['like', 'product', 'work', 'excel', 'bought', 'cell', 'phone', 'girlfriend', 'love'], ['best', 'color', 'wonderful', 'live', 'costa', 'rica', 'use', 'phone', 'without', 'problem', 'fast', 'unlock', 'chang', 'chip', 'begin', 'good', 'love', 'cellphon', 'ship', 'day'], ['phone', 'batteri', 'present', 'problem', 'point', 'not', 'turn', 'phone', 'manufactur', 'china', 'read', 'batteri', 'made', 'china', 'poor', 'qualiti', 'damag', 'batteri', 'chang', 'let', 'know', 'abl', 'chang', 'batteri', 'phone', 'purchas', 'kind', 'attent', 'valuabl', 'support', 'remain', 'receiv', 'prompt', 'respons', 'happi', 'day'], ['phone', 'came', 'defect', 'take', 'hour', 'must', 'connect', 'charger', 'challeng', 'not', 'start'], ['seven', 'month', 'phone', 'screen', 'gone', 'bad', 'show', 'small', 'sign', 'first', 'see', 'rare', 'use', 'phone', 'guess', 'not', 'see', 'enough', 'matter', 'phone', 'condit', 'bought', 'never', 'abus', 'case', 'day', 'one', 'not', 'work'], ['great'], ['bought', 'phone', 'cool', 'featur', 'advertis', 'turn', 'smart', 'stay', 'featur', 'not', 'work', 'use', 'phone', 'everyth', 'work', 'flawless', 'also', 'came', 'european', 'charger', 'return', 'phone', 'made', 'pay', 'ship', 'cost'], ['heard', 'thi', 'phone', 'one', 'best', 'one', 'market', 'decid', 'chang', 'iphon', 'samsung', 'realli', 'bad', 'idea', 'receiv', 'phone', 'work', 'great', 'lost', 'charg', 'second', 'day', 'connect', 'recharg', 'sorpris', 'phone', 'not', 'want', 'turn', 'vibrat', 'never', 'want', 'turn', 'contact', 'seller', 'wrote', 'need', 'contact', 'samsung', 'problem', 'not', 'one', 'day', 'tri', 'see', 'forum', 'problem', 'thank', 'god', 'phone', 'turn', 'i', 'sell', 'half', 'price', 'tri', 'iphon', 'prefer', 'still', 'appl', 'instead', 'samsung', 'phone', 'know', 'samsung', 'great', 'compani', 'not', 'phone', 'still', 'smart', 'tv', 'samsung', 'realli', 'grea'], ['good', 'product', 'thing', 'come', 'menu', 'french', 'not', 'understand', 'french', 'phone', 'come', 'fr', 'softwar', 'not', 'pleasant', 'chang', 'rest', 'work', 'perfect', 'good'], ['two', 'year', 'ago', 'bought', 'samsung', 'galaxi', 'sii', 'love', 'phone', 'still', 'work', 'one', 'issu', 'camera', 'still', 'great', 'phone', 'wife', 'move', 'nokia', 'lumia', 'bought', 'galaxi', 'best', 'decis', 'hope', 'keep', 'phone', 'year', 'least', 'mexico', 'not', 'well', 'coverag', 'expect', 'use', 'soon'], ['advertis', 'feel', 'even', 'greater', 'came', 'chines', 'local', 'default', 'pretti', 'easi', 'switch', 'english', 'come', 'samsung', 'galaxi', 'nexus', 'noth', 'high', 'rate', 'purchas', 'batteri', 'life', 'process', 'power', 'memori', 'pretti', 'much', 'everyth', 'twice', 'good', 'i', 'use', 'previous', 'phone', 'high', 'recommend', 'anyon', 'think', 'purchas', 'definit', 'worth', 'buck'], ['excel', 'perfect', 'product', 'recommend', 'love', 'word', 'ok', 'love', 'love'], ['excel', 'phone', 'machin', 'recommend'], ['quick', 'deliveri', 'everyth', 'advertis', 'extrem', 'satisfi', 'samsung', 'good', 'phone'], ['phone', 'stop', 'work', 'not', 'get', 'phone', 'turn'], ['two', 'week', 'use', 'screen', 'went', 'blank'], ['phone', 'work', 'fine', 'first', 'week', 'start', 'freez', 'power', 'way', 'could', 'restart', 'take', 'batteri', 'press', 'power', 'button', 'g', 'time', 'crack', 'screen', 'bought', 'new', 'phone', 'anoth', 'seller', 'far', 'good'], ['phone', 'not', 'meet', 'need', 'problem', 'easi', 'make', 'return', 'hassl', 'free'], ['work', 'minut', 'touch', 'screen', 'flake', 'batter', 'remov', 'reboot', 'not', 'give', 'one', 'chanc'], ['not', 'read', 'sim', 'card', 'kept', 'restart', 'everi', 'hour', 'not', 'worth', 'purchas'], ['excel'], ['never', 'buy', 'buyer', 'phone', 'lack', 'authent', 'start', 'problem', 'begin', 'total', 'piec', 'crap', 'not', 'worth', 'money', 'spend', 'would', 'never', 'buy'], ['excel'], ['excel'], ['excelent', 'producto'], ['love', 'phone', 'work', 'quit', 'well', 'howev', 'not', 'happi', 'manual', 'anoth', 'languag', 'unfortun', 'speak', 'read', 'english'], ['receiv', 'phone', 'oper', 'manual', 'booklet', 'written', 'polish', 'languag', 'amazon', 'custom', 'servic', 'direct', 'complaint', 'supplier', 'shopbest', 'ask', 'send', 'booklet', 'english', 'address', 'un', 'kiryat', 'sefer', 'st', 'appt', 'haifa', 'israel', 'sent', 'link', 'technic', 'schlesing'], ['thank', 'nice', 'smartphon', 'fast', 'receiv', 'well', 'think', 'make', 'deal', 'soon', 'anoth', 'ok'], ['good', 'servic', 'good', 'attent', 'team', 'not', 'get', 'releas', 'descript', 'saysth', 'evalu', 'base', 'equip', 'not', 'releas'], ['good'], ['nice'], ['phone', 'complet', 'shut', 'month', 'work', 'fine', 'net', 'technician', 'indic', 'softwar', 'malfunct', 'mani', 'unlock', 'devic', 'not', 'set', 'correct', 'ship', 'europ', 'provid', 'find', 'way', 'eras', 'softwar', 'could', 'not', 'even', 'retriev', 'photo', 'phone', 'number', 'buyer', 'bewar'], ['fantast', 'phone', 'exact', 'want', 'not', 'want', 'phone', 'big', 'bulki', 'screen', 'crystal', 'clear', 'function', 'quick', 'call', 'qualiti', 'great', 'app', 'work', 'well', 'third', 'samsung', 'phone', 'continu', 'enjoy', 'wonder', 'product', 'arriv', 'within', 'two', 'day', 'seal', 'came', 'headset', 'ear', 'insert', 'charger', 'adapt', 'usa', 'strong', 'recommend'], ['ok', 'recomend', 'seller'], ['buyer', 'bewar', 'phone', 'intern', 'unlock', 'phone', 'manufactur', 'uk', 'unit', 'state', 'samsung', 'support', 'team', 'not', 'not', 'anyth', 'warrant', 'phone', 'defect', 'phone', 'defect', 'screen', 'fix', 'easili', 'unfortun', 'us', 'samsung', 'power', 'phone', 'not', 'know', 'phone', 'exist', 'us', 'buy', 'phone', 'onlin', 'search', 'model', 'number', 'googl', 'see', 'support', 'websit', 'come', 'unsur', 'call', 'manufactur', 'custom', 'support'], ['hi', 'rate', 'phone', 'worst', 'return', 'phone', 'back', 'mobilefront', 'power', 'hook', 'not'], ['phone', 'not', 'unlock', 'got', 'month', 'ago', 'still', 'not', 'abl', 'unlock'], ['first', 'time', 'use', 'phone', 'struck', 'lightn', 'came', 'remark', 'chang', 'taken', 'place', 'insid', 'could', 'communic', 'telepath', 'machin', 'turn', 'phone', 'occupi', 'soul', 'damn', 'i', 'damn', 'not', 'also', 'best', 'mini', 'phone', 'i', 'ever'], ['like', 'much', 'love'], ['stop', 'work', 'month', 'seller', 'refus', 'exchang', 'item', 'purchas', 'riski'], ['exelent', 'celular'], ['excel'], ['genial'], ['super', 'excelent'], ['said', 'unlock', 'lie', 'come', 'lock', 'want', 'put', 'chip', 'display', 'messag', 'ask', 'pin', 'code', 'mobil', 'lock', 'lock', 'lock', 'bring', 'especialist', 'pay', 'use'], ['phone', 'never', 'work', 'lost', 'money'], ['phone', 'pretti', 'good', 'zero', 'detail', 'accessori', 'includ', 'problem', 'movistar', 'venezuela', 'band', 'arriv', 'time', 'miami', 'noth', 'say', 'i', 'happi'], ['work', 'fine'], ['phone', 'great', 'look', 'brand', 'new', 'exact', 'want', 'came', 'small', 'crack', 'screen', 'think', 'ship'], ['work', 'great', 'box', 'use', 'california'], ['slight', 'problem', 'batteri', 'run', 'super', 'fast', 'even', 'turn', 'turn', 'back', 'later', 'lost', 'batteri', 'time', 'otherwis', 'everyth', 'els', 'work', 'perfect'], ['phone', 'not', 'spanish', 'languag', 'condit', 'phone', 'good'], ['sd', 'memori', 'not', 'work', 'system', 'work', 'slowli'], ['phone', 'work', 'great', 'case', 'sign', 'use', 'noth', 'serious', 'anyway', 'great', 'seller', 'great', 'phone'], ['restart', 'everi', 'time'], ['disappoint', 'phone', 'thank', 'work', 'mobil', 'account', 'arriv', 'earli', 'love', 'featur', 'good', 'buy'], ['perfect', 'condit', 'better', 'advertis'], ['work', 'great', 'box', 'use', 'california'], ['phone', 'sever', 'year', 'met', 'unfortun', 'accid', 'love', 'phone', 'small', 'enough', 'feel', 'comfort', 'hand', 'still', 'play', 'game', 'big', 'enough', 'happi', 'find', 'still', 'avail'], ['bought', 'wife', 'month', 'still', 'love', 'great', 'size', 'good', 'screen'], ['great', 'item', 'fast', 'ship'], ['advertis', 'sprint', 'phone', 'could', 'not', 'activ', 'sprint', 'account', 'sprint', 'state', 'prepaid', 'boost', 'mobil', 'boost', 'use', 'tower', 'not', 'mean', 'work', 'sprint', 'return', 'phone', 'nice', 'though', 'i', 'super', 'skeptic', 'order'], ['phone', 'work', 'well', 'not', 'experienc', 'problem', 'bare', 'notic', 'light', 'scratch'], ['not', 'unlock', 'cell', 'phone'], ['pleas', 'servic', 'awesom', 'love', 'probl', 'not', 'ur', 'fault', 'batteri', 'overal', 'i', 'pleas', 'pleas', 'till', 'found', 'not', 'read', 'sim', 'card', 'thing', 'use', 'calendar'], ['love', 'great', 'condit', 'work', 'excel', 'nice', 'price', 'thank'], ['glad', 'made', 'choic', 'phone', 'excel', 'awhil', 'far', 'problem', 'abl', 'use', 'current', 'carrier', 'metro', 'pcs', 'problem', 'well'], ['excelent'], ['phone', 'terribl', 'batteri', 'life', 'even', 'replac', 'batteri', 'came', 'i', 'done', 'factori', 'reset', 'differ', 'time', 'success', 'got', 'lemon', 'i', 'would', 'love', 'replac', 'doubt', 'happen'], ['item', 'return', 'purchas', 'gift', 'alreadi', 'replac', 'longer', 'need'], ['i', 'disappoint', 'phone', 'day', 'phone', 'lock', 'horizont', 'strip', 'line', 'across', 'screen', 'not', 'get', 'use', 'phone', 'ship', 'usa', 'address', 'taken', 'jamaica', 'not', 'afford', 'send', 'back', 'loss'], ['phone', 'look', 'brand', 'new', 'front', 'camera', 'phone', 'not', 'work', 'dark', 'return', 'day', 'ago'], ['great', 'condit', 'complaint'], ['love', 'phone', 'great', 'featur', 'expect', 'impress', 'love'], ['phone', 'work', 'great', 'not', 'issu', 'would', 'definit', 'purchas'], ['bought', 'cellphon', 'problem', 'not', 'work', 'frustrat', 'not', 'contact', 'seller', 'chang'], ['good', 'phone'], ['amaz', 'phone', 'luckili', 'phone', 'need'], ['cell', 'phone', 'characterist', 'quit', 'good', 'batteri', 'last', 'littl', 'bit', 'hrs', 'discharg', 'soon', 'purchas', 'differ', 'supplier', 'better', 'batteri', 'perform', 'configur'], ['great', 'phone'], ['great', 'phone', 'problem', 'even', 'though', 'say', 'unlock', 'still', 'not', 'allow', 'tether', 'internet', 'phone', 'compani', 'not', 'allow', 'happi', 'purchas'], ['best', 'phone', 'i', 'own'], ['good', 'son', 'like'], ['work', 'good', 'expect'], ['absolut', 'love', 'phone', 'not', 'singl', 'scratch', 'look', 'new', 'ship', 'impress', 'order', 'thursday', 'arriv', 'saturday', 'morn', 'thank'], ['wonder', 'phone'], ['phone', 'came', 'unlock', 'readi', 'use', 'sim', 'chip', 'choic', 'gsm', 'bloat', 'softwar', 'instal', 'non', 'remov'], ['good', 'seller', 'good', 'cellphon'], ['phone', 'work', 'promis', 'good', 'condit', 'happi'], ['great'], ['like'], ['exact', 'want', 'got', 'quick', 'thank'], ['cellphon', 'appear', 'great', 'week', 'use', 'heat', 'much', 'not', 'even', 'use'], ['good', 'telephon', 'describ'], ['wait', 'compani', 'contact', 'write', 'review', 'phone', 'bought', 'not', 'work', 'week'], ['great', 'look', 'phone', 'almost', 'new', 'look', 'came', 'wih', 'funki', 'charger', 'tho', 'mayb', 'european', 'thank', 'anoth', 'regular', 'american', 'charger'], ['realli', 'great', 'phone', 'bought', 'mine', 'use', 'look', 'brand', 'new', 'got', 'tough', 'still', 'technolog', 'relev'], ['purchas', 'phone', 'amazon', 'first', 'purchas', 'usa', 'unfortun', 'receiv', 'faulti', 'phone', 'not', 'abl', 'call', 'phone'], ['love', 'phone', 'work', 'great', 'got', 'great', 'condit', 'work', 'perfect', 'recommend', 'anyon', 'everyon', 'want', 'great', 'phone', 'best', 'stock'], ['best'], ['excel', 'purchas', 'replac', 'broken', 'phone', 'actual', 'unlock', 'phone', 'app', 'easi', 'remov', 'problem', 'ship', 'took', 'almost', 'week', 'receiv', 'phone', 'not', 'suprem', 'deal', 'fault', 'excel', 'deal'], ['good', 'work', 'venezuela', 'movistar'], ['i', 'disappoint', 'i', 'argentina', 'expect', 'cell', 'phone', 'soon', 'charg', 'not', 'work', 'screen', 'see', 'blur', 'not', 'know', 'understand', 'problem', 'happen', 'want', 'money', 'back'], ['i', 'disappoint', 'i', 'argentina', 'expect', 'cell', 'phone', 'soon', 'charg', 'not', 'work', 'screen', 'see', 'blur', 'not', 'know', 'understand', 'problem', 'happen', 'want', 'money', 'back'], ['bought', 'husband', 'want', 'replac', 'old', 'flip', 'phone', 'realli', 'love', 'phone', 'easi', 'learn'], ['good', 'work', 'well', 'nice', 'busi'], ['believ', 'samsung', 'galaxi', 'phone', 'best', 'market', 'mine', 'work', 'great'], ['order', 'taylor', 'wireless', 'use', 'phone', 'came', 'bit', 'less', 'week', 'bought', 'use', 'would', 'never', 'guess', 'use', 'absolut', 'pristin', 'condit', 'extrem', 'happi', 'purchas', 'got', 'expect', 'met'], ['came', 'time', 'describ'], ['absolut', 'love', 'phone', 'everyth', 'expect', 'look', 'work', 'great', 'littl', 'problem', 'begin', 'return', 'two', 'phone', 'due', 'small', 'glitch', 'not', 'seller', 'fault', 'howev', 'third', 'time', 'charm', 'remov', 'one', 'star', 'simpli', 'small', 'problem', 'howev', 'seller', 'courteous', 'profession', 'phone', 'arriv', 'quick', 'advertis', 'use', 'seller', 'futur', 'thank'], ['complet', 'new', 'amaz', 'exact', 'seller', 'describ', 'descript'], ['good', 'product', 'seller', 'met', 'servic'], ['return', 'phone', 'constant', 'sim', 'card', 'error'], ['bought', 'cellphon', 'one', 'broken', 'screen'], ['galaxi', 'year', 'absolut', 'love', 'size', 'perfect', 'fast', 'design', 'nice', 'also', 'take', 'amaz', 'pictur', 'old', 'start', 'issu', 'read', 'sim', 'card', 'decid', 'time', 'buy', 'new', 'one', 'immedi', 'knew', 'want', 'buy', 'item', 'arriv', 'quick', 'origin', 'box', 'come', 'charger', 'earphon', 'batteri', 'also', 'come', 'instruct', 'scare', 'item', 'first', 'arriv', 'order', 'unlock', 'phone', 'one', 'seem', 'even', 'logo', 'back', 'turn', 'logo', 'appear', 'lot', 'app', 'howev', 'tri', 'differ', 'carrier', 'sim', 'work', 'fine', 'i', 'guess', 'phone', 'one', 'not', 'sell', 'unlock', 'happi', 'phone', 'love', 'model'], ['great'], ['suck', 'not', 'buy', 'root', 'not', 'updat', 'super', 'slow', 'retail', 'better'], ['great', 'phone', 'good', 'price', 'set', 'manual', 'cricket', 'great', 'coverag', 'metrowest', 'boston', 'per', 'month', 'automat', 'payment', 'set', 'unlimit', 'talk', 'text', 'mb', 'data', 'point', 'slow', 'perfect'], ['great', 'phone', 'carrier', 'extrem', 'pleas'], ['say', 'cosmet', 'condit', 'look', 'realli', 'realli', 'nice', 'new', 'knowledg', 'android', 'system', 'see', 'phone', 'set', 'rom', 'flash', 'time', 'alreadi', 'even', 'turn', 'read', 'custom', 'samsung', 'symbol', 'i', 'not', 'sure', 'use', 'item', 'refurbish', 'big', 'bad', 'luck', 'anyway', 'updat', 'wifi', 'connect', 'ota', 'option', 'phone', 'restart', 'not', 'turn', 'phone', 'sudden', 'death', 'expens', 'paperweight', 'life', 'think', 'twice', 'buy'], ['batteri', 'defect', 'would', 'not', 'charg', 'care', 'product'], ['not', 'buy', 'phone', 'constant', 'overh', 'bad', 'recept', 'batteri', 'not', 'last', 'hour', 'hotspot', 'featur', 'not', 'work', 'carrier', 'use', 'bluetooth', 'peopl', 'not', 'hear', 'anymor', 'restart', 'phone'], ['great', 'phone', 'work', 'awesom'], ['work', 'describ'], ['phone', 'work', 'well', 'far', 'sometim', 'freez', 'hold', 'power', 'key', 'turn', 'screen'], ['great', 'product'], ['i', 'tri', 'phone', 'almost', 'month', 'noth', 'troubl', 'day', 'issu', 'first', 'order', 'one', 'not', 'connect', 'laptop', 'malfunct', 'sent', 'anoth', 'one', 'one', 'problem', 'screen', 'freez', 'frequent', 'text', 'featur', 'not', 'work', 'not', 'drop', 'phone', 'sure', 'feel', 'like', 'problem', 'sinc', 'day', 'got', 'return', 'complet', 'instead', 'get', 'replac', 'bought', 'charg', 'port', 'went', 'bad', 'year', 'not', 'problem', 'replac', 'charg', 'port', 'could', 'resolv', 'issu', 'i', 'high', 'disapoint', 'spend', 'almost', 'phone', 'alreadi', 'malfunct'], ['good'], ['good'], ['still', 'got', 'otterbox', 'work', 'ssuperb', 'not', 'know', 'work', 'look', 'mayb', 'tast', 'brand', 'first', 'galaxi', 'i', 'love', 'cowork', 'got', 'htc', 'jealous', 'use', 'air', 'gestur'], ['great', 'product', 'great', 'price'], ['phone', 'fine', 'annoy', 'secur', 'notif', 'keep', 'pop', 'not', 'fix'], ['pleas', 'phone', 'product', 'met', 'expect'], ['excellent', 'devic', 'need'], ['absolut', 'garbag', 'hard', 'get', 'servic', 'noth', 'tmobil', 'keep', 'say', 'sim', 'card', 'remov', 'data', 'connect', 'servic', 'hard', 'get', 'even', 'test', 'phone', 'got', 'new', 'sim', 'card', 'twice', 'tmobil', 'tri', 'fix', 'phone', 'phone', 'huge', 'wast', 'money'], ['biggest', 'issu', 'phone', 'charg', 'mechan', 'sent', 'not', 'rate', 'star', 'instead', 'usb', 'connect', 'ac', 'plug', 'receiv', 'european', 'plug', 'separ', 'adaptor', 'fit', 'unit', 'state', 'ac', 'plug', 'multitud', 'hole', 'tri', 'phone', 'plug', 'wall', 'socket', 'charg', 'come', 'briefli', 'signal', 'occur', 'not', 'happen', 'devic', 'immedi', 'thought', 'sent', 'faulti', 'unit', 'happen', 'plug', 'use', 'charg', 'ipad', 'sinc', 'usb', 'plug', 'fit', 'devic', 'perfect', 'decid', 'tri', 'return', 'camera', 'phone', 'lo', 'behold', 'work', 'perfect', 'camera', 'phone', 'lit', 'briefli', 'signifi', 'charg', 'sinc', 'way', 'work', 'perfect', 'neglig', 'return', 'plug', 'adaptor', 'not', 'mean', 'not', 'inconveni', 'wrap', 'ship', 'anyon', 'els', 'experi', 'oh', 'yes', 'love', 'phone', 'great', 'person', 'like', 'realli', 'like', 'photographi', 'not', 'mind', 'littl', 'extra', 'thick', 'whenev', 'pull', 'use', 'peopl', 'intrigu', 'ask', 'suggest', 'concern', 'thick', 'purchas', 'case', 'work', 'galaxi', 'zoom', 'horizont', 'leather', 'case', 'magnet', 'closur', 'belt', 'clip', 'belt', 'loop', 'silicon', 'wristband'], ['best', 'phone', 'ever'], ['excel', 'phone'], ['not', 'happi'], ['great'], ['like', 'samsung', 'incred', 'bad', 'q', 'put', 'upsid', 'ice', 'often', 'although', 'month', 'think', 'averag', 'wine', 'defect'], ['bes', 'gadget', 'ever', 'cover', 'need', 'cellphon', 'camera'], ['purchas', 'zoom', 'want', 'versatil', 'point', 'shoot', 'optic', 'zoom', 'camcord', 'would', 'not', 'need', 'carri', 'around', 'multipl', 'devic', 'either', 'everyday', 'use', 'travel', 'would', 'rate', 'zoom', 'differ', 'depend', 'use', 'star', 'smartphon', 'zoom', 'smaller', 'lower', 'resolut', 'screen', 'lesser', 'processor', 'may', 'miss', 'softwar', 'interfac', 'trick', 'hover', 'gestur', 'found', 'regular', 'galaxi', 'part', 'great', 'job', 'make', 'call', 'run', 'app', 'give', 'gps', 'assist', 'direct', 'surf', 'web', 'video', 'music', 'playback', 'everi', 'function', 'might', 'want', 'star', 'camera', 'take', 'digit', 'photograph', 'also', 'two', 'year', 'old', 'panason', 'lumix', 'optic', 'digit', 'zoom', 'rang', 'like', 'zoom', 'megapixel', 'cmos', 'sensor', 'consid', 'good', 'take', 'photo', 'video', 'knew', 'would', 'sacrif', 'zoom', 'rang', 'zoom', 'optic', 'zoom', 'respect', 'imag', 'qualiti', 'function', 'found', 'zoom', 'near', 'good', 'case', 'better', 'take', 'photograph', 'pleas', 'note', 'opinion', 'imag', 'qualiti', 'base', 'view', 'imag', 'comput', 'hd', 'televis', 'screen', 'sinc', 'not', 'general', 'print', 'photograph', 'paper', 'anymor', 'star', 'video', 'camcord', 'zoom', 'take', 'good', 'qualiti', 'video', 'long', 'not', 'use', 'zoom', 'function', 'start', 'use', 'zoom', 'problem', 'appear', 'glare', 'problem', 'lack', 'continu', 'auto', 'focus', 'zoom', 'lack', 'contin', 'auto', 'focus', 'also', 'problem', 'use', 'burst', 'function', 'camera', 'mode', 'zoom', 'not', 'smoothest', 'perform', 'zoom', 'easili', 'lose', 'focus', 'whenev', 'stop', 'zoom', 'autofocus', 'function', 'push', 'len', 'refocus', 'imag', 'result', 'jerki', 'video', 'anoth', 'problem', 'noisi', 'zoom', 'mechan', 'pick', 'audio', 'even', 'quiet', 'zoom', 'mode', 'far', 'superior', 'perform', 'respect', 'come', 'take', 'smooth', 'focus', 'video', 'minim', 'camera', 'nois', 'use', 'zoom', 'like', 'fact', 'zoom', 'micro', 'sd', 'card', 'slot', 'extra', 'memori', 'shoot', 'hd', 'video', 'extra', 'batteri', 'two', 'essenti', 'plan', 'shoot', 'lot', 'photo', 'video', 'day', 'without', 'star', 'overal', 'rate', 'round', 'star', 'like', 'overal', 'function', 'devic', 'amazon', 'not', 'allow', 'give', 'partial', 'star', 'rate', 'much', 'like', 'idea', 'marriag', 'smartphon', 'optic', 'zoom', 'camera', 'us', 'would', 'like', 'abil', 'take', 'high', 'qualiti', 'photo', 'video', 'varieti', 'situat', 'includ', 'not', 'alway', 'possibl', 'get', 'closer', 'action', 'without', 'inconveni', 'carri', 'around', 'multipl', 'devic', 'knowledg', 'zoom', 'first', 'regard', 'poor', 'video', 'perform', 'use', 'zoom', 'big', 'disappoint', 'howev', 'may', 'still', 'need', 'carri', 'around', 'camera', 'want', 'record', 'high', 'qualiti', 'video', 'use', 'zoom', 'known', 'weak', 'beforehand', 'not', 'urgent', 'need', 'replac', 'old', 'smartphon', 'die', 'might', 'held', 'upgrad', 'version', 'product', 'came', 'hope', 'samsung', 'compani', 'not', 'abandon', 'idea', 'hybrid', 'devic', 'continu', 'develop', 'product', 'along', 'line', 'technolog', 'alreadi', 'exist', 'separt', 'devic', 'challeng', 'combin', 'one', 'truli', 'high', 'qualiti', 'wishlist', 'next', 'iter', 'zoom', 'fix', 'autofocus', 'nois', 'problem', 'use', 'zoom', 'video', 'captur', 'add', 'manual', 'zoom', 'ring', 'lever', 'around', 'near', 'shutter', 'button', 'allow', 'one', 'hand', 'oper', 'zoom', 'shoot', 'video', 'take', 'pictur', 'optic', 'zoom', 'rang', 'much', 'possibl', 'long', 'keep', 'dimens', 'devic', 'within', 'reason', 'someth', 'carri', 'around', 'pant', 'pocket'], ['got', 'camera', 'phone', 'almost', 'week', 'ago', 'research', 'onlin', 'week', 'knew', 'right', 'alley', 'thing', 'like', 'phone', 'not', 'expect', 'camera', 'good', 'nikon', 'mytouch', 'almost', 'year', 'wait', 'right', 'phone', 'come', 'along', 'well', 'play', 'ton', 'last', 'week', 'bare', 'scratch', 'surfac', 'featur', 'home', 'screen', 'start', 'basic', 'one', 'includ', 'media', 'news', 'social', 'media', 'easili', 'custom', 'thing', 'set', 'need', 'without', 'need', 'quick', 'guid', 'charger', 'uniqu', 'use', 'phone', 'chang', 'phone', 'specif', 'charger', 'also', 'charg', 'quick', 'camera', 'take', 'batteri', 'understand', 'not', 'plan', 'use', 'much', 'go', 'buy', 'spare', 'batteri', 'front', 'face', 'camera', 'even', 'extra', 'mode', 'thing', 'not', 'gotten', 'experi', 'phone', 'thing', 'miss', 'old', 'phone', 'qwerti', 'keyboard', 'get', 'use', 'one', 'voic', 'type', 'alway', 'look', 'thing', 'pretti', 'well', 'make', 'big', 'purchas', 'like', 'make', 'worth', 'get', 'product', 'hand'], ['thrill', 'function', 'phone', 'love', 'not', 'charg', 'everi', 'hour', 'still', 'learn', 'capabl', 'probabl', 'rate', 'higher', 'use'], ['phone', 'great', 'condit', 'cut', 'twice', 'mid', 'process', 'work', 'get', 'star', 'overal', 'pleas', 'purchas', 'would', 'purchas', 'anoth', 'phone'], ['got', 'phone', 'friend', 'one', 'love', 'copper', 'color', 'got', 'batteri', 'not', 'good', 'request', 'new', 'phone', 'respond', 'immedi', 'phone', 'work', 'great', 'tab', 'would', 'not', 'stay', 'close', 'new', 'phone', 'swap', 'batteri', 'old', 'phone', 'sent', 'new', 'cord', 'also', 'work', 'great', 'feel', 'deserv', 'star', 'everyth', 'made', 'right', 'would', 'definit', 'recommend'], ['i', 'phone', 'month', 'not', 'complaint'], ['best', 'phone', 'ever', 'wife', 'need', 'replac', 'phone', 'suggest', 'one', 'love', 'need', 'anoth', 'one', 'soon', 'sinc', 'someon', 'stole', 'mine', 'not', 'trust', 'anyon', 'buy', 'phone'], ['awesom', 'phone'], ['best', 'phone', 'love'], ['phone', 'everyth', 'expect', 'describ'], ['excel', 'product', 'far', 'use', 'month', 'function', 'advertis'], ['love', 'first', 'smart', 'phone', 'altho', 'go', 'activ', 'not', 'time'], ['perfect', 'thank'], ['advertis', 'use', 'charg', 'spareal', 'batteri', 'swap', 'phone'], ['good', 'cell', 'phone', 'thank', 'send', 'charger'], ['seller', 'great', 'phone', 'not', 'much', 'design', 'issu', 'speaker', 'joke', 'not', 'hear', 'anyth', 'not', 'even', 'ring', 'alon', 'make', 'want', 'new', 'phone', 'bright', 'side', 'surviv', 'rain', 'storm', 'outsid', 'golf', 'cours'], ['first', 'order', 'phone', 'came', 'may', 'galaxi', 'black', 'gsm', 'unlock', 'phone', 'gave', 'issu', 'bought', 'unlock', 'phone', 'use', 'network', 'peopl', 'tell', 'call', 'not', 'hear', 'switch', 'speaker', 'phone', 'sometim', 'even', 'not', 'help', 'got', 'circl', 'bar', 'alert', 'servic', 'sever', 'time', 'day', 'go', 'airplan', 'mode', 'back', 'get', 'go', 'away', 'could', 'not', 'consist', 'make', 'call', 'got', 'pop', 'phone', 'tell', 'network', 'error', 'emerg', 'call', 'also', 'lot', 'troubl', 'send', 'simpl', 'text', 'messag', 'mms', 'pictur', 'would', 'not', 'factori', 'reset', 'phone', 'twice', 'not', 'third', 'parti', 'app', 'would', 'issu', 'taken', 'phone', 'put', 'brand', 'new', 'sim', 'check', 'set', 'still', 'solut', 'return', 'phone', 'model', 'purchas', 'differ', 'seller', 'via', 'updat', 'reorder', 'new', 'phone', 'ship', 'via', 'chubbiestechso', 'far', 'great', 'version', 'arriv', 'quick', 'perfect', 'condit', 'easi', 'setup', 'work', 'perfect', 'servic', 'feel', 'may', 'final', 'whole', 'right', 'world'], ['phone', 'arriv', 'perfect', 'complet', 'pleas', 'item', 'order'], ['select', 'version', 'explod', 'like', 'phone', 'power', 'drain', 'bit', 'faster', 'expect', 'would', 'like', 'manual', 'i', 'figur', 'everyth', 'time', 'light', 'weight', 'great', 'graphic', 'pleas', 'big', 'improv', 'lg'], ['realli', 'like', 'phone', 'i', 'serious', 'disappoint', 'back', 'three', 'fair', 'larg', 'piec', 'broken', 'feel', 'like', 'back', 'replac'], ['came', 'unlock', 'thing', 'password', 'turn', 'work', 'great', 'scratch', 'good', 'new', 'love'], ['item', 'arriv', 'origin', 'packag', 'appear', 'brand', 'new', 'not', 'scratch', 'scuff', 'mark', 'kind', 'futur', 'order', 'follow', 'thank'], ['great', 'phone', 'order', 'unlock', 'straight', 'talk', 'got', 'att', 'phone', 'get', 'differ', 'sim', 'card', 'wish', 'specif'], ['phone', 'perfect', 'look', 'brand', 'brand', 'new'], ['nice', 'refurbish', 'phone', 'problem', 'sign', 'consum', 'cellular'], ['tri', 'connect', 'comput', 'would', 'not', 'sync', 'would', 'not', 'even', 'connect', 'comput', 'charg', 'plug', 'not', 'buy', 'phone', 'whether', 'cord', 'phone', 'not', 'work', 'also', 'bought', 'put', 'expens', 'screen', 'protector', 'case', 'great', 'disappoint', 'angri', 'not', 'abl', 'even', 'get', 'complet', 'refund', 'not', 'buy'], ['great', 'price'], ['alway', 'love', 'samsung', 'order', 'amazon', 'unfortun', 'receiv', 'awesom', 'phone', 'faulti', 'memori', 'card', 'reader', 'not', 'packag', 'anyth', 'assist', 'would', 'pleas', 'took', 'close', 'look', 'put', 'sim', 'memori', 'card', 'notic', 'tooth', 'thought', 'would', 'fine', 'read', 'sim', 'not', 'memori', 'card', 'thank', 'help', 'advanc'], ['expect', 'readi', 'go'], ['everyrh', 'alright'], ['bought', 'phone', 'stope', 'work', 'two', 'month', 'amazon', 'told', 'not', 'help', 'told', 'call', 'manufactur', 'i', 'angrygrr'], ['not', 'support', 'anyth', 'faster', 'hspa', 'much', 'slower', 'g', 'us', 'exact', 'phone', 'week', 'way', 'around', 'get', 'better', 'signal', 'frequent', 'lose', 'phone', 'signal', 'includ', 'emerg', 'call', 'capabl', 'sometim', 'data', 'access', 'could', 'stand', 'next', 'cellphon', 'tower', 'major', 'citi', 'old', 'phone', 'lte', 'not', 'use', 'countri', 'usa'], ['arriv', 'excel', 'condit', 'love', 'new', 'phone'], ['product', 'realli', 'good', 'problem'], ['love'], ['good'], ['excel'], ['great', 'phone', 'brought', 'gift', 'friend', 'love', 'everyth'], ['first', 'week', 'work', 'perfect', 'fine', 'week', 'onward', 'phone', 'use', 'restart', 'frequent', 'multipl', 'time', 'day'], ['batteri', 'not', 'work', 'not', 'long', 'time', 'month', 'invest', 'new', 'butteri', 'not', 'good'], ['nice', 'phone', 'android', 'love', 'use'], ['incred', 'phone'], ['good'], ['excelent'], ['realli', 'like', 'phone', 'great', 'not', 'water', 'resist', 'drop', 'mine', 'water', 'less', 'min', 'water', 'went', 'headphon', 'port', 'cost', 'almost', 'repair', 'leav', 'phone', 'repair', 'shop', 'use', 'need', 'part', 'order', 'anther', 'one'], ['unlock', 'samsung', 'phone', 'want', 'problem', 'transfer', 'inform', 'phone', 'work', 'good', 'far', 'problem', 'yes', 'would', 'recommend', 'need', 'reliabl', 'phone'], ['nice', 'phone'], ['good', 'perform', 'far', 'plug', 'cover', 'broke', 'day'], ['not', 'like', 'say'], ['soon', 'receiv', 'item', 'one', 'drop', 'black', 'screen', 'death', 'cost', 'fix', 'screen'], ['great', 'phone', 'thee', 'someth', 'extrang', 'camera', 'guess', 'someth', 'relat', 'set', 'i', 'figur'], ['unfortun', 'reciev', 'use', 'phone', 'new', 'phone', 'price', 'return'], ['realli', 'cool', 'cell'], ['refurbish', 'phone', 'could', 'not', 'realli', 'impress', 'overal', 'thespe', 'got'], ['realli', 'love', 'phone', 'bought', 'use', 'damag', 'work', 'though', 'new'], ['advertis', 'unlock', 'took', 'servic', 'provid', 'learn', 'not', 'unlock', 'servic', 'provid', 'attempt', 'unlock', 'phone', 'sever', 'featur', 'includ', 'data', 'not', 'work'], ['nice'], ['love', 'phone', 'bought', 'go', 'verizon', 'prepaid', 'make', 'sure', 'take', 'actual', 'verizon', 'store', 'not', 'author', 'dealer', 'fast', 'great', 'batteri', 'life', 'charg', 'quick', 'bought', 'use', 'made', 'sure', 'prime', 'elig', 'not', 'like', 'broken', 'could', 'return', 'free', 'charg'], ['receiv', 'att', 'version', 'not', 'verizon', 'phone', 'return', 'qualiti', 'phone', 'good'], ['like', 'featur', 'awesom'], ['great', 'phone', 'love'], ['advertis', 'unlock', 'took', 'servic', 'provid', 'learn', 'not', 'unlock', 'servic', 'provid', 'attempt', 'unlock', 'phone', 'sever', 'featur', 'includ', 'data', 'not', 'work'], ['work', 'well', 'not', 'elimin', 'advertis', 'not', 'use', 'verizon', 'think', 'unblock', 'cellphon', 'not', 'good'], ['gie'], ['phone', 'work', 'fine', 'charg', 'chord', 'not', 'work', 'not', 'see', 'spot', 'contact', 'seller', 'resolv', 'issu'], ['far', 'good', 'hard', 'get', 'use', 'much', 'appar', 'shut', 'virus', 'al', 'protect', 'not', 'protect', 'not', 'know', 'good', 'think', 'phone', 'next', 'year', 'well', 'price', 'like', 'not', 'replac', 'everi', 'year', 'not', 'intend', 'one', 'app', 'adob', 'say', 'wrote', 'bad', 'check', 'life', 'give', 'challeng', 'time', 'fix', 'not', 'write', 'bad', 'check'], ['beauti', 'amaz', 'much', 'better', 'expect'], ['phone', 'come', 'broken', 'case', 'broken', 'sever', 'place', 'not', 'get', 'water', 'look', 'ugli'], ['good', 'product', 'fast', 'ship'], ['like', 'featur', 'awesom'], ['work', 'well'], ['wife', 'excit', 'phone', 'arriv', 'arriv', 'time', 'brand', 'new', 'shini', 'may', 'not', 'matter', 'peopl', 'get', 'new', 'phone', 'new', 'big', 'factor', 'price', 'fair', 'phone', 'work', 'great', 'box', 'everyth', 'vendor', 'said', 'charg', 'issu', 'got', 'use', 'verizon', 'took', 'verizon', 'get', 'servic', 'run', 'went', 'great', 'hitch', 'rep', 'surpris', 'price', 'paid', 'well', 'also', 'got', 'android', 'updat', 'marshmallow', 'phone', 'even', 'better', 'android', 'os', 'function', 'well', 'happi', 'phone', 'would', 'buy', 'vendor', 'hesit', 'know', 'samsung', 'galaxi', 'not', 'spend', 'get', 'great', 'phone', 'galaxi', 'great', 'phone'], ['not', 'unlock', 'browser'], ['amaz', 'phone', 'great', 'buy'], ['love', 'phone', 'happi', 'purchas', 'phone', 'use', 'trac', 'phone', 'work', 'great'], ['great', 'product', 'great', 'buy'], ['got', 'phone', 'gift', 'work', 'fine', 'happi', 'bought', 'thing', 'protect', 'drop', 'crack', 'screen', 'last', 'phone'], ['excellen'], ['excel', 'product', 'good', 'price'], ['perfect'], ['yes', 'excel'], ['phone', 'great', 'far', 'worri', 'past', 'negat', 'review', 'bought', 'new', 'not', 'disappoint', 'yet'], ['thank'], ['cell', 'phone', 'came', 'big', 'problem', 'pay', 'pay', 'buy', 'fix', 'bad'], ['realli', 'like', 'problem', 'switch', 'phone', 'work', 'perfect', 'not', 'test', 'water', 'resist', 'realli', 'not', 'want'], ['excelent'], ['perfect'], ['love'], ['got', 'boyfriend', 'love', 'metropc', 'first', 'troubl', 'internet', 'connect', 'talk', 'phone', 'metro', 'phone', 'work', 'perfect', 'use', 'new', 'york'], ['still', 'work', 'well', 'problem'], ['excel'], ['excel', 'problem'], ['great', 'littl', 'phone', 'howev', 'not', 'connect', 'lte', 'although', 'descript', 'lead', 'believ', 'connect', 'fine', 'use', 'still', 'see', 'around', 'speed', 'test', 'slow', 'compar', 'see', 'network', 'time', 'lte', 'work', 'well', 'enough'], ['buyer', 'bewar', 'expect', 'phone', 'new', 'turn', 'phone', 'refurbish', 'phone', 'not', 'pass', 'refurbish', 'valid', 'check', 'also', 'found', 'black', 'mark', 'near', 'batteri', 'area', 'open', 'back', 'cover', 'not', 'buy'], ['excel', 'seller', 'product', 'well'], ['return', 'item', 'not', 'new', 'came', 'seal', 'open', 'app', 'instal', 'photo', 'galleri'], ['work', 'make', 'sure', 'go', 'set', 'chang', 'mobil', 'network', 'mode', 'instead', 'els', 'not', 'abl', 'get', 'data', 'return', 'think', 'could', 'make', 'call', 'use', 'wifi'], ['good', 'cellphon', 'like', 'waterproof', 'almost', 'two', 'week', 'use', 'problem', 'intern', 'memori', 'believ', 'listen', 'music', 'app', 'sudden', 'cellphon', 'not', 'respond', 'command', 'button', 'look', 'like', 'dead', 'could', 'not', 'turn', 'not', 'respond', 'thought', 'expos', 'water', 'howev', 'insid', 'part', 'not', 'wet', 'anyth', 'decid', 'reset', 'batteri', 'abl', 'turn', 'bought', 'use', 'anoth', 'countri', 'brasil', 'network', 'work', 'perfect'], ['fine'], ['amaz', 'work', 'perfect', 'colombia', 'realli', 'unlock'], ['good'], ['far', 'good', 'light', 'weight', 'n', 'easi', 'use', 'love', 'new', 'phone'], ['wonder'], ['perfect'], ['muy', 'bueno', 'excelent', 'recomend'], ['great', 'great', 'seller'], ['great', 'phone', 'realli', 'like', 'mine', 'sometim', 'miss', 'bigger', 'screen'], ['great', 'phone', 'think', 'best', 'market', 'smartphon'], ['bought', 'wife', 'not', 'hear', 'complaint'], ['good', 'product', 'total', 'satisfi'], ['awesom', 'product', 'came', 'time', 'packag', 'seal', 'bought', 'one', 'mom', 'dad', 'love', 'work', 'well', 'like', 'said', 'everyth', 'new', 'use', 'tmobil', 'btw'], ['match', 'realli', 'short', 'samsung', 'galaxi', 'mini', 'product'], ['not', 'unlock', 'could', 'not', 'use', 'att'], ['bought', 'dad', 'live', 'india', 'happi', 'product', 'complaint', 'yet'], ['great', 'phone'], ['excelent'], ['bought', 'birthday', 'gift', 'well', 'receiv', 'go', 'buy', 'one', 'today', 'phone', 'negat', 'turn', 'ondata', 'spot', 'fast', 'navig', 'internet', 'camera', 'take', 'good', 'qualiti', 'pictur', 'video', 'could', 'not', 'happi', 'thiswond', 'littl', 'phone'], ['definit', 'recommend', 'phone', 'anyon', 'look', 'small', 'reliabl', 'compact', 'size', 'phone', 'featur', 'need', 'camera', 'hd'], ['great', 'phone', 'realli', 'like', 'mine', 'sometim', 'miss', 'bigger', 'screen'], ['great', 'phone'], ['use', 'phone', 'trinidad', 'caribbean', 'work', 'great', 'like', 'much', 'intern', 'storag', 'size', 'phone', 'perfect', 'easili', 'fit', 'small', 'pocket', 'book'], ['una', 'mala', 'experiencia'], ['excelent', 'producto'], ['everyth', 'fine'], ['funcionou', 'bem', 'brasil'], ['deliv', 'time', 'product', 'perfect', 'state'], ['excel'], ['satisfi'], ['good', 'articl', 'deliv', 'time', 'recommend'], ['excel'], ['realli', 'excel'], ['realli', 'like', 'problem', 'switch', 'phone', 'work', 'perfect', 'not', 'test', 'water', 'resist', 'realli', 'not', 'want'], ['love', 'work', 'perfect', 'thank'], ['samsung', 'galaxi', 'mini', 'product', 'guarante', 'like', 'deliveri', 'like', 'constant', 'product', 'inform', 'path', 'destin', 'deliveri', 'serious', 'trade', 'thank', 'much', 'score', 'five', 'five', 'star', 'congratul'], ['muy', 'buen', 'producto'], ['acept'], ['good'], ['excel', 'servic', 'anda', 'good', 'phone'], ['phone', 'purchas', 'decemb', 'februari', 'phone', 'start', 'overheat', 'point', 'phone', 'freez', 'way', 'get', 'back', 'work', 'condit', 'take', 'batteri', 'thought', 'case', 'start', 'use', 'without', 'case', 'work', 'well', 'period', 'start', 'back', 'april', 'problem', 'persist', 'cours', 'way', 'return', 'product', 'time', 'elaps', 'return', 'done', 'poor', 'thought', 'samsung', 'good', 'brand', 'stress', 'thought', 'good', 'purchas'], ['decent', 'phone', 'good', 'upgrad'], ['good'], ['good', 'phone', 'one', 'thought', 'specif', 'say', 'dust', 'water', 'resist', 'water', 'resist', 'meter', 'minut', 'bottom', 'conect', 'not', 'protect', 'water', 'think', 'not', 'inmers', 'phone', 'meter', 'water', 'general', 'great', 'phone', 'wife', 'love'], ['excel'], ['not', 'not', 'connect'], ['far', 'good', 'samsung', 'mini', 'screen', 'size', 'galaxi', 'far', 'optionsdo', 'realli', 'care', 'thumb', 'print', 'scanner', 'id', 'hard', 'time', 'recogn', 'thumb', 'even', 'though', 'idid', 'suppos', 'biggi', 'prefer', 'use', 'pattern', 'anyway'], ['phone', 'stop', 'work', 'complet', 'two', 'month', 'use', 'not', 'wast', 'two', 'phone', 'famili', 'member', 'went', 'dead', 'coupl', 'month', 'use'], ['excel', 'seller', 'phone', 'work', 'perfect', 'venezuela', 'thank'], ['not', 'latest', 'phone', 'quick', 'nimbl', 'problem', 'roll', 'att', 'plan', 'old', 'crappi', 'phone', 'mini'], ['perfect'], ['nice', 'phone', 'featur', 'indic', 'issu', 'phone', 'came', 'duo', 'not', 'want', 'not', 'major', 'issu', 'use', 'one', 'sim', 'card', 'cours', 'option', 'add', 'anoth', 'see', 'need'], ['like', 'phone', 'deliveri', 'time'], ['happi', 'purchas', 'start', 'use', 'work', 'fine', 'came', 'open', 'sim', 'function', 'well', 'use', 'jamaica'], ['perfect'], ['love', 'phone', 'like', 'samsung', 'galaxi', 'meet', 'exceed', 'expect', 'day', 'phone', 'fell', 'toilet', 'accident', 'surpris', 'still', 'work', 'not', 'turn', 'blow', 'hairdryer', 'use', 'paper', 'towel', 'dri', 'water', 'exterior', 'week', 'pass', 'still', 'not', 'issu'], ['amaz', 'price', 'function', 'new', 'mini', 'enjoy', 'everi', 'minut', 'still', 'lear', 'featur', 'display', 'clear'], ['muy', 'bueno'], ['love'], ['fine'], ['perfect'], ['bought', 'smartphon', 'sister', 'law', 'love'], ['great', 'phone'], ['price', 'incred', 'met', 'expect'], ['excel', 'product', 'servic'], ['work', 'perfect', 'outsid', 'us'], ['great', 'phone', 'work', 'well', 'realli', 'like'], ['great', 'item', 'love', 'size'], ['good'], ['samsung', 'product', 'purchas', 'not', 'disappoint', 'great', 'littl', 'smartphon', 'lot', 'bell', 'whistl', 'still', 'small', 'enough', 'carri', 'pocket', 'not', 'everyth', 'full', 'size', 'not', 'expect', 'howev', 'import', 'thing', 'qualcom', 'snapdragon', 'processor', 'android', 'os', 'latest', 'kernel', 'version', 'date', 'anoth', 'good', 'amazon', 'purchas'], ['phone', 'month', 'everyth', 'great', 'love', 'size'], ['muy', 'bueno'], ['work', 'perfect', 'color', 'screen', 'excel'], ['phone', 'excel', 'i', 'use', 'consum', 'cellular', 'issu', 'reason', 'not', 'give', 'star', 'packag', 'came', 'european', 'power', 'brick', 'wrong', 'style', 'plug', 'use', 'big', 'issu', 'alreadi', 'charger', 'old', 'phone', 'i', 'keep', 'use', 'would', 'infuri', 'first', 'time', 'charg', 'instal', 'old', 'sim', 'card', 'phone', 'work', 'make', 'call', 'wireless', 'right', 'box', 'get', 'hook', 'consum', 'cellular', 'data', 'took', 'coupl', 'step', 'easi', 'found', 'right', 'web', 'page', 'set', 'favorit', 'app', 'took', 'hour', 'watch', 'tv', 'took', 'anoth', 'coupl', 'hour', 'custom', 'home', 'screen', 'way', 'want'], ['got', 'replac', 'rugbi', 'pro', 'act', 'love', 'slight', 'bigger', 'rugbi', 'color', 'amaz', 'i', 'abl', 'set', 'like', 'rugbi', 'daughter', 'love', 'kid', 'mode', 'i', 'week', 'far', 'good'], ['item', 'awesom', 'i', 'purchas', 'one', 'unit'], ['screen', 'went', 'dark', 'repair', 'work', 'okay', 'sinc', 'amazon', 'fair', 'reimburs', 'happi', 'amazon', 'custom', 'servic'], ['ok'], ['good'], ['nice', 'work', 'movistar', 'venezuela', 'receiv', 'time'], ['excel', 'recommend'], ['excelent'], ['greetingi', 'write', 'inform', 'phone', 'galaxi', 'receiv', 'not', 'dual', 'sim', 'accomplish', 'various', 'page', 'galaxi', 'mini', 'model', 'dual', 'want', 'know', 'phone', 'not', 'work', 'buy', 'anoth', 'chace', 'ship', 'model', 'dual'], ['excel'], ['excel', 'buy', 'father', 'not', 'leav', 'alon', 'talk', 'increas', 'discov', 'someth', 'new', 'xd'], ['phone', 'stop', 'work', 'complet', 'two', 'month', 'use', 'not', 'wast', 'two', 'phone', 'famili', 'member', 'went', 'dead', 'coupl', 'month', 'use'], ['good'], ['brought', 'husband', 'birthday', 'sinc', 'travel', 'intern', 'alot', 'work', 'carrier', 'plan', 'intern', 'headset', 'not', 'work', 'phone', 'batteri', 'not', 'hold', 'well', 'countri', 'sd', 'card', 'includ', 'thought', 'come', 'phone'], ['fine'], ['prefac', 'review', 'say', 'technolog', 'challeng', 'know', 'virtual', 'noth', 'cell', 'phone', 'reluct', 'spend', 'lot', 'money', 'switch', 'window', 'phone', 'android', 'thought', 'would', 'requir', 'steep', 'learn', 'curv', 'carri', 'around', 'two', 'cell', 'phone', 'one', 'busi', 'one', 'person', 'use', 'savvi', 'son', 'suggest', 'consid', 'phone', 'bought', 'one', 'great', 'deal', 'trepid', 'i', 'glad', 'far', 'intuit', 'use', 'expect', 'absolut', 'love', 'busi', 'person', 'number', 'resid', 'phone', 'fact', 'love', 'everyth', 'phone', 'although', 'i', 'easi', 'pleas', 'i', 'technolog', 'challeng'], ['not', 'lte', 'compat', 'texa', 'mobil', 'wifi'], ['excel', 'product', 'seller', 'happi', 'purchas', 'work', 'perfect', 'venezuela'], ['love'], ['muy', 'bueno', 'muy', 'especi'], ['good'], ['nice', 'want'], ['great', 'phone', 'work', 'well', 'argentina', 'arriv', 'time'], ['posit'], ['work', 'beauti', 'caribbean', 'trinidad', 'west', 'indi'], ['love', 'phone', 'one', 'receiv', 'duo', 'not', 'need', 'extra', 'sim', 'card', 'capabl', 'atm', 'might', 'nice', 'futur', 'work', 'great', 'consum', 'cellular', 'servic', 'voic', 'text', 'immedi', 'put', 'sim', 'card', 'abl', 'copi', 'apn', 'set', 'old', 'phone', 'get', 'data', 'fit', 'neat', 'pocket', 'far', 'amaz', 'batteri', 'life', 'much', 'clearer', 'call', 'old', 'samsung', 'recommend', 'phone', 'anyon', 'want', 'smaller', 'size', 'water', 'resist', 'phone', 'cram', 'featur'], ['celular', 'increibl'], ['excel'], ['phone', 'stop', 'work', 'complet', 'two', 'month', 'use', 'not', 'wast', 'two', 'phone', 'famili', 'member', 'went', 'dead', 'coupl', 'month', 'use'], ['everyth', 'time'], ['excelent', 'producto'], ['excelent'], ['excel'], ['excel', 'cellphon'], ['good', 'small', 'easi', 'carri'], ['receiv', 'time', 'work', 'perfect'], ['perfect'], ['husband', 'love', 'new', 'phone', 'got', 'birthday', 'work', 'mobil', 'plan', 'problem', 'one', 'thing', 'weird', 'us', 'intern', 'charger', 'realli', 'problem', 'get', 'phone', 'anoth', 'languag', 'hard', 'understand', 'get', 'hang', 'also', 'shape', 'remind', 'phone'], ['satisfi', 'product', 'handl', 'transact', 'store'], ['not', 'intern', 'unlock', 'sad', 'cscreen', 'not', 'bight', 'way', 'start', 'flash', 'yellow'], ['nice', 'want'], ['amaz', 'devic', 'work', 'venezuela', 'within', 'movistar', 'digitel', 'network', 'notic', 'duo', 'cellphon', 'one', 'simcard', 'perform', 'well', 'recommend'], ['excel'], ['great', 'phone', 'work', 'well', 'realli', 'like'], ['thank'], ['yes', 'great'], ['good', 'phone', 'happi', 'work', 'perfect', 'argentina', 'seller', 'compli', 'agreement', 'aprec', 'reliabl', 'suggest', 'put', 'item', 'descript', 'dual', 'sim', 'confus', 'otherwis'], ['wonder', 'realli', 'love', 'phone'], ['dual', 'sim'], ['bought', 'samsung', 'galaxi', 'open', 'box', 'saw', 'duo', 'case', 'thank'], ['excel'], ['great', 'phone', 'long', 'batteri', 'dual', 'sim', 'card', 'work', 'perfect', 'tmobil', 'support', 'not', 'notic', 'slower', 'price', 'not', 'beat', 'deal'], ['mobil', 'arriv', 'quick', 'not', 'work', 'proper', 'not', 'read', 'micro', 'sim'], ['excelent'], ['not', 'unlock', 'call', 'samsung', 'see', 'thing', 'would', 'not', 'work', 'sim', 'told', 'india', 'not', 'cover', 'us', 'warranti', 'also', 'not', 'packag', 'open', 'us', 'charger', 'adapt', 'thrown', 'would', 'go', 'charger', 'plug', 'like', 'would', 'not', 'big', 'deal', 'sinc', 'send', 'back', 'get', 'refund', 'i', 'disappoint', 'long', 'wait', 'order', 'get', 'deliv', 'girlfriend', 'order', 'full', 'size', 'fold', 'couch', 'internet', 'not', 'even', 'take', 'i', 'would', 'say', 'mini', 'great', 'product', 'care', 'seller', 'buy', 'amazon'], ['brougth', 'cell', 'want', 'dual', 'sim', 'card', 'phone', 'recent', 'found', 'one', 'singl', 'sim', 'card', 'phone'], ['perfect'], ['yes', 'nice', 'cell', 'phone', 'good', 'work', 'speed', 'applic', 'recommend'], ['great', 'phone', 'not', 'work', 'well', 'metropc'], ['good', 'phone', 'overh'], ['excel', 'product'], ['good'], ['yes', 'love'], ['son', 'realli', 'l', 'ike', 'phone', 'make', 'sure', 'get', 'decent', 'cover', 'skin'], ['realli', 'great', 'phone', 'without', 'notabl', 'flaw'], ['consum', 'report', 'top', 'rate', 'smart', 'phone', 'needless', 'say', 'disappoint', 'not', 'live', 'expect', 'particular', 'problem', 'experienc', 'processor', 'lag', 'flimsi', 'materi', 'especi', 'remov', 'back', 'cover', 'counter', 'intuit', 'os'], ['awesom', 'phone', 'came', 'describ', 'appear', 'absolut', 'brand', 'new', 'fantast', 'xmas', 'gift', 'son'], ['problem', 'great', 'deal'], ['excel', 'product'], ['excelent'], ['love', 'phone'], ['work', 'great', 'look', 'brand', 'new', 'issu', 'would', 'high', 'recommend', 'compani', 'anyon', 'know'], ['galaxi', 'plenti', 'review', 'say', 'great', 'phone', 'littl', 'concern', 'buy', 'phone', 'onlin', 'activ', 'not', 'problem', 'took', 'phone', 'local', 'store', 'instal', 'new', 'sim', 'old', 'one', 'wrong', 'size', 'phone', 'go', 'minut', 'money', 'save', 'buy', 'phone', 'amazon', 'allow', 'buy', 'ton', 'accessori'], ['product', 'not', 'make', 'time'], ['i', 'happi', 'got', 'fast', 'phone', 'not', 'like', 'pictur', 'saw', 'pictur', 'samsung', 'symbol', 'back', 'cover', 'side', 'phone', 'got', 'symbol', 'not', 'like', 'much', 'hope', 'amazon', 'correct', 'product', 'pictur'], ['best', 'phone', 'ever', 'far', 'qualiti', 'life', 'went', 'dramat', 'thank'], ['happi', 'smartphon', 'run', 'right', 'movistar', 'venezuela', 'carrier', 'recommend', 'great', 'seller', 'great', 'seller', 'great', 'price', 'great', 'smartphon'], ['fine'], ['wonder', 'phone', 'far', 'best', 'phone', 'ever', 'load', 'crap', 'ton', 'featur', 'i', 'still', 'tri', 'learn', 'phone', 'week', 'fast', 'far', 'abl', 'handl', 'everyth', 'i', 'thrown', 'camera', 'fair', 'good', 'great', 'video', 'smooth', 'motion', 'set', 'make', 'video', 'incred', 'clear', 'smooth', 'frame', 'rate', 'far', 'absolut', 'love', 'downsid', 'batteri', 'kind', 'weak', 'phone', 'time', 'get', 'home', 'work', 'light', 'use', 'day', 'asid', 'one', 'thing', 'phone', 'great', 'buy', 'price', 'got'], ['arriv', 'time', 'item', 'work', 'perfect'], ['product', 'deliv', 'time', 'describ', 'replac', 'motorola', 'phone', 'terrif', 'phone', 'still', 'learn', 'use', 'capabl'], ['great', 'phone', 'good', 'price'], ['problem', 'first', 'warranti', 'samsung', 'fix', 'time'], ['upset', 'item', 'receiv', 'damag', 'screen', 'lift', 'speaker', 'also', 'defect'], ['phone', 'not', 'work', 'pleas', 'send', 'back'], ['great', 'phone', 'wish', 'intern', 'memori', 'att', 'ridicul', 'offer', 'gig', 'phone', 'day', 'age'], ['great', 'phone'], ['beauti', 'phone', 'work', 'great'], ['arriv', 'time', 'scratch', 'happi', 'purchas'], ['work', 'well', 'troubl'], ['excel'], ['great', 'price', 'perfect', 'condit'], ['best', 'phone', 'i', 'ever', 'hand', 'hand'], ['yes', 'love'], ['great', 'phone', 'great', 'pic', 'fast', 'deliveri'], ['not', 'complain', 'expect'], ['thing', 'account', 'tha', 'cellphon', 'not', 'chip', 'could', 'not', 'download', 'updat'], ['great'], ['good'], ['not', 'work', 'black', 'scree'], ['continu', 'issu', 'connect', 'phone', 'list', 'common', 'issu', 'bar', 'level', 'never', 'exceed', 'three', 'bar', 'usual', 'stand', 'two', 'bar', 'frequent', 'not', 'make', 'call', 'show', 'emerg', 'call', 'prompt', 'frequent', 'drop', 'call', 'unabl', 'connect', 'applic', 'home', 'secur', 'systemsinc', 'vendor', 'good', 'guy', 'custom', 'servic', 'onlin', 'websit', 'not', 'allow', 'user', 'outsid', 'australia', 'leav', 'inquiri', 'custom', 'support', 'contact', 'cellular', 'provid', 'numer', 'time', 'issu', 'unabl', 'resolv', 'identifi', 'issu', 'second', 'samsung', 'cell', 'phone', 'purchas', 'previous', 'one', 'purchas', 'phone', 'reason', 'cost', 'experienc', 'servic', 'issu', 'phone', 'select', 'cell', 'phone', 'definit', 'not', 'samsung', 'purchas', 'via', 'internet'], ['good', 'phone', 'unlock', 'not', 'go', 'return'], ['great', 'phone', 'one', 'suggest', 'go', 'sold', 'unlock', 'root', 'phone', 'possibl', 'remov', 'origin', 'provid', 'junk', 'unlock', 'not', 'still', 'oper', 'like', 'phone', 'would', 'expect', 'one', 'provid', 'app', 'launch', 'startup', 'run', 'background', 'suck', 'resourc', 'everi', 'turn', 'possibl', 'communic', 'know', 'without', 'root', 'not', 'uninstal', 'pay', 'retail', 'not', 'provid', 'buyer', 'admin', 'make', 'true', 'owner'], ['phone', 'arriv', 'quick', 'new', 'advertis', 'camera', 'qualiti', 'not', 'worth', 'pay', 'twice', 'much', 'phone', 'quicker', 'cricket', 'activ', 'hitch', 'process', 'figur', 'account', 'number', 'tracfon', 'switch', 'number'], ['return', 'phone', 'soon', 'got', 'tri', 'make', 'phone', 'call', 'five', 'five', 'peopl', 'talk', 'said', 'could', 'not', 'hear', 'well', 'lot', 'static', 'background', 'took', 'sim', 'card', 'switch', 'old', 'phone', 'problem', 'resolv', 'issu', 'seem', 'isol', 'phone', 'end', 'return'], ['excit', 'yo', 'receiv', 'samsung', 'phone', 'phone', 'caller', 'not', 'hear', 'hear', 'even', 'speaker', 'volum', 'extrem', 'low', 'not', 'know', 'phone', 'issu', 'product'], ['not', 'unlock', 'phone', 'also', 'poor', 'batteri', 'life', 'everi', 'time', 'phone', 'woke', 'said', 'check', 'back', 'phone', 'make', 'sure', 'instal', 'correct', 'even', 'though', 'obvious', 'phone', 'not', 'check', 'amazon', 'even', 'though', 'sticker', 'say', 'amazon', 'inspect'], ['recent', 'bought', 'phone', 'amazon', 'found', 'not', 'unlock', 'advertis', 'spent', 'hour', 'phone', 'landlin', 'unlock', 'phone', 'great', 'otherwis', 'uninstal', 'att', 'app', 'pain', 'not', 'know', 'would', 'buy', 'anoth', 'phone', 'amazon', 'buyer', 'bewar'], ['nice', 'phone', 'except', 'would', 'not', 'way', 'connect', 'comput', 'whether', 'window', 'mean', 'could', 'not', 'add', 'music', 'photo', 'phone', 'local', 'samsung', 'rep', 'tri', 'make', 'work', 'geek', 'best', 'buy', 'along', 'smart', 'one', 'carrier', 'mobil', 'last', 'not', 'least', 'super', 'phone', 'tech', 'samsung', 'took', 'contol', 'phone', 'comput', 'could', 'find', 'solut', 'would', 'love', 'say', 'phone', 'return', 'refund'], ['phone', 'mani', 'problem'], ['water', 'insul', 'offwat', 'insul', 'taken', 'port', 'load', 'seen', 'poor', 'qualiti', 'one', 'expens', 'equip', 'must', 'not', 'cosmet', 'defect', 'mean', 'phone', 'defect', 'longer', 'waterproof', 'insul', 'not', 'took', 'doubt', 'origin', 'speak', 'accept', 'medium', 'two', 'detail', 'not', 'understand', 'phone', 'case', 'differ', 'origin', 'team', 'samsung', 'latter', 'not', 'make', 'video', 'call', 'not', 'happen', 'samsung', 'galaxi', 'allow', 'video', 'phone', 'slow', 'take', 'time', 'implement', 'command', 'actual', 'cheat', 'product'], ['nice', 'phone', 'love', 'android', 'problem', 'batteri', 'not', 'last', 'expect'], ['satisfi'], ['phone', 'ship', 'fast', 'thing', 'prepar', 'take', 'phone', 'provid', 'get', 'new', 'sim', 'card'], ['great', 'phone', 'wish', 'intern', 'memori', 'att', 'ridicul', 'offer', 'gig', 'phone', 'day', 'age'], ['realli', 'nice', 'phone', 'cricket', 'wireless', 'work', 'perfect', 'soon', 'put', 'sim', 'card', 'turn', 'phone', 'ship', 'take', 'quit', 'sometim', 'even', 'amazon', 'prime', 'took', 'week'], ['seller', 'came', 'succeed', 'expect'], ['phone', 'work', 'week', 'south', 'american', 'countri', 'oper', 'claro', 'carrier', 'updat', 'firmwar', 'verifi', 'phone', 'could', 'compat', 'servic', 'ecuador', 'extra', 'work', 'fine', 'not', 'singl', 'problem', 'sinc'], ['perhap', 'purchas', 'intern', 'version', 'want', 'sure', 'full', 'access', 'avail', 'wireless', 'band', 'inspit', 'bloatwar', 'sm', 'still', 'great', 'arriv', 'seller', 'state', 'not', 'say', 'sure', 'actual', 'unlock', 'byod', 'custom', 'get', 'unlock', 'code', 'break', 'easili', 'get', 'rid', 'samsung', 'bloatwar'], ['sent', 'white', 'phone', 'desctipt', 'say', 'black', 'phone', 'visibl', 'damag', 'around', 'edg', 'descript', 'said', 'light', 'scratch'], ['excel', 'phone'], ['great', 'phone', 'not', 'work', 'well', 'metropc'], ['exelent'], ['extrem', 'happi', 'excel', 'right', 'box', 'first', 'android', 'phone', 'i', 'still', 'learn', 'voic', 'text', 'data', 'app', 'could', 'want'], ['i', 'argentina', 'work', 'ok'], ['upset', 'item', 'receiv', 'damag', 'screen', 'lift', 'speaker', 'also', 'defect'], ['complet', 'satisfi', 'phone', 'noth', 'complain'], ['nice', 'lightn', 'fast', 'problem', 'phone', 'week', 'love'], ['describ'], ['great', 'price', 'perfect', 'condit'], ['nice', 'featur', 'move'], ['first', 'hand', 'not', 'know', 'bought', 'nephew', 'week', 'ago', 'ship', 'seem', 'like', 'guess', 'far', 'good', 'deal'], ['nice', 'job', 'samsung'], ['work', 'great', 'straight', 'talk', 'servic'], ['yes', 'nice', 'cell', 'phone', 'good', 'work', 'speed', 'applic', 'recommend'], ['happi', 'good', 'price', 'fast', 'ship', 'good', 'communic', 'seller'], ['good'], ['absolut', 'gorgeous', 'phone', 'upgrad', 'motorola', 'want', 'phone', 'replac', 'batteri', 'larger', 'screen', 'impress', 'moto', 'blown', 'away', 'galaxi', 'resolut', 'still', 'need', 'verifi', 'phone', 'unlock', 'att', 'custom', 'phone', 'previous', 'att', 'unit', 'simpl', 'slide', 'sim', 'card', 'air', 'littl', 'let', 'thought', 'would', 'last', 'version', 'kit', 'kat', 'lollipop', 'not', 'big', 'fan', 'newer', 'background', 'data', 'mine', 'phone', 'came', 'indic', 'actual', 'condit', 'sign', 'screen', 'flawless'], ['love', 'samsung', 'galaxi', 'realli', 'everythingi', 'fine', 'noth', 'problem', 'even', 'price', 'fair'], ['i', 'never', 'bought', 'phone', 'amazon', 'soul', 'reason', 'doubt', 'howev', 'phone', 'came', 'within', 'day', 'brand', 'new', 'unopen', 'case', 'headphon', 'charg', 'cord', 'batteri', 'phone', 'phone', 'amaz', 'i', 'extrem', 'happi', 'product', 'live', 'hype', 'thank'], ['item', 'defect'], ['not', 'first', 'like', 'featur', 'i', 'troubl', 'everi', 'one', 'one', 'coupl', 'month', 'front', 'camera', 'partial', 'black', 'screen', 'rotat', 'quit', 'fail', 'gyro', 'test', 'would', 'send', 'back', 'i', 'would', 'get', 'refurbish', 'phone', 'someon', 'els', 'problem', 'i', 'go', 'back', 'iphon', 'soon'], ['love', 'phone', 'great', 'app', 'easi', 'use'], ['nice', 'phone', 'bought', 'parent', 'easi', 'use', 'never', 'one', 'batteri', 'came', 'loos', 'conect', 'turn', 'phone', 'sent', 'new', 'one', 'not', 'problem', 'fluke', 'guess'], ['order'], ['phone', 'work', 'fine', 'better', 'shape', 'describ'], ['phone', 'use', 'rebuilt', 'factori', 'samsung', 'warranti', 'advertis', 'phone', 'stop', 'work', 'correct', 'week', 'return', 'samsung', 'find', 'warranti', 'gold', 'phone', 'manufactur', 'samsung', 'sold', 'black', 'phone', 'tri', 'month', 'get', 'amazon', 'fix', 'mess'], ['good'], ['work', 'fine'], ['pleas', 'phone', 'appear', 'replac', 'batteri', 'near', 'futur', 'expect'], ['dose', 'not', 'work', 'mobil', 'g', 'lte', 'network'], ['happi', 'product', 'custom', 'servic', 'help'], ['love', 'big', 'bold'], ['everyth', 'perfect'], ['not', 'buy', 'seller', 'bought', 'blutek', 'use', 'travel', 'state', 'unpack', 'insert', 'sim', 'card', 'took', 'flight', 'plug', 'slept', 'hour', 'find', 'devic', 'charg', 'batteri', 'rate', 'charg', 'got', 'worst', 'i', 'unabl', 'return', 'item', 'travel', 'bad', 'disappoint'], ['thank', 'fianc', 'love', 'new', 'phone', 'end', 'want', 'keep', 'one', 'instead'], ['good', 'phone', 'could', 'not', 'get', 'good', 'signal', 'anywher', 'went', 'even', 'though', 'network', 'previous', 'phone', 'new', 'box', 'good', 'price'], ['unlock', 'phone', 'often', 'updat', 'phone', 'sometim', 'eras', 'apn', 'set', 'fine', 'annoy', 'logo', 'music', 'startup', 'set', 'app', 'not', 'delet', 'standard', 'text', 'app', 'came', 'phone', 'not', 'send', 'pictur', 'messag', 'use', 'android', 'app', 'text', 'screen', 'easi', 'read', 'take', 'beauti', 'straight', 'talk', 'sim'], ['cell', 'lock'], ['not', 'bad', 'phone', 'shut', 'unexpect', 'sometim', 'also', 'headphon', 'mic', 'not', 'work'], ['great', 'phone', 'got', 'time'], ['love', 'galaxi', 'verizon', 'bought', 'version', 'husband', 'experi', 'straight', 'talk', 'use', 'tower', 'came', 'kit', 'kat', 'updat', 'lollipop', 'wait', 'updat', 'marshmallow', 'seem', 'work', 'fine', 'husband', 'learn', 'use'], ['stop', 'work', 'day', 'amazon', 'refund', 'money', 'issu'], ['not', 'water', 'proof', 'awar', 'ok', 'buy', 'not', 'worth', 'money'], ['iv', 'use', 'phone', 'month', 'real'], ['want', 'less', 'std', 'price'], ['first', 'model', 'clone', 'put', 'safe', 'reboot', 'see', 'model', 'number', 'clone', 'samsung'], ['not', 'come', 'correct', 'charg', 'cabl', 'luckili', 'samsung', 'galaxi', 'pro', 'tab', 'use', 'charger', 'poor', 'move', 'manufactur', 'part'], ['perfecto'], ['good', 'thank'], ['work', 'perfect', 'mexico', 'not', 'get', 'lte', 'realli', 'fast', 'mayb', 'faster', 'not', 'problem', 'want', 'tri', 'water', 'i', 'scare', 'excel', 'phone', 'realli', 'recomend'], ['work', 'perfect', 'movilnet', 'venezuela', 'great', 'product', 'european', 'charger', 'adapt', 'big', 'pocket'], ['excelent'], ['love', 'phone', 'not', 'know', 'work', 'korea', 'year', 'not', 'set', 'yet', 'i', 'sure', 'fine'], ['appear', 'origin', 'bought', 'one', 'venezuela', 'work', 'fine', 'digitel'], ['order', 'phone', 'excit', 'intern', 'unlock', 'phone', 'french', 'not', 'chang', 'not', 'go', 'english', 'chang', 'rate', 'know', 'get', 'english', 'not', 'happi', 'even', 'instruct', 'french', 'absolut', 'english'], ['fast', 'stabl', 'lot', 'use', 'tool', 'think', 'item', 'useless', 'like', 'air', 'view', 'may', 'use', 'someon', 'nice', 'resourc', 'remot', 'control', 'function', 'use', 'chromecast', 'think', 'flip', 'cover', 'mandatori', 'found', 'use', 'thing', 'dislik', 'british', 'standard', 'charger'], ['excelent'], ['good'], ['love', 'phone', 'keep', 'amaz'], ['return', 'due', 'bad', 'call', 'receiv', 'product', 'regular', 'price', 'special', 'discount', 'payment', 'receiv', 'give', 'rate', 'write', 'review', 'rate', 'pure', 'base', 'percept', 'good', 'qualiti', 'featur', 'product', 'not', 'consid', 'use', 'product', 'custom', 'would', 'buy', 'item', 'avid', 'onlin', 'shopper', 'realiz', 'import', 'review', 'user', 'thus', 'take', 'extrem', 'care', 'offer', 'fair', 'review', 'rate', 'question', 'product', 'qualiti', 'look', 'featur', 'anyth', 'els', 'simpli', 'make', 'comment', 'prompt', 'respond', 'need', 'pictur', 'video', 'product', 'happi', 'provid', 'well'], ['sleek', 'user', 'friend', 'lot', 'app', 'take', 'good', 'pictur'], ['still', 'process', 'learn', 'phone', 'noth', 'thus', 'far', 'disappoint', 'pleas', 'purchas'], ['seller', 'ship', 'phone', 'hour', 'order', 'worth', 'h', 'screen', 'batteri', 'camera', 'cpu', 'everyth', 'technic', 'phone', 'not', 'love', 'aesthet', 'metal', 'frame', 'around', 'edg', 'goofi', 'ridg', 'overal', 'design', 'not', 'could', 'would', 'probabl', 'get', 'plan', 'keep', 'phone', 'year', 'want', 'top', 'line', 'batteri', 'camera', 'moder', 'improv', 'import', 'featur'], ['excelent'], ['excenl'], ['like'], ['happi', 'time', 'deliveri', 'phone', 'phone', 'came', 'work', 'well'], ['excel', 'product', 'deliveri', 'expect'], ['extraordinay', 'product', 'great', 'price'], ['work', 'well', 'tmobil', 'plan', 'usa', 'good', 'size', 'crisp', 'clear', 'photo', 'video', 'ultra', 'slim', 'mine', 'not', 'come', 'carri', 'case', 'purchas', 'separ'], ['not', 'work', 'not', 'read', 'use', 'chang', 'platelet', 'someth', 'like', 'time', 'valu', 'open', 'eye'], ['issu', 'far', 'phone', 'speed', 'great', 'download', 'upload', 'month', 'ship', 'fast'], ['great', 'product', 'period'], ['not', 'work', 'need', 'refund', 'might', 'reus'], ['excel', 'got', 'product', 'time', 'met', 'not', 'get', 'manual', 'fine', 'load'], ['mucha', 'gracia', 'excelent', 'todo'], ['excel', 'product'], ['defect', 'not', 'read', 'sd', 'card'], ['came', 'expect', 'perfect', 'condit', 'program', 'awesom', 'appl', 'iphon', 'switch', 'samsung', 'sinc', 'cheaper', 'easi', 'live', 'tini', 'island', 'far', 'away', 'us', 'phone', 'work', 'perfect', 'hope', 'help'], ['nice', 'phone', 'clean', 'easi', 'use', 'especi', 'big', 'enough', 'use', 'phone', 'return'], ['great'], ['perfect', 'brand', 'new', 'unlock', 'everyth', 'includ'], ['love', 'look', 'feel', 'phone', 'front', 'camera', 'splendid', 'selfi', 'camera', 'show', 'lot', 'detail', 'long', 'good', 'light', 'phone', 'come', 'number', 'uniqu', 'featur', 'turn', 'custom', 'experi', 'main', 'complaint', 'phone', 'batteri', 'heavi', 'user', 'like', 'alway', 'carri', 'charger', 'invest', 'spare', 'phone', 'prone', 'overh', 'charg', 'kind', 'scari', 'not', 'lot', 'demand', 'task', 'charg', 'let', 'charg', 'hard', 'surfac', 'cloth', 'make', 'heat', 'ever', 'sinc', 'android', 'updat', 'came', 'yet', 'download', 'updat', 'notif', 'refus', 'go', 'away', 'i', 'not', 'sure', 'effect', 'batteri', 'life', 'bought', 'phone', 'batteri', 'life', 'realli', 'love', 'lot', 'exclus', 'use', 'featur', 'issu', 'everi', 'overal', 'like', 'biggest', 'pro', 'camera', 'exclus', 'featuresbiggest', 'con', 'batteri', 'period', 'goof'], ['impress', 'new', 'phone', 'ship', 'quick', 'receiv', 'within', 'day', 'time', 'high', 'recommend'], ['receiv', 'phone', 'extrem', 'fast', 'excel', 'work', 'condit'], ['excelent'], ['excelent'], ['excel'], ['size', 'small', 'normal', 'one', 'suggest', 'buy', 'direct', 'store', 'rather', 'onlin'], ['came', 'time', 'work', 'well'], ['intern', 'unlock', 'work', 'everywher', 'world', 'get', 'prepaid', 'contract', 'us', 'awesom'], ['great', 'phone', 'great', 'shipe'], ['not', 'buy', 'phone', 'sinc', 'septemb', 'phone', 'not', 'updat', 'new', 'firmwar', 'lollipop', 'samsung', 'origin', 'phone', 'made', 'vietnam', 'origin', 'origin', 'custom', 'uae', 'chang', 'csc', 'word', 'pda', 'modem', 'countri', 'etc', 'not', 'match', 'not', 'updat', 'unless', 'root', 'phone', 'warranti', 'lost', 'not', 'give', 'warranti', 'phone', 'manipul', 'chang', 'csc', 'phone', 'bought', 'shopebest', 'work', 'ok', 'countri', 'central', 'america', 'main', 'problem', 'seller', 'not', 'say', 'buyer', 'phone', 'differ', 'csc', 'mine', 'csc', 'code', 'thr', 'irak', 'not', 'believ', 'pleas', 'read', 'investig', 'http', 'http'], ['element', 'purchas', 'describ', 'devic', 'work', 'new', 'critiqu', 'would', 'would', 'help', 'shipper', 'indic', 'signatur', 'would', 'requir', 'guess', 'expect', 'overal', 'good', 'transact'], ['great', 'product', 'buy'], ['issu', 'problem'], ['batteri', 'goe', 'easili', 'less', 'hour'], ['great'], ['excel'], ['hello', 'write', 'review', 'mayb', 'help', 'someon', 'not', 'wast', 'buck', 'phone', 'month', 'ago', 'ship', 'insid', 'might', 'initi', 'think', 'phone', 'sold', 'samsung', 'amazon', 'state', 'seller', 'name', 'well', 'not', 'realli', 'sold', 'compani', 'call', 'worldwid', 'model', 'compani', 'ship', 'origin', 'built', 'use', 'africa', 'charg', 'cube', 'not', 'use', 'us', 'power', 'outlet', 'buy', 'origin', 'us', 'get', 'start', 'model', 'work', 'almost', 'us', 'oper', 'least', 'mine', 'work', 'verizon', 'telcel', 'mexico', 'claro', 'argentina', 'colombia', 'issu', 'phone', 'week', 'normal', 'use', 'display', 'stop', 'work', 'screen', 'go', 'blank', 'remain', 'unus', 'mayb', 'hour', 'time', 'period', 'display', 'come', 'tint', 'pink', 'last', 'hour', 'display', 'go', 'blank', 'cycl', 'repeat', 'everi', 'day', 'may', 'imagin', 'frustrat', 'got', 'hardwar', 'issu', 'get', 'old', 'iphon', 'took', 'phone', 'samsung', 'servic', 'shop', 'refus', 'honor', 'warranti', 'argu', 'product', 'not', 'purchas', 'author', 'samsung', 'resel', 'not', 'even', 'sure', 'not', 'stolen', 'one', 'month', 'day', 'issu', 'return', 'request', 'amazon', 'explain', 'challeng', 'face', 'product', 'warranti', 'claim', 'amazon', 'forward', 'return', 'request', 'worldwid', 'distributor', 'answer', 'claim', 'dear', 'buyeryour', 'unit', 'yr', 'warranti', 'manufactur', 'pleas', 'contact', 'assist', 'samsung', 'contact', 'respond', 'alreadi', 'taken', 'phone', 'author', 'samsung', 'repair', 'shop', 'honor', 'warranti', 'refus', 'servic', 'not', 'news', 'worldwid', 'distributor', 'amazon', 'i', 'stuck', 'usd', 'unus', 'phone', 'realli', 'frustrat', 'compani', 'custom', 'help'], ['good', 'product'], ['first', 'day', 'phone', 'not', 'usr', 'shut', 'show', 'headphon', 'icon', 'even', 'connect', 'mean', 'way', 'call', 'use', 'de', 'warranti', 'thing', 'cri'], ['wysiwyg', 'work', 'brazil'], ['fail', 'warranti', 'year', 'month', 'could', 'not', 'repair'], ['thank', 'work', 'great'], ['phone', 'pretti', 'work', 'mani', 'issu', 'sent', 'back', 'repair', 'sent', 'back', 'still', 'broken', 'call', 'said', 'send', 'not', 'think', 'pay', 'ship', 'send', 'still', 'broken', 'phone', 'call', 'samsung', 'help', 'group', 'redicul'], ['turn', 'previous', 'owner', 'not', 'keep', 'payment'], ['good', 'time', 'perfect', 'problem', 'not', 'unlock', 'like', 'add'], ['arriv', 'new', 'condit', 'perfect', 'love', 'camera', 'take', 'great', 'pic', 'love', 'phone', 'actual', 'hold', 'charg', 'turn', 'app', 'final', 'electron', 'function', 'charger', 'not', 'work', 'one', 'came', 'phone', 'nice', 'job'], ['warranti', 'day', 'soon', 'happen', 'start', 'break', 'go', 'extrem', 'slowli', 'take', 'least', 'second', 'oper', 'differ', 'app', 'would', 'also', 'shut', 'nowher'], ['thank', 'much'], ['smile', 'great', 'phone', 'perfect', 'condit', 'work', 'well', 'love'], ['great', 'phone', 'competit', 'price'], ['scratch', 'pretti', 'bad', 'would', 'say', 'poor', 'condit'], ['good', 'phone', 'love', 'lot', 'not', 'smart', 'phone', 'supper', 'smart', 'phone', 'love'], ['famili', 'bought', 'differ', 'phone', 'compani', 'zero', 'issu', 'would', 'recommend', 'phone', 'someon', 'not', 'look', 'latest', 'greatest', 'wife', 'not', 'replac', 'batteri', 'not', 'add', 'memori', 'not', 'water', 'resist', 'seem', 'like', 'samsung', 'went', 'wrong', 'way', 'everyth', 'not', 'updat', 'phone', 'still', 'work', 'like', 'box'], ['good', 'phone', 'wonder', 'batteri', 'life'], ['product', 'describ', 'work', 'great', 'smooth', 'transact', 'activ', 'pageplus', 'plan', 'problem'], ['one', 'phone', 'purchas', 'return', 'phone', 'never', 'paid', 'origin', 'owner', 'perman', 'lock', 'ask', 'clerk', 'store', 'would', 'need', 'activ', 'told', 'need', 'locat', 'origin', 'owner', 'phone', 'pay', 'balanc', 'not', 'buy', 'phone', 'not', 'worth', 'problem'], ['product', 'suck', 'not', 'buy', 'chubbietech', 'phone', 'get', 'hot', 'quick', 'die', 'quick', 'longer', 'abl', 'send', 'phone', 'back', 'get', 'money', 'back', 'thought', 'buy', 'brand', 'new', 'turn', 'refurbish', 'buyer', 'bewar', 'give', 'star', 'otherwis', 'not', 'let', 'post', 'truth'], ['gift', 'husband', 'happi'], ['solid', 'product', 'work', 'great'], ['product', 'describ', 'work', 'great', 'smooth', 'transact', 'activ', 'pageplus', 'plan', 'problem'], ['galaxi', 'still', 'even', 'compar', 'one', 'favorit', 'phone', 'featur', 'replac', 'batteri', 'expans', 'memori', 'slot', 'resist', 'infrar', 'support', 'strang', 'reason', 'remov', 'newer', 'galaxi', 'seri', 'phone', 'later', 'ad', 'back', 'new', 'featur'], ['bit', 'concern', 'refurbish', 'phone', 'appear', 'new', 'work', 'fine', 'charg', 'port', 'bit', 'dust', 'issu', 'charg', 'happi', 'save', 'money', 'updat', 'review', 'unit', 'return', 'due', 'overh', 'bad', 'display', 'multipl', 'imag'], ['arriv', 'great', 'shape', 'great', 'price', 'includ', 'everyth', 'new', 'packag', 'may', 'never', 'deal', 'junk', 'appl', 'push'], ['famili', 'bought', 'differ', 'phone', 'compani', 'zero', 'issu', 'would', 'recommend', 'phone', 'someon', 'not', 'look', 'latest', 'greatest', 'wife', 'not', 'replac', 'batteri', 'not', 'add', 'memori', 'not', 'water', 'resist', 'seem', 'like', 'samsung', 'went', 'wrong', 'way', 'everyth', 'not', 'updat', 'phone', 'still', 'work', 'like', 'box'], ['i', 'never', 'issu', 'certifi', 'refurbish', 'item', 'amazon', 'kind', 'disappoint', 'big', 'flaw', 'damag', 'screen', 'fine', 'almost', 'bodi', 'flaw', 'phone', 'howev', 'volum', 'rocker', 'jam', 'not', 'actual', 'much', 'constant', 'push', 'volum', 'command', 'pop', 'i', 'tri', 'reset', 'take', 'batteri', 'dice', 'stock', 'not', 'app', 'conflict', 'anyth', 'suck', 'guess', 'ill', 'tri', 'return', 'definit', 'made', 'wari', 'certifi', 'refurbish', 'qualiti'], ['love', 'new', 'phone', 'glad', 'final', 'came'], ['good', 'phone', 'wonder', 'batteri', 'life'], ['well', 'phone', 'less', 'month', 'hard', 'rate', 'arriv', 'intact', 'advertis', 'current', 'work', 'well', 'expect', 'one', 'month', 'refurbish', 'samsung', 'ask', 'month', 'far', 'pleas', 'well', 'refurbish'], ['like', 'work', 'fine'], ['piec', 'crap', 'phone', 'save', 'summer', 'get', 'phone', 'brand', 'new', 'say', 'screen', 'turn', 'green', 'line', 'keep', 'freez', 'week', 'get', 'guess', 'week', 'return', 'polici', 'phone', 'coupl', 'day', 'past', 'unbeliev', 'never', 'buy'], ['got', 'phone', 'quicker', 'expect', 'phone', 'look', 'amaz', 'abl', 'use', 'right', 'away', 'problem', 'thank', 'amazon', 'awesom', 'custom', 'servic'], ['love', 'phone', 'thank', 'wireless', 'expert'], ['horribl', 'horribl', 'horribl', 'not', 'wast', 'money', 'antenna', 'phone', 'went', 'faulti', 'less', 'month', 'get', 'horribl', 'servic', 'not', 'servic', 'provid', 'phone', 'not', 'drop', 'water', 'damag', 'take', 'phone', 'repair', 'pray', 'fix', 'issu', 'spent', 'great'], ['thank'], ['like', 'product', 'also', 'deliveri', 'time', 'maintain'], ['give', 'zero', 'star', 'bought', 'two', 'phone', 'breed', 'vendor', 'phone', 'one', 'month', 'one', 'phone', 'broke', 'abl', 'return', 'day', 'phone', 'major', 'batteri', 'would', 'not', 'hold', 'charg', 'coupl', 'hour', 'batteri', 'swell', 'much', 'crack', 'lcd', 'googl', 'mani', 'instanc', 'bloat', 'batteri', 'issu', 'samsung', 'not', 'anyth', 'day', 'past', 'warranti', 'scam', 'buy', 'new', 'phone', 'expect', 'fall', 'apart', 'month', 'insan', 'spend', 'new', 'phone', 'break', 'seller', 'refus', 'assist', 'second', 'one', 'day', 'past', 'warranti', 'unbeliev', 'terribl', 'product', 'terribl', 'custom', 'not', 'buy', 'phone', 'not', 'buy', 'breedfurth', 'updat', 'buyer', 'bewar', 'appar', 'phone', 'not', 'new', 'even', 'though', 'sold', 'new', 'contact', 'samsung', 'phone', 'suppos', 'manufactur', 'warranti', 'wrong', 'phone', 'repair', 'accord', 'samsung', 'imei', 'number', 'tell', 'everyth', 'phone', 'phone', 'purchas', 'gold', 'accord', 'samsung', 'record', 'imei', 'number', 'detail', 'suppos', 'charcoal', 'black', 'would', 'not', 'honor', 'warranti', 'chang', 'not', 'fraud', 'seller', 'misrepres', 'product', 'claim', 'new', 'not', 'new', 'amazon', 'pleas', 'remov', 'breed', 'sell', 'site'], ['great', 'phone'], ['good', 'problem', 'work', 'sea', 'jamaica', 'digicel'], ['far', 'good', 'phone', 'realli', 'nice', 'fast', 'surpris', 'batteri', 'life', 'blow', 'alcatel', 'tracfon', 'better', 'batteri', 'follow', 'onlin', 'trick', 'extend', 'batteri', 'life', 'dead', 'hour'], ['regret', 'purchas', 'phone', 'inform', 'given', 'phone', 'not', 'true', 'fals', 'advertis', 'disappoint', 'phone', 'not', 'read', 'not', 'purchas'], ['phone', 'like', 'brand', 'new'], ['boost', 'mobil', 'devic', 'could', 'not', 'use', 'sprint', 'network'], ['reciev', 'phone', 'day', 'ago', 'far', 'great', 'exact', 'like', 'new', 'phone', 'even', 'came', 'sim', 'card', 'verizon', 'littl', 'leari', 'order', 'phone', 'year', 'warranti', 'def', 'glad', 'got', 'save', 'new', 'one', 'verizon'], ['seem', 'like', 'good', 'deal', 'first', 'phone', 'not', 'work', 'block', 'network', 'previous', 'owner', 'owe', 'money', 'ugh', 'seem', 'like', 'could', 'check', 'suggest', 'use', 'fast', 'ship', 'get', 'work', 'unit', 'may', 'requir', 'patienc', 'updat', 'review', 'get', 'next', 'one'], ['love', 'perfect', 'condit'], ['bought', 'phone', 'last', 'august', 'first', 'seem', 'like', 'great', 'deal', 'crack', 'screen', 'start', 'problem', 'touch', 'month', 'phone', 'start', 'issu', 'lag', 'make', 'sure', 'not', 'overload', 'phone', 'app', 'photo', 'etc', 'phone', 'lag', 'app', 'internet', 'even', 'wifi', 'relat', 'function', 'like', 'text', 'phone', 'often', 'lock', 'act', 'like', 'restart', 'even', 'though', 'not', 'restart', 'frustrat', 'buy', 'new', 'electron', 'buy', 'refurbish', 'much', 'risk'], ['exact', 'need'], ['sad', 'product', 'malfunct', 'first', 'day', 'arriv', 'constant', 'kept', 'reboot', 'know', 'certifi', 'refurbish', 'mean', 'almost', 'indistinguish', 'new', 'come', 'perform', 'will', 'accept', 'minor', 'cosmet', 'blemish', 'seller', 'accommod', 'give', 'return'], ['nice'], ['love', 'phone', 'mani', 'fun', 'featur'], ['excelent'], ['think', 'gres', 'one', 'week', 'phone', 'turn', 'frezz'], ['amaz', 'cellphon', 'star', 'everi', 'aspect'], ['not', 'unlock'], ['product', 'got', 'hous', 'one', 'day', 'suppos', 'phone', 'work', 'realli', 'good', 'beauti'], ['receiv', 'cell', 'phone', 'charger', 'asia', 'travel', 'adaptor', 'problem', 'seal', 'broken', 'bewar', 'wait', 'answer'], ['realli', 'not', 'see', 'everyday', 'benefit', 'use', 'phone', 'anoth', 'i', 'would', 'recommend', 'blu', 'studio', 'lg', 'v', 'lg', 'i', 'use', 'friend', 'order', 'alway', 'issu', 'part', 'phone', 'got', 'suppos', 'gold', 'paid', 'extra', 'look', 'reflect', 'front', 'camera', 'red', 'hue', 'reset', 'set', 'chang', 'back', 'camera', 'blue', 'hue', 'time', 'time', 'not', 'focus', 'not', 'good', 'focus', 'batteri', 'drain', 'app', 'instal', 'background', 'process', 'one', 'not', 'turn', 'samsung', 'run', 'tab', 'overh', 'like', 'crazi', 'charg', 'sit', 'cord', 'came', 'worri', 'i', 'would', 'pull', 'batteri', 'phone', 'back', 'case', 'not', 'come', 'huge', 'could', 'not', 'tell', 'issu', 'normal', 'made', 'phone', 'imposs', 'use', 'side', 'note', 'ad', 'email', 'phone', 'account', 'attempt', 'hack', 'time', 'one', 'day', 'somehow', 'sinc', 'constant', 'chang', 'password', 'not', 'give', 'email', 'not', 'think', 'coincid', 'feel', 'transmit', 'data', 'feedback', 'email', 'got', 'sent', 'whet', 'visibl', 'phone', 'thin', 'weigh', 'littl', 'easi', 'lose', 'grip', 'screen', 'look', 'great', 'appli', 'cute', 'nfc', 'technolog'], ['phone', 'pretti', 'good', 'seller', 'phone', 'even', 'help', 'get', 'work', 'phone', 'servic', 'i'], ['excel', 'product'], ['own', 'phone', 'less', 'month', 'decid', 'not', 'work', 'anymor', 'never', 'drop', 'touch', 'water', 'call', 'samsung', 'support', 'said', 'number', 'not', 'record', 'not', 'abl', 'servic', 'warranti', 'servic', 'went', 'samsung', 'best', 'buy', 'got', 'answer', 'even', 'thought', 'tri', 'fix', 'awar', 'purchas', 'phone', 'becom', 'defect', 'samsung', 'not', 'servic', 'not', 'exist', 'databas'], ['everyth', 'perfect', 'phone', 'perfect', 'condit', 'recommend'], ['inprov', 'expectationtsexcel', 'camera'], ['updat', 'galaxi', 'happi', 'galaxi', 'short', 'satisfi', 'expect'], ['amaz', 'phone'], ['amaz', 'phone', 'came', 'bb', 'love'], ['good', 'phone'], ['excel', 'product'], ['work', 'describ'], ['care', 'buy', 'intern', 'phone', 'without', 'us', 'warranti', 'month', 'broken', 'complet', 'dead', 'seller', 'not', 'help', 'samsung', 'usa', 'not', 'help', 'not', 'find', 'countri', 'origin', 'even', 'tri', 'use', 'one', 'year', 'warranti', 'depress', 'repair', 'shop', 'fix', 'either', 'tri', 'three', 'word', 'spent', 'phone', 'month', 'one', 'worst', 'purchas', 'decis', 'ever', 'made'], ['exact', 'order', 'phone', 'work', 'perfect'], ['nice', 'phone', 'batteri', 'issu'], ['excel'], ['nice', 'upgrad', 'use', 'straight', 'talk', 'far', 'work', 'expect'], ['not', 'work', 'network'], ['fantast', 'fone', 'work', 'ultrafast', 'activ', 'button', 'excel', 'batteri', 'last', 'forev', 'waterproof', 'droproof'], ['love', 'phone', 'phone', 'never', 'drop', 'digit', 'not', 'loos'], ['awesom', 'phone', 'came', 'near', 'perfect', 'condit', 'much', 'better', 'buy', 'use', 'pay', 'full', 'price', 'mani', 'drop', 'even', 'carri', 'pocket', 'key', 'without', 'screen', 'protector', 'still', 'not', 'scratch', 'complaint', 'far'], ['fantast', 'fone', 'work', 'ultrafast', 'activ', 'button', 'excel', 'batteri', 'last', 'forev', 'waterproof', 'droproof'], ['bad', 'condit'], ['absolut', 'love', 'phone', 'came', 'perfect', 'condit', 'without', 'scratch', 'anywher', 'found', 'best', 'batteri', 'life', 'phone', 'i', 'ever', 'phone', 'speed', 'extrem', 'fast', 'everyth', 'extrem', 'pleas', 'definit', 'buy'], ['within', 'day', 'arriv', 'use', 'screen', 'began', 'pop', 'seam', 'upper', 'right', 'corner', 'initi', 'abl', 'push', 'back', 'short', 'screen', 'went', 'complet', 'black', 'phone', 'still', 'power', 'screen', 'dead', 'return', 'immedi', 'got', 'new', 'galaxi', 'good', 'case', 'would', 'not', 'recommend', 'get', 'activ', 'phone', 'refurbish', 'clear', 'not', 'remain', 'tough', 'mess', 'around'], ['bought', 'phone', 'august', 'work', 'okay', 'day', 'ago', 'screen', 'start', 'turn', 'purpl', 'not', 'drop', 'got', 'anywher', 'near', 'water', 'gentl', 'care', 'seem', 'like', 'defect', 'lcd', 'expens', 'replac', 'amazon', 'not', 'let', 'return', 'item', 'day', 'care', 'buy', 'phone', 'onlin', 'especi', 'refurbish', 'definit', 'never'], ['day', 'bought', 'phone', 'screen', 'went', 'black', 'i', 'stuck', 'paperweight'], ['not', 'buy', 'look', 'water', 'proof', 'advertis', 'bbrok', 'day', 'day', 'warranti', 'not', 'buy'], ['order', 'phone', 'vacat', 'miami', 'live', 'curacao', 'small', 'island', 'caribbean', 'ship', 'back', 'not', 'easi', 'choos', 'phone', 'said', 'water', 'proof', 'shock', 'proof', 'week', 'first', 'time', 'went', 'pool', 'immideat', 'die', 'never', 'work', 'could', 'not', 'return', 'time', 'locat', 'not', 'know'], ['broke', 'first', 'day'], ['problem', 'spraker', 'first', 'work', 'one', 'month', 'near', 'ear', 'sop', 'far', 'ear', 'turn', 'mean', 'work', 'auto', 'not', 'call', 'ngp', 'sumson', 'not', 'solv'], ['bad', 'experi', 'buy', 'phone', 'return'], ['good', 'would', 'buy', 'seller'], ['second', 'row', 'key', 'board', 'not', 'work', 'matter', 'fact', 'area', 'phone', 'not', 'seem', 'touch', 'part', 'phone', 'defect'], ['came', 'said'], ['phone', 'excel', 'condit', 'work', 'fine'], ['second', 'row', 'key', 'board', 'not', 'work', 'matter', 'fact', 'area', 'phone', 'not', 'seem', 'touch', 'part', 'phone', 'defect'], ['nice', 'celphon', 'negativi', 'point', 'batteri', 'not', 'last', 'long'], ['got', 'seal', 'perfect', 'work', 'usa', 'stuck', 'claro', 'sim', 'dr', 'also', 'work', 'roam', 'happi', 'snappi', 'phone', 'i', 'happi', 'camper'], ['use'], ['great', 'phone', 'well', 'worth', 'money'], ['nice', 'phone'], ['great', 'around'], ['perfect'], [], ['love', 'edg', 'phone', 'thank'], ['nice', 'camera'], ['good', 'product'], ['work', 'perfect', 'love', 'deliveri', 'quick', 'fulli', 'satisfi'], ['first', 'smart', 'phone', 'not', 'much', 'experi', 'kind', 'technolog', 'love', 'edg', 'design', 'although', 'roommat', 'say', 'feel', 'weird', 'see', 'sometim', 'feel', 'not', 'know', 'touch', 'screen', 'also', 'think', 'qualiti', 'pictur', 'good', 'realli', 'care', 'first', 'foray', 'smart', 'phone', 'think', 'worth', 'although', 'might', 'take', 'get', 'use'], ['i', 'enjoy'], ['die', 'bit', 'fast'], ['fast', 'ship', 'everyth', 'look'], ['awesom'], ['got', 'super', 'hot', 'charg', 'definit', 'short', 'lifespan', 'phone'], ['product', 'state', 'thing', 'fall', 'short', 'wall', 'adapt', 'pin', 'use', 'charg', 'phone', 'not', 'round', 'slim', 'pin', 'use', 'charg', 'except', 'reli', 'usb', 'cabl', 'includ', 'box', 'charg', 'phone', 'deliveri', 'date', 'right', 'time', 'thank', 'lot'], ['good', 'phone'], ['work', 'stop'], ['awesom', 'work', 'expect'], ['good'], ['happi'], ['goodbonbueno'], ['ime', 'number', 'not', 'origin', 'product', 'save', 'time', 'money'], ['good', 'new', 'state', 'complain', 'sinc', 'receiv', 'pefect', 'love'], ['phone', 'far', 'work', 'perfect', 'argentina', 'spanish', 'languag', 'fast', 'fast', 'charger', 'take', 'less', 'min', 'fulli', 'charg'], ['love', 'phone', 'charg', 'fast', 'get', 'hot', 'use', 'charg', 'fast', 'speed', 'surf', 'use', 'app', 'use', 'straighttalk', 'network', 'problem'], ['arriv', 'function', 'expect', 'purchas', 'process', 'great'], ['es', 'perfecto'], ['best', 'phone'], ['work', 'good'], ['star', 'phone'], ['reciev', 'phone', 'turn', 'crash', 'updat', 'screen', 'unrespons', 'see', 'common', 'problem', 'order', 'replac'], ['great'], ['like', 'good', 'deal', 'problem', 'came', 'european', 'fast', 'charg', 'plug', 'not', 'standard', 'plug'], ['unabl', 'hear', 'sound', 'car', 'audio', 'connect', 'samsung', 'galaxi', 'edg', 'phone', 'car', 'audio', 'system', 'support', 'android', 'open', 'contact', 'samsung', 'technic', 'support', 'us', 'not', 'inform', 'model', 'version', 'baseband', 'version', 'show', 'satisfi', 'devic', 'dissatisfi', 'issu'], ['still', 'today', 'best', 'movil', 'phone', 'avail'], ['good'], ['excel'], ['everybodi', 'know', 'cellphon', 'not', 'unlock', 'use', 'europ', 'africa', 'middl', 'east', 'buy', 'activ', 'un', 'countri', 'difer', 'phone', 'get', 'block', 'not', 'work', 'read', 'phone', 'work', 'good', 'en', 'place', 'not', 'true'], ['excelent'], ['reason', 'give', 'one', 'star', 'phone', 'lot', 'featur', 'slow', 'perform', 'advertis', 'lock', 'screen', 'nowher', 'disabl', 'advertis', 'charg', 'boost', 'screen', 'also', 'useless', 'wast', 'lot', 'time', 'swipe', 'even', 'danger', 'use', 'gps', 'drive', 'put', 'charg', 'line', 'phone', 'screen', 'got', 'lock', 'charg', 'booster', 'omg', 'provid', 'wire', 'european', 'standard', 'charg', 'line', 'charg', 'line', 'get', 'pretti', 'hot', 'month', 'pls', 'see', 'attach', 'pictur', 'line', 'get', 'burn', 'black', 'tri', 'charg', 'phone', 'phone', 'goe', 'much', 'slower', 'day', 'day', 'even', 'tri', 'boost', 'samsung', 'custom', 'servic', 'tough', 'advantag', 'camera', 'price', 'much', 'better', 'buy', 'not', 'use', 'samsung', 'mobil', 'phone', 'futur'], ['excel', 'recommend'], ['love', 'ph', 'great', 'realli', 'like', 'touch', 'reli', 'gud', 'lot', 'new', 'option', 'ph', 'not', 'i', 'glad', 'order', 'ph', 'amazon'], ['good', 'product'], ['good', 'condit', 'new', 'one', 'life', 'like'], ['special', 'design', 'high', 'qualiti', 'perform'], ['excel', 'smartphon', 'seller'], ['worth', 'everi', 'penni'], ['phone', 'good', 'love', 'edg', 'style', 'real', 'downsid', 'phone', 'batteri', 'life', 'hard', 'get', 'full', 'day', 'not', 'alway', 'servic', 'provid', 'basic', 'everi', 'time', 'phone', 'get', 'softwar', 'updat', 'cellular', 'data', 'set', 'get', 'reset', 'reason'], ['cool'], ['amaz', 'cell', 'appl', 'iphon', 'hell'], [], ['good'], ['phone', 'met', 'expect', 'use', 'sinc', 'not', 'seen', 'problem', 'seller', 'also', 'one', 'best'], ['awesom', 'phone', 'althought', 'edg', 'featur', 'bit', 'worthless', 'known', 'realli', 'would', 'purchas', 'regular', 'look', 'realli', 'cool', 'good', 'interact', 'vendor', 'quick', 'easi', 'order', 'deliveri'], ['receiv', 'phone', 'today', 'say', 'american', 'sim', 'card', 'thought', 'unlock'], ['excel', 'phone', 'complaint'], ['rather', 'blackberri', 'batteri', 'not', 'last', 'long', 'although', 'unlock', 'phone', 'app', 'not', 'use', 'made', 'vietnam', 'not', 'us', 'plus', 'not', 'regist', 'warranti', 'samsung', 'page', 'tri', 'return', 'less', 'week', 'bought', 'charg', 'restock', 'fee', 'ok', 'phone', 'not', 'happi', 'phone'], ['excel', 'product', 'fulfil', 'expect'], ['use', 'intern', 'pleas', 'use', 'us', 'carrier', 'atleast', 'min', 'initi', 'els', 'use', 'phone', 'direct', 'us', 'lock', 'phone'], ['love', 'phone', 'much', 'come', 'iphon', 'user', 'i', 'infatu', 'thing', 'phone', 'amaz', 'qualiti', 'shortcut', 'provid', 'not', 'mention', 'camera', 'qualiti', 'phone', 'one', 'thing', 'worri', 'phone', 'batteri', 'life', 'read', 'review', 'also', 'notic', 'batteri', 'life', 'like', 'lose', 'min', 'brows', 'facebook', 'medium', 'normal', 'use', 'get', 'whole', 'day', 'phone', 'not', 'die', 'yet', 'i', 'also', 'plan', 'use', 'power', 'bank', 'charg', 'case', 'phone', 'good', 'give', 'iphon', 'way', 'better', 'featur', 'leav', 'appl', 'phone', 'overal', 'came', 'seal', 'box', 'fast', 'charger', 'earphon', 'gold', 'simpli', 'beauti', 'took', 'coupl', 'day', 'genuin', 'call', 'mine', 'debat', 'batteri', 'life', 'would', 'problem', 'not', 'took', 'phone', 'charger', 'around', 'batterylif', 'hour', 'left', 'phone', 'prefer', 'littl', 'bit', 'sacrific', 'overal', 'amaz', 'phone', 'i', 'go', 'go', 'gut', 'feel'], ['problem', 'cel', 'phone', 'batteri', 'life', 'short'], ['cell', 'not', 'work', 'stuck', 'samsung', 'logo', 'alreadi', 'sent', 'samsung', 'tech', 'assist', 'brazil', 'not', 'support', 'unfortun', 'one', 'two', 'turn', 'trash'], ['perfect'], ['beauti', 'buy', 'phone', 'gift', 'hope', 'work', 'europ'], ['great', 'phone', 'good', 'price', 'without', 'problem'], ['pleas', 'say', 'receiv', 'phone', 'one', 'day', 'due', 'arriv', 'phone', 'perfect', 'work', 'well', 'anyon', 'caribbean', 'think', 'buy', 'phone', 'go', 'right', 'ahead', 'st', 'lucia', 'work', 'perfect', 'digicel', 'lime'], ['wonder', 'cell', 'phone', 'everyth', 'work', 'well', 'super', 'stylish', 'shape', 'batteri', 'life', 'ok', 'camera', 'qualiti', 'wonder', 'i', 'would', 'buy', 'also', 'father', 'brother', 'model', 'realli', 'like', 'husband', 'iphon', 'samsung', 'galaxi', 'not', 'lose', 'aspect'], ['told', 'phone', 'would', 'work', 'boost', 'mobil', 'not', 'tell', 'truth', 'boost', 'not', 'edg', 'yet'], ['excel', 'cell', 'think', 'buy', 'anoth', 'one'], ['receiv', 'phone', 'today', 'say', 'american', 'sim', 'card', 'thought', 'unlock'], ['good'], ['everyth', 'work', 'good', 'moment', 'deliv', 'time'], ['excel', 'custom', 'support', 'servic', 'cell', 'phone', 'much'], ['not', 'enjoy', 'phone', 'month', 'got', 'burn', 'screen', 'got', 'black', 'contact', 'costum', 'servic', 'amazon', 'an', 'samsung', 'return', 'get', 'fix', 'realli', 'onlin', 'buy', 'store', 'make', 'sure', 'get', 'warranti', 'otherwis', 'not', 'good', 'qualiti', 'happen'], ['total', 'disappoint'], ['phone', 'not', 'come', 'unlock', 'descript', 'run', 'intern', 'carrier', 'phone', 'appear', 'stolen', 'peru'], ['hello', 'bay', 'mani', 'thing', 'amazon', 'never', 'problem', 'reviv', 'samsung', 'edg', 'yesterday', 'camera', 'not', 'work', 'proper', 'not', 'read', 'mani', 'review', 'fix', 'problem', 'replac', 'phone', 'miss', 'ting', 'fix', 'issu', 'self'], ['work', 'fine', 'problem', 'far', 'deliv', 'time'], ['best', 'phone'], ['sister', 'bought', 'took', 'anoth', 'countri', 'work', 'perfect'], ['slick', 'top', 'line', 'phone', 'reason', 'price', 'sinc', 'model', 'avail', 'not', 'feel', 'need', 'alway', 'latest', 'model', 'usual', 'wait', 'buy', 'last', 'year', 'best', 'phone', 'new', 'model', 'come', 'savng', 'often', 'give', 'superb', 'phone', 'decent', 'price'], ['item', 'describ', 'howev', 'charger', 'got', 'european', 'buy', 'adapt', 'plug', 'latin', 'america', 'output'], ['phone', 'super', 'good', 'deliv', 'time', 'love', 'pictur', 'good', 'speaker'], ['return', 'not', 'come', 'everyth', 'shown', 'pictur', 'amazon', 'servic', 'alway', 'purchas', 'phone', 'elsewher', 'love', 'beauti', 'phone', 'breez', 'use', 'think', 'prefer', 'googl', 'voic', 'app', 'app', 'good', 'come', 'phone', 'admit', 'siri', 'voic', 'better', 'sound', 'lol', 'high', 'end', 'beauti', 'luxuri', 'phone', 'expens', 'not', 'surpris', 'truli', 'enjoy', 'phone', 'mani', 'peopl', 'ask', 'hear', 'gorgeous', 'phone', 'beauti', 'oh', 'alreadi', 'drop', 'three', 'time', 'not', 'mark', 'crack', 'glass', 'right', 'love', 'phone', 'go', 'commando', 'two', 'week', 'not', 'mark', 'fast', 'charger', 'great', 'not', 'believ', 'fast', 'work', 'love', 'love', 'love', 'phone'], ['simpli', 'amaz', 'phone', 'say', 'microcomput', 'smartphon', 'today', 'longer', 'communic', 'devic', 'legitim', 'comput', 'thing', 'power', 'outperform', 'coupl', 'comput', 'hous', 'go', 'web', 'i', 'blown', 'away', 'three', 'month', 'i', 'gotten', 'use', 'incred', 'pictur', 'video', 'take', 'peopl', 'not', 'not', 'tell', 'mani', 'time', 'whip', 'phone', 'show', 'someon', 'someth', 'say', 'man', 'beauti', 'pictur', 'remind', 'thought', 'first', 'saw', 'nephew', 'phone', 'smaller', 'edg', 'rememb', 'react', 'way', 'tell', 'i', 'set', 'maximum', 'set', 'four', 'step', 'could', 'go', 'review', 'get', 'longer', 'origin', 'new', 'cool', 'think', 'i', 'wait', 'see', 'make', 'plus', 'version', 'mayb', 'even', 'wait', 'know', 'one', 'year', 'max', 'edg', 'plus', 'still'], ['love', 'phone'], ['thanx'], ['could', 'not', 'ask', 'iphon', 'samsung', 'better'], ['nice', 'phone', 'downsid', 'buy', 'onlin', 'charger', 'came', 'devic', 'not', 'use', 'usa', 'without', 'adapt'], ['perfect', 'real', 'one'], ['absolut', 'love', 'phone', 'switch', 'iphon', 'edg', 'edg', 'blow', 'iphon', 'water', 'incred', 'fast', 'believ', 'fast', 'restart', 'realli', 'good', 'signal', 'yet', 'not', 'beabl', 'make', 'call', 'bar', 'not', 'say', 'enough', 'camera', 'photo', 'qualiti', 'amaz', 'happi', 'mention', 'i', 'longer', 'lock', 'overpr', 'year', 'contract', 'cell', 'phone', 'compani'], ['good', 'experi', 'love'], ['excel'], ['great'], ['love', 'phone', 'thing', 'batteri', 'not', 'last', 'long', 'thought', 'full', 'charg', 'day', 'think', 'depend', 'use', 'day', 'thing', 'mention', 'screen', 'protector', 'not', 'work', 'well', 'edg', 'come', 'quick', 'put', 'cover', 'besid', 'great', 'phone', 'compar', 'iphon', 'phone', 'have', 'featur', 'iphon', 'camera', 'way', 'better', 'video', 'pictur'], ['excel'], ['absolut', 'love', 'phone', 'brand', 'new', 'seal', 'box', 'issu', 'batteri', 'run', 'quick', 'i', 'alway', 'phone', 'guess', 'live', 'loov'], ['blast', 'bought', 'long', 'time', 'ago'], ['not', 'get', 'silver', 'color', 'chose', 'charger', 'big', 'not', 'like', 'regular', 'charger', 'could', 'not', 'fit', 'us', 'plug', 'screen', 'keep', 'flash', 'second', 'stop'], ['love', 'phone', 'great', 'custom', 'servic', 'seller'], ['everyth', 'perfect', 'work', 'ecaudor'], ['face', 'bluetooth', 'issu', 'want', 'use', 'bluetooth', 'headphon', 'overal', 'experi', 'fine'], ['amaz', 'phone'], ['ever', 'thing', 'say'], ['power', 'mobil', 'phone', 'world', 'lag', 'problem', 'perfect', 'photo', 'like', 'fingerprint', 'sensor', 'curv', 'glass', 'uniqu', 'far', 'ahead', 'appl', 'devic'], ['love', 'phone'], ['realli', 'love', 'andriod', 'lot', 'cool', 'featur', 'compar', 'appl', 'window', 'phone', 'got', 'samsung', 'gear', 'vr', 'amaz', 'use', 'everyday', 'watch', 'movi', 'show', 'love'], ['good'], ['excel', 'cellphon', 'great', 'screen'], ['nice', 'super'], ['phone', 'got', 'stuck', 'safe', 'mode', 'volum', 'button', 'stuck'], ['great', 'phone', 'work', 'well', 'even', 'get', 'adapt', 'usa', 'outlet', 'unfortun', 'not', 'seller', 'issu', 'screen', 'crack', 'week', 'own', 'care', 'buy', 'screen', 'protector'], ['good'], ['nice', 'phone'], ['amaz', 'phone'], ['love'], ['absolut', 'flawless', 'thank', 'much', 'back'], ['work'], ['without', 'doubt', 'best', 'smartphon', 'fast', 'great', 'display', 'ando', 'run', 'android', 'marshmallow'], ['true'], ['perfect'], ['love'], ['good', 'one'], ['best', 'phone', 'i', 'ever', 'own', 'fast', 'crystal', 'clear', 'display', 'easi', 'use', 'interfac', 'came', 'iphon', 'year', 'ago', 'move', 'htc', 'one', 'like', 'first', 'slowli', 'realiz', 'mani', 'problem', 'great', 'phone', 'fair', 'slow', 'camera', 'suck', 'interfac', 'pretti', 'terribl', 'hard', 'time', 'learn', 'former', 'iphon', 'user', 'almost', 'switch', 'back', 'iphon', 'consid', 'galaxi', 'edg', 'plus', 'pull', 'trigger', 'bought', 'amazon', 'need', 'version', 'could', 'use', 'cricket', 'phone', 'not', 'stop', 'amaz', 'sinc', 'got', 'display', 'big', 'sharp', 'crystal', 'clear', 'photo', 'stun', 'detail', 'come', 'beauti', 'everi', 'time', 'phone', 'incred', 'fast', 'interfac', 'realli', 'easi', 'use', 'could', 'android', 'updat', 'htc', 'vs', 'samsung', 'idk', 'edg', 'not', 'use', 'like', 'abl', 'read', 'clock', 'night', 'instead', 'pick', 'phone', 'view', 'time', 'gimmick', 'look', 'cool', 'still', 'count', 'plus', 'fit', 'finish', 'phone', 'excel'], ['best'], ['good', 'product', 'recommen', 'anyon'], ['excel', 'nice'], ['excel', 'cell', 'phone', 'better', 'iphon'], ['ok'], ['love', 'color', 'love', 'everyth', 'beauti'], ['best', 'samsung', 'phone', 'yet'], ['nice', 'work', 'good', 'not', 'sent', 'photo', 'via', 'sms'], ['nice', 'super'], ['perfect'], ['not', 'come', 'right'], ['excel', 'product', 'seller'], ['good'], ['like', 'phone', 'tri', 'get', 'caus', 'frustrat', 'not', 'sure', 'buy', 'seem', 'misrepresent', 'product', 'advertis', 'amazon', 'accord', 'custom', 'review'], ['good', 'product', 'recommen', 'anyon'], ['friend', 'greet', 'cell', 'arriv', 'late', 'right', 'come', 'see', 'get', 'seal', 'good', 'packag', 'everyth', 'open', 'dash', 'parti', 'buy', 'new', 'phone', 'dash', 'look', 'ugli', 'claim'], ['amaz', 'phone'], ['thank'], ['great', 'phone', 'love', 'color', 'not', 'get', 'color', 'store', 'us', 'unlock', 'well', 'work', 'servic'], ['love', 'phone', 'month', 'upgrad', 'galaxi', 'issu', 'seller', 'order', 'black', 'edg', 'plus', 'intern', 'color', 'black', 'receiv', 'right', 'phone', 'color', 'gold', 'also', 'notic', 'info', 'sticker', 'box', 'cover', 'model', 'ssid', 'differ', 'color', 'receiv', 'howev', 'info', 'bottom', 'new', 'sticker', 'match', 'actual', 'phone', 'great', 'came', 'charg', 'insert', 'mini', 'sim', 'card', 'put', 'info', 'restor', 'stuff', 'samsung', 'googl', 'acct', 'even', 'download', 'app', 'regular', 'not', 'thank', 'god', 'lol', 'pain', 'set', 'new', 'phone', 'took', 'hour', 'charg', 'complet', 'setup', 'min', 'fulli', 'charg', 'batteri'], ['bought', 'yhis', 'one', 'said', 'intern', 'version', 'factori', 'unlock', 'order', 'use', 'usa', 'must', 'put', 'usa', 'sim', 'card', 'use', 'minut', 'unlock', 'intern', 'use', 'also', 'charger', 'usa', 'outlet', 'use', 'intern', 'version', 'factori', 'unlock'], ['phone', 'suck', 'not', 'recommend', 'one'], ['phone', 'beast'], ['good', 'phone'], ['good'], ['packag', 'lost'], ['simpli', 'best', 'phone', 'i', 'date'], ['excel'], ['everyth', 'work', 'phone', 'sweden', 'without', 'problem'], ['excel', 'product'], ['phone', 'arriv', 'time', 'work', 'perfect'], ['thank'], ['work', 'phone', 'month', 'big', 'problem', 'call', 'write', 'staff', 'fix', 'problem', 'nobodi', 'answer'], ['phone', 'awesom', 'ship', 'extrem', 'fast', 'would', 'definit', 'recommend', 'anyon'], ['excel', 'recomend'], ['good'], ['excel', 'time', 'deliveri', 'love', 'phone', 'without', 'complaint'], ['great', 'devicemi', 'wife', 'love', 'itdeliv', 'promptlysel', 'reliabl'], ['nice', 'item', 'use', 'sinc', 'bougth', 'work', 'perfect'], ['good'], ['great', 'buy'], ['excelent', 'teléfono'], ['love', 'come', 'everyth', 'thing', 'back', 'say', 'american', 'sim', 'say', 'unlock', 'phone', 'say', 'want', 'use', 'pakistan', 'next', 'month', 'i', 'go', 'pak', 'plz', 'help'], ['ok'], ['expect', 'great', 'cell', 'phone'], ['seller', 'starsproduct', 'qualiti', 'starsi', 'relationship', 'love', 'way', 'edg', 'look', 'look', 'majest', 'uniqu', 'hate', 'fact', 'accessori', 'limit', 'like', 'not', 'solid', 'protect', 'case', 'screen', 'protector', 'not', 'good', 'next', 'time', 'i', 'definit', 'choos', 'regular', 'screen', 'galaxi'], ['one', 'best', 'phone', 'ever', 'own'], ['ok'], ['love'], ['love', 'switch', 'iphon', 'samsung', 'edg', 'made', 'life', 'easier', 'everyth', 'less', 'time', 'consum', 'edg', 'make', 'app', 'instant', 'avail', 'also', 'make', 'choos', 'differ', 'color', 'differeng', 'peopl', 'look', 'amaz', 'camera', 'also', 'great'], ['good', 'phone', 'good', 'spec', 'wireless', 'charg', 'capabl', 'nice', 'featur', 'edg', 'screen', 'not', 'seem', 'much', 'game', 'changer', 'still', 'thing', 'done', 'use', 'primari', 'one', 'abil', 'view', 'date', 'time', 'notif', 'even', 'vertic', 'align', 'not', 'experienc', 'lag', 'use', 'phone', 'although', 'batteri', 'life', 'could', 'better', 'seem', 'like', 'regular', 'use', 'end', 'charg', 'phone', 'least', 'day'], ['serious', 'love', 'best', 'thing', 'cellphon', 'open', 'app', 'time', 'exampl', 'tube', 'whatsapp', 'without', 'music', 'interrupt', 'i', 'guess', 'alreadi', 'know', 'featur', 'product', 'came', 'perfect', 'condit', 'deliv', 'time', 'flawless', 'buy', 'also', 'case'], ['easier', 'put', 'expect', 'air', 'bubbl', 'instal', 'easili', 'rub', 'clear', 'screen', 'view'], ['new', 'phone', 'post'], ['month', 'purchas', 'cel', 'phone', 'stop', 'work'], ['like', 'much'], ['perfecto'], ['got', 'phone', 'today', 'i', 'love', 'far'], ['awesom', 'phone', 'love'], ['damag', 'screen'], ['claim', 'phone', 'unlock', 'not', 'not', 'puchas', 'phone', 'phone', 'box', 'not', 'seal', 'come', 'come', 'open', 'unprofesion', 'wast', 'money', 'return', 'phone', 'not', 'provid', 'unlock', 'pin'], ['phone', 'excel', 'model', 'work', 'great', 'argentina', 'actual', 'model', 'one', 'work', 'better', 'carrier', 'argentina', 'realli', 'happi', 'model', 'work', 'argentina', 'not', 'good', 'countri', 'still', 'work', 'one', 'ii', 'give', 'star', 'work', 'awesom', 'look', 'great'], ['great', 'phone', 'android', 'realli', 'step', 'game', 'one', 'mani', 'new', 'featur', 'oper', 'system', 'not', 'go', 'wrong', 'reason', 'gave', 'phone', 'three', 'star', 'five', 'lite', 'signal', 'not', 'strong', 'use', 'metro', 'pcs', 'network', 'howev', 'switch', 'work', 'fine', 'would', 'recommend', 'phone', 'android', 'fan', 'switch', 'iphon', 'sinc', 'featur'], ['tri', 'phone', 'carrier', 'told', 'us', 'phone', 'bad'], ['pl', 'stay', 'away', 'product', 'fake', 'product', 'come', 'china', 'manufactur', 'samsung', 'cover', 'samsung', 'us', 'worst', 'part', 'amazon', 'continu', 'sell', 'product', 'state', 'us', 'warranti'], ['pros', 'unbeliev', 'good', 'camera', 'front', 'back', 'cam', 'suprem', 'screen', 'phone', 'super', 'fingerprint', 'scanner', 'great', 'shortcut', 'extra', 'use', 'damag', 'resist', 'gorilla', 'glass', 'not', 'test', 'though', 'batteri', 'life', 'bad', 'made', 'great', 'charger', 'charg', 'upto', 'min', 'use', 'samsung', 'fast', 'charger', 'charg', 'phone', 'get', 'sometim', 'turn', 'locat', 'servic', 'turn', 'back', 'use', 'googl', 'map', 'mapquest', 'app', 'not', 'work', 'need', 'restart', 'size', 'larger', 'expect', 'use', 'iphon', 'took', 'day', 'get', 'use', 'size', 'not', 'good', 'small', 'expand', 'black', 'color', 'look', 'ok', 'felt', 'gone', 'differ', 'color'], ['order', 'phone', 'warranti', 'phone', 'list', 'amazon', 'product', 'page', 'receiv', 'phone', 'model', 'number', 'packag', 'model', 'number', 'not', 'match', 'product', 'page', 'tri', 'call', 'samsung', 'regist', 'phone', 'not', 'regist', 'imei', 'number', 'not', 'exist', 'databas', 'call', 'get', 'product', 'replac', 'genuin', 'samsung', 'warranti', 'phone', 'next', 'one', 'receiv', 'also', 'could', 'not', 'regist', 'samsung', 'imei', 'not', 'databas', 'disappoint'], ['tri', 'regist', 'product', 'today', 'confirm', 'order', 'us', 'version', 'order', 'howev', 'receiv', 'intern', 'version', 'not', 'regist', 'samsung', 'phone', 'nice', 'not', 'get', 'support', 'contact', 'amazon', 'phone'], ['order', 'soon', 'show', 'call', 'chat', 'samsung', 'contact', 'system', 'check', 'make', 'sure', 'us', 'warranti', 'phone', 'got', 'mine', 'today', 'contact', 'told', 'fact', 'intern', 'phone', 'mean', 'support', 'not', 'help', 'anyth', 'model', 'number', 'mine', 'websit', 'seem', 'like', 'model', 'number', 'not', 'sure', 'ar', 'delin', 'us', 'version', 'might', 'fair', 'indic', 'end', 'wrong', 'one', 'definit', 'contact', 'figur', 'return', 'buy', 'new', 'one', 'time', 'direct', 'samsung'], ['like', 'descript'], ['not', 'unlock', 'took', 'hour', 'phone', 'numer', 'phone', 'compani', 'figur', 'turn', 'i', 'stuck', 'ty', 'atat', 'thank'], ['phone', 'great', 'use', 'one', 'way', 'faster', 'favorit', 'new', 'featur', 'fingerprint', 'login'], ['perfect', 'fast', 'ship'], ['lot', 'feather', 'interfac', 'truck', 'phone', 'compani', 'use', 'got', 'mani', 'featur', 'i', 'never', 'learn'], ['scratch', 'along', 'back', 'flash', 'light'], ['absolut', 'love', 'phone', 'arriv', 'time', 'work', 'cricket', 'afford', 'well', 'would', 'definit', 'recommend'], ['post', 'unlock', 'devic', 'actual', 'devic'], ['great', 'item', 'great', 'price'], ['problem', 'network', 'verizon', 'not', 'phone', 'design', 'one', 'not', 'work', 'network', 'phone', 'design', 'work', 'return', 'phone'], ['wife', 'love'], ['great', 'phone'], ['husband', 'love'], ['phone', 'came', 'white', 'block'], ['love', 'devic', 'even', 'came', 'expect'], ['love', 'cellphon', 'lightn', 'fast', 'realli', 'beauti', 'design'], ['not', 'give', 'phone', 'high', 'enough', 'prais', 'beauti', 'design', 'devic', 'easili', 'handl', 'even', 'demand', 'app', 'featur', 'ever', 'use', 'reduc', 'touchwiz', 'interfac', 'joy', 'use', 'great', 'improv', 'previous', 'version', 'say', 'without', 'doubt', 'favorit', 'phone', 'i', 'ever', 'want', 'note', 'intern', 'version', 'surpris', 'though', 'not', 'discov', 'upon', 'open', 'i', 'would', 'receiv', 'italian', 'version', 'mean', 'manual', 'wall', 'charger', 'italian', 'version', 'seller', 'kind', 'enough', 'includ', 'eu', 'north', 'american', 'adapt', 'plug', 'initi', 'setup', 'breez', 'languag', 'select', 'one', 'first', 'screen', 'upon', 'power', 'util', 'folder', 'still', 'name', 'instrumenti', 'asid', 'local', 'switch', 'entir', 'english', 'without', 'problem', 'read', 'differ', 'review', 'said', 'got', 'french', 'version', 'seem', 'way', 'know', 'get', 'get', 'still', 'think', 'excel', 'product', 'well', 'worth', 'carri', 'adapt', 'around', 'sinc', 'carrier', 'not', 'sell', 'star'], ['phone', 'ok', 'open', 'seal', 'box', 'screen', 'scratch'], ['like', 'review', 'mention', 'phone', 'not', 'pick', 'signal', 'well', 'sever', 'problem', 'seem', 'ok', 'recent', 'thing', 'not', 'like', 'light', 'way', 'bright', 'tone', 'over', 'yellow', 'realli', 'person', 'prefer', 'one', 'huge', 'plus', 'phone', 'charg', 'realli', 'fast'], ['phone', 'got', 'month', 'ago', 'random', 'turn', 'never', 'urn', 'sign', 'malfunct', 'went'], ['excelent'], ['excelent'], ['amaz', 'realli', 'work', 'great'], ['phone', 'perfect', 'except', 'manual', 'main', 'italian', 'ship', 'us', 'annoy', 'part', 'charger', 'came', 'adapt', 'make', 'usabl', 'america', 'yet', 'origin', 'charger', 'european', 'would', 'good', 'manufactur', 'let', 'know', 'beforehand', 'phone', 'outstand', 'machin'], ['bought', 'phone', 'gift', 'sister', 'live', 'israel', 'shock', 'disappoint', 'find', 'phone', 'support', 'languag', 'not', 'hebrew', 'sister', 'stock', 'phone', 'israel', 'not', 'use', 'cuz', 'hebrew', 'support'], ['happi', 'product', 'servic'], ['good'], ['item', 'perfect', 'publish'], ['doubt', 'phone', 'might', 'refurbish', 'brand', 'new', 'work', 'great'], ['quit', 'differ', 'pictur'], ['evryth', 'describ', 'great', 'producto', 'servic'], ['evalu', 'galaxi', 'narrow', 'len', 'upgrad', 'galaxi', 'galaxi', 'purchas', 'phone', 'contract', 'carrier', 'bought', 'two', 'phone', 'amazon', 'tek', 'deal', 'phone', 'arriv', 'time', 'seal', 'box', 'separ', 'two', 'prong', 'european', 'us', 'power', 'adapt', 'fit', 'european', 'round', 'pin', 'charger', 'phone', 'adapt', 'fit', 'loos', 'european', 'pin', 'appear', 'unabl', 'stay', 'connect', 'kind', 'minor', 'jostl', 'cord', 'fortun', 'adapt', 'easi', 'take', 'apart', 'use', 'pair', 'plier', 'squeez', 'spring', 'clip', 'leg', 'togeth', 'easili', 'fix', 'problem', 'cours', 'adapt', 'make', 'charger', 'stick', 'old', 'charger', 'work', 'charg', 'rate', 'lower', 'charger', 'rather', 'standard', 'fast', 'charger', 'come', 'took', 'phone', 'local', 'carrier', 'store', 'obtain', 'sim', 'chip', 'pleas', 'sim', 'switch', 'free', 'least', 'area', 'galaxi', 'constitut', 'big', 'uptick', 'speed', 'everyth', 'download', 'app', 'load', 'oper', 'screen', 'not', 'larger', 'expect', 'much', 'sharper', 'download', 'samsung', 'smart', 'switch', 'mobil', 'app', 'new', 'old', 'phone', 'transfer', 'much', 'inform', 'possibl', 'app', 'work', 'great', 'googl', 'account', 'transfer', 'seamless', 'account', 'manual', 'updat', 'usernam', 'password', 'cours', 'wifi', 'router', 'password', 'ad', 'featur', 'miss', 'phone', 'appar', 'exist', 'us', 'carrier', 'brand', 'phone', 'abil', 'alphabet', 'arrang', 'app', 'one', 'button', 'click', 'time', 'app', 'organ', 'download', 'app', 'reorgan', 'manual', 'oper', 'take', 'quit', 'bit', 'use', 'see', 'notif', 'panel', 'old', 'brand', 'show', 'worri', 'despit', 'research', 'necessari', 'channel', 'activ', 'phone', 'read', 'believ', 'edit', 'misinform', 'site', 'intern', 'version', 'show', 'note', 'other', 'updat', 'seem', 'keep', 'come', 'coupl', 'day', 'compar', 'updat', 'happen', 'sever', 'time', 'phone', 'slipperi', 'wife', 'alreadi', 'drop', 'one', 'day', 'old', 'fortun', 'damag', 'new', 'case', 'concern', 'like', 'other', 'batteri', 'life', 'often', 'difficult', 'compar', 'usag', 'user', 'often', 'complain', 'batteri', 'life', 'without', 'hint', 'usag', 'live', 'around', 'mile', 'nearest', 'cell', 'tower', 'line', 'site', 'communic', 'quit', 'good', 'wifi', 'router', 'general', 'within', 'ft', 'phone', 'use', 'multilevel', 'home', 'wifi', 'use', 'intermitt', 'basi', 'updat', 'ad', 'app', 'heavi', 'brows', 'session', 'ensur', 'stay', 'carrier', 'plan', 'data', 'cap', 'definit', 'low', 'level', 'user', 'check', 'weather', 'sever', 'time', 'day', 'read', 'compos', 'messag', 'day', 'without', 'attach', 'occasion', 'email', 'take', 'sever', 'camera', 'shot', 'week', 'sync', 'set', 'automat', 'not', 'listen', 'music', 'phone', 'watch', 'video', 'test', 'period', 'may', 'averag', 'coupl', 'call', 'day', 'may', 'use', 'browser', 'sever', 'time', 'day', 'either', 'mode', 'wifi', 'number', 'updat', 'app', 'download', 'test', 'measur', 'period', 'power', 'save', 'mode', 'activ', 'monitor', 'averag', 'batteri', 'usag', 'sever', 'charg', 'hrs', 'batteri', 'reserv', 'somewher', 'hrs', 'hrs', 'batteri', 'reserv', 'worst', 'case', 'leav', 'wifi', 'hour', 'drain', 'batteri', 'capac', 'hrs', 'minim', 'use', 'mian', 'overnight', 'obvious', 'low', 'level', 'user', 'close', 'cell', 'phone', 'tower', 'wifi', 'router', 'valu', 'repres', 'minim', 'batteri', 'drain', 'comparison', 'baselin', 'get', 'away', 'charg', 'wife', 'evey', 'second', 'day', 'wife', 'usag', 'greater', 'even', 'case', 'batteri', 'usag', 'similar', 'could', 'charg', 'everi', 'second', 'day', 'wish', 'use', 'charg', 'phone', 'everi', 'day', 'anyway', 'whose', 'life', 'not', 'margin', 'cell', 'phone', 'would', 'say', 'batteri', 'life', 'quit', 'accept', 'notic', 'better', 'especi', 'upgrad', 'smart', 'phone', 'sever', 'generat', 'like', 'three', 'year', 'back', 'compar', 'impress', 'wifi', 'mode', 'not', 'drain', 'phone', 'batteri', 'near', 'fast', 'old'], ['nice'], ['work', 'well', 'gear', 'vr'], ['excel', 'phone', 'good', 'price', 'qualiti', 'four', 'good'], ['product', 'came', 'perfect', 'condit', 'new'], ['phone', 'could', 'not', 'instal', 'softwar', 'updat', 'microphon', 'period', 'not', 'work', 'phone', 'stop', 'work', 'second', 'day', 'use'], ['great', 'product', 'thank'], ['bought', 'brand', 'new', 'batteri', 'drain', 'extrem', 'fast', 'even', 'power', 'save', 'set', 'worst', 'batteri', 'perform', 'ever', 'disappoint', 'especi', 'not', 'buy', 'new', 'batteri', 'sinc', 'incorpor', 'phone'], ['excel'], ['nice', 'phone'], ['not', 'say', 'i', 'unhappi', 'phone', 'howev', 'unabl', 'get', 'custom', 'support', 'samsung', 'intern', 'version', 'origin', 'latin', 'open', 'group', 'wireless', 'receiv', 'feel', 'decept', 'find', 'not', 'warranti', 'disturb', 'would', 'not', 'purchas', 'peopl', 'not', 'even', 'contact', 'mani', 'thing', 'not', 'work', 'phone', 'call', 'wait', 'not', 'work', 'option', 'confer', 'call', 'not', 'even', 'regist', 'samsung', 'intern', 'phone', 'not', 'get', 'custom', 'support', 'period', 'i', 'studk', 'hate'], ['fake', 'plastic', 'camera', 'stick', 'origin'], ['excel'], ['great'], ['phone', 'thee', 'best', 'dad', 'like'], ['phone', 'great', 'two', 'thing', 'concern', 'order', 'seller', 'sent', 'actual', 'dual', 'sim', 'version', 'not', 'know', 'better', 'turn', 'phone', 'batteri', 'less', 'hour', 'use', 'batteri', 'drain'], ['excelent'], ['great', 'purchas'], ['okey'], ['not', 'anti', 'water'], ['everyth', 'came', 'well', 'everyth', 'work'], ['bought', 'satisfi', 'custom'], ['got', 'januari', 'love', 'work', 'great'], ['not', 'work', 'verizon', 'read', 'discript', 'said', 'work', 'verizon', 'bit', 'not', 'verizon', 'not', 'buy'], ['wonderful', 'phone', 'happi', 'purchars'], ['phone', 'amaz'], ['like'], ['love', 'galaxi'], ['amaz', 'devic', 'everyth', 'work', 'perfect', 'amaz', 'camera', 'howev', 'batteri', 'run', 'realli', 'fast', 'use', 'recharg', 'twice', 'day', 'realiz', 'batteri', 'lifetim', 'huge', 'problem', 'type', 'devic', 'nowaday', 'regardless', 'brand', 'satisfi', 'galaxi'], ['excel'], ['exact', 'order', 'work', 'perfect', 'return', 'unwant', 'xmas', 'present'], ['look', 'great'], ['far', 'think', 'excel', 'phone', 'decent', 'upgrad'], ['great', 'stuff', 'cool'], ['would', 'recommend', 'friend'], ['came', 'time', 'brand', 'new', 'work', 'great', 'far', 'happi', 'custom'], ['excelent'], ['nice', 'phone', 'fit', 'needsand', 'top', 'notch'], ['far', 'good'], ['phone', 'came', 'deffect', 'screen', 'problem', 'hard', 'use', 'not', 'recommend', 'product'], ['perfect'], ['good'], ['product', 'came', 'perfect', 'condit', 'new'], ['not', 'reciv', 'product', 'packag', 'open', 'slide', 'drower', 'not', 'phone', 'inmediat', 'request', 'money', 'back'], ['bought', 'husband', 'birthday', 'love'], ['review', 'think', 'root', 'phone', 'not', 'buy', 'phone', 'fight', 'tooth', 'nail', 'end', 'may', 'not', 'even', 'abl', 'connect', 'carrier', 'reflash', 'not', 'pay', 'compani', 'believ', 'okay', 'damag', 'hardwar', 'not', 'use', 'pleas'], ['love', 'phone'], ['work', 'right', 'box', 'version', 'find', 'exact', 'model', 'samsung', 'us', 'site', 'tricki', 'frank', 'not', 'box', 'arriv', 'clean', 'perfect', 'seal', 'box', 'arriv', 'seal', 'damag', 'recommend', 'contact', 'seller', 'content', 'present', 'account', 'includ', 'separ', 'packag', 'us', 'plug', 'adapt', 'anoth', 'micro', 'usb', 'cabl', 'phone', 'charg', 'upton', 'power', 'initi', 'setup', 'use', 'smart', 'switch', 'softwar', 'provid', 'samsung', 'move', 'crap', 'ever', 'not', 'copi', 'os', 'set', 'take', 'scissor', 'trim', 'sim', 'card', 'make', 'fit', 'card', 'carriag', 'use', 'minor', 'setup', 'data', 'copi', 'happi', 'fast', 'respons', 'new', 'fingerprint', 'reader', 'lot', 'easier', 'setup', 'os', 'half', 'fun'], ['sever', 'minor', 'issu', 'phone', 'batteri', 'went', 'dead', 'attempt', 'fix', 'shop', 'inform', 'not', 'origin', 'samsung', 'phone', 'actual', 'replac', 'part', 'differ', 'pleas', 'clarifi', 'unabl', 'fix', 'need', 'buy', 'new', 'phone'], ['not', 'receiv', 'stylus', 'phone', 'seem', 'work', 'pretti', 'well', 'like', 'clariti', 'screen'], ['everith', 'ok'], ['great', 'phone'], ['great', 'product', 'absolut', 'love', 'disappoint', 'experi', 'soni', 'xperia', 'never', 'chang', 'samsung', 'devic'], ['new', 'work', 'macedonian', 'sim', 'card'], ['absolut', 'wonder', 'happi'], ['not', 'realiz', 'bought', 'wrong', 'one', 'suppos', 'american', 'unlock', 'phonenot', 'european', 'far', 'okay', 'not', 'great', 'expect', 'okay', 'hope', 'improv', 'text', 'pictur', 'send', 'not', 'work', 'send', 'pictur', 'thru', 'text', 'get', 'send', 'pictur', 'thru', 'gmail', 'not', 'text'], ['not', 'reallt', 'fulli', 'compat', 'lot', 'issu', 'month', 'devic', 'want', 'get', 'rid', 'not', 'recommend', 'buy', 'also', 'phone', 'warm', 'time', 'bad', 'experi'], ['bought', 'brother', 'brazil', 'never', 'problem', 'work', 'great', 'exact', 'like', 'samsung', 'galaxi', 'option', 'buy', 'phone', 'outsid', 'countri', 'cheap', 'compar', 'buy', 'elsewher'], ['like', 'work', 'good'], ['great', 'phone', 'love', 'samsung', 'ui', 'much', 'nicer', 'stock', 'android', 'sing', 'wireless', 'problem'], ['great', 'phone', 'dead', 'pixel', 'middl', 'screen', 'could', 'not', 'fix', 'work', 'fine'], ['good'], ['screen', 'edg', 'especi', 'top', 'edg', 'drag', 'set', 'quick', 'menu', 'absolut', 'unaccept', 'flaw', 'cellphon', 'samsung', 'flagship'], ['phone', 'month', 'week', 'stop', 'work'], ['perect'], ['front', 'camera', 'defect', 'blue', 'spot', 'seen', 'photo', 'besid', 'home', 'button', 'loos', 'not', 'respond', 'well', 'left', 'side', 'argentina', 'replac', 'equip'], ['far', 'first', 'cell', 'phone', 'impress', 'still', 'learn', 'use', 'one', 'thing', 'howev', 'seem', 'discharg', 'batteri', 'extend', 'period', 'time', 'may', 'well', 'normal', 'inexperienc', 'user'], ['problem', 'mic', 'peopl', 'call', 'not', 'hear', 'till', 'coupl', 'second'], ['right', 'problem'], ['not', 'work', 'network'], ['excel'], ['excel', 'product'], ['great', 'phone'], ['great', 'phone', 'program', 'spanish', 'return', 'reason', 'someon', 'drop', 'ball', 'not', 'check', 'ship', 'custom', 'need', 'english', 'program', 'devic', 'disappoint'], ['excelent'], ['awesom'], ['need', 'new', 'phone', 'soon', 'possibl', 'bought', 'amazon', 'warehous', 'expect', 'someth', 'wrong', 'aesthet', 'list', 'descript', 'phone', 'perfect', 'scratch', 'imperfect', 'cool', 'coupl', 'trick', 'gold', 'beauti', 'i', 'happi', 'got', 'rapid', 'charger', 'amaz', 'keep', 'charg', 'pretti', 'much', 'whole', 'day'], ['excel', 'phone'], ['touch', 'screen', 'stop', 'respond', 'month', 'tri', 'call', 'samsung', 'repair', 'warranti', 'told', 'phone', 'singapor', 'contact', 'singapor', 'ship', 'without', 'told', 'number', 'address'], ['awesom', 'phone'], ['punto', 'excelent'], ['excel'], ['good'], ['product', 'receiv', 'great', 'condit', 'work', 'fine'], ['bought', 'item', 'decemb', 'much', 'higher', 'price', 'come', 'june', 'phone', 'shut', 'complet', 'not', 'charg', 'not', 'turn', 'call', 'samsung', 'one', 'take', 'phone', 'back', 'either', 'replac', 'repar', 'guaranti', 'phone', 'not', 'cheap', 'appar', 'less', 'valu', 'phone', 'work', 'better', 'second', 'time', 'happen', 'samsung', 'product', 'bought', 'amazon', 'one', 'take', 'respons', 'custom', 'servic', 'not', 'phone', 'come', 'year', 'intern', 'guaranti'], ['not', 'work', 'roam'], ['product', 'work', 'month', 'screen', 'would', 'flicker', 'black', 'eventu', 'went', 'complet', 'black', 'phone', 'never', 'drop', 'damag', 'way', 'user', 'tri', 'troubleshoot', 'issu', 'unsuccess', 'end', 'buy', 'new', 'phone', 'dissapoint', 'sinc', 'expens', 'phone'], ['phone', 'awesom', 'work', 'great', 'came', 'describ', 'casem', 'case', 'screen', 'protector', 'back', 'cover', 'protector', 'look', 'beauti', 'scratch', 'describ', 'gb', 'version', 'state', 'descript', 'ship', 'fast', 'arriv', 'sooner', 'reason', 'i', 'give', 'star', 'front', 'face', 'camera', 'big', 'blue', 'line', 'across', 'screen', 'multipl', 'blue', 'fleck', 'whenev', 'tri', 'take', 'pictur', 'low', 'light', 'not', 'right', 'not', 'mention', 'descript', 'section', 'clear', 'happi', 'product', 'probabl', 'not', 'buy', 'seller'], ['tricki', 'get', 'unlock', 'good', 'phone', 'great', 'thx'], ['awesom', 'excel', 'smartphon'], ['great', 'item', 'great', 'purchas'], ['bought', 'articl', 'suppos', 'unlock', 'colour', 'with', 'reciv', 'blue', 'pebbl', 'colour', 'phone', 'tri', 'activ', 'countri', 'result', 'phone', 'not', 'unlock', 'pay', 'extra', 'fee', 'unlock', 'obvious', 'not', 'articl', 'thank', 'bought', 'reason', 'not', 'leav', 'nice', 'review', 'rate', 'one', 'star', 'requir', 'submit', 'review'], ['thank'], ['cellphon', 'problem', 'front', 'camera', 'not', 'use', 'warranti', 'imei', 'not', 'appear'], ['pleansant', 'wife', 'say'], ['unhappi', 'purchas', 'receiv', 'item', 'instruct', 'foreign', 'languag', 'english', 'instruct', 'charger', 'came', 'intern', 'plug', 'not', 'compat', 'american', 'standard', 'plug', 'purchas', 'adapt', 'local', 'electron', 'store', 'three', 'week', 'start', 'use', 'phone', 'went', 'complet', 'dead', 'take', 'local', 'cell', 'phone', 'store', 'sold', 'anoth', 'plug', 'help', 'short', 'period', 'time', 'two', 'occas', 'phone', 'die', 'reactiv', 'two', 'day', 'later', 'today', 'phone', 'die', 'yet', 'complet', 'annoy', 'fed', 'not', 'buy', 'seller', 'disappoint'], ['impress', 'love', 'busi', 'seller', 'phone', 'came', 'time', 'work', 'perfect'], ['three', 'month', 'phone', 'not', 'work', 'expens', 'phone', 'pull', 'money', 'trash', 'mobildelta', 'not', 'want', 'solv', 'problem', 'warranti', 'product', 'liabil', 'product', 'defect', 'sale', 'simpli', 'not', 'care', 'warranti', 'warranti', 'product', 'samsung', 'alway', 'talk', 'one', 'not', 'buy', 'product', 'deltamobil', 'compani', 'feel', 'realli', 'stolen', 'poor', 'serv'], ['short', 'last', 'batteri', 'money', 'expect', 'someth', 'much', 'chang', 'mhz', 'not', 'even', 'samsung', 'dealer', 'brazil', 'accept', 'end', 'day', 'big', 'disappoi'], ['sansung', 'great', 'phone', 'old', 'daughter', 'enjoy', 'much', 'new', 'toy'], ['excel'], ['good'], ['everyth', 'good'], ['realli', 'nice', 'phone'], ['recent', 'switch', 'iphon', 'galaxi', 'honest', 'not', 'regret', 'phone', 'new', 'genuin', 'unlock', 'fulli', 'function', 'mani', 'great', 'featur', 'high', 'satisfi'], ['immedi', 'return', 'item', 'broken', 'seal', 'read', 'not', 'accept', 'seal', 'broken'], ['best', 'phone', 'ever', 'bought'], ['excel', 'recomend'], ['disappoint', 'follow', 'not', 'maintain', 'network', 'constant', 'keep', 'switch', 'emerg', 'call', 'network', 'time', 'take', 'process', 'call', 'get', 'receiv'], ['phone', 'work', 'great', 'receiv', 'mail', 'time', 'use', 'walmart', 'famili', 'plan', 'old', 'phone', 'took', 'new', 'phone', 'tmobil', 'number', 'port', 'parent', 'tmobil', 'famili', 'plan', 'plug', 'new', 'sim', 'card', 'within', 'coupl', 'hour', 'work', 'like', 'charm', 'issu'], ['great', 'phone', 'not', 'use', 'samsung', 'pay', 'unlock'], ['excel', 'product'], ['defect', 'phone', 'i', 'sure', 'owner', 'sold', 'phone', 'knowledg', 'defect', 'phone', 'hang', 'reboot', 'phone', 'order', 'use', 'applic', 'use', 'day', 'arriv', 'nigeria', 'unfortun', 'travel', 'nigeria', 'use', 'unabl', 'test', 'usa', 'see', 'camera', 'joke', 'seller', 'remov'], ['verri', 'good'], ['everynth', 'good', 'super', 'fast', 'ship'], ['not', 'spanish', 'setup'], ['bad', 'thing', 'product', 'not', 'come', 'factori', 'usb', 'samsung', 'cabl', 'kind', 'vietnam', 'made', 'cabl', 'rather', 'charg', 'phone', 'would', 'lightn', 'bolt', 'like', 'charg', 'absolut', 'would', 'not', 'charg', 'charg', 'car', 'last', 'night', 'get', 'phone', 'charg', 'phone', 'work', 'pretti', 'well'], ['good'], ['great', 'phone', 'easi', 'transfer', 'contact', 'app', 'old', 'galaxi', 'work', 'great', 'cricket', 'wireless'], ['work', 'perfect', 'peru', 'extrem', 'recomend'], ['main', 'reason', 'chose', 'phone', 'speed', 'spade', 'write', 'softwar', 'live', 'tri', 'mani', 'thing', 'keep', 'old', 'phone', 'fast', 'yet', 'despit', 'stick', 'android', 'refus', 'updat', 'app', 'instal', 'much', 'anyth', 'web', 'brows', 'becom', 'act', 'click', 'link', 'wait', 'minut', 'load', 'screen', 'would', 'stall', 'repeat', 'tri', 'scroll', 'read', 'page', 'click', 'anoth', 'link', 'wait', 'process', 'began', 'although', 'app', 'phone', 'reason', 'fast', 'web', 'site', 'bloat', 'enough', 'brows', 'intoler', 'phone', 'releas', 'mani', 'site', 'would', 'not', 'function', 'correct', 'unless', 'updat', 'browser', 'made', 'thing', 'even', 'slower', 'site', 'work', 'great', 'near', 'instant', 'load', 'lag', 'time', 'went', 'googl', 'htc', 'vision', 'not', 'want', 'lose', 'physic', 'keyboard', 'i', 'happi', 'say', 'screen', 'larg', 'problem', 'type', 'accur', 'without', 'physic', 'keyboard', 'screen', 'clariti', 'resolut', 'insan', 'review', 'claim', 'point', 'much', 'resolut', 'realli', 'joy', 'see', 'tini', 'clear', 'label', 'extra', 'info', 'various', 'app', 'look', 'photo', 'absolut', 'pixel', 'comput', 'screen', 'loss', 'detail', 'pixel', 'resolut', 'desktop', 'monitor', 'camera', 'even', 'impress', 'max', 'resolut', 'got', 'enough', 'res', 'virtual', 'zoom', 'photo', 'video', 'record', 'without', 'complet', 'loss', 'detail', 'camera', 'beat', 'canon', 'vixia', 'camcord', 'mile', 'better', 'resolut', 'much', 'detail', 'lightest', 'darkest', 'area', 'big', 'review', 'site', 'say', 'pretti', 'much', 'best', 'phone', 'camera', 'market', 'nice', 'alway', 'good', 'camera', 'unexpect', 'shot', 'even', 'focus', 'speed', 'far', 'faster', 'camcord', 'phone', 'abil', 'awesom', 'thing', 'like', 'stitch', 'panoram', 'shot', 'togeth', 'pan', 'phone', 'across', 'landscap', 'take', 'shot', 'multipl', 'focus', 'point', 'combin', 'make', 'everyth', 'clear', 'cours', 'camcord', 'still', 'zoom', 'farther', 'optic', 'zoom', 'catch', 'distant', 'wildlif', 'phone', 'not', 'complet', 'replac', 'site', 'consist', 'say', 'big', 'negat', 'batteri', 'delic', 'glass', 'aluminum', 'construct', 'construct', 'fix', 'case', 'like', 'spigen', 'capsul', 'ultra', 'rug', 'surpris', 'find', 'batteri', 'also', 'fix', 'tweak', 'not', 'mention', 'big', 'profession', 'review', 'site', 'phone', 'initi', 'setup', 'screen', 'chose', 'set', 'googl', 'account', 'not', 'set', 'samsung', 'account', 'enabl', 'samsung', 'featur', 'gave', 'option', 'also', 'declin', 'send', 'info', 'samsung', 'googl', 'first', 'night', 'went', 'bed', 'phone', 'fulli', 'charg', 'pretti', 'much', 'stock', 'softwar', 'instal', 'next', 'morn', 'terribl', 'use', 'set', 'applic', 'applic', 'manag', 'disabl', 'follow', 'app', 'batteri', 'drain', 'went', 'around', 'first', 'night', 'next', 'night', 'ant', 'radio', 'servic', 'plugin', 'servic', 'brief', 'dropbox', 'facebook', 'gmail', 'googl', 'partner', 'setup', 'googl', 'play', 'book', 'googl', 'play', 'game', 'googl', 'play', 'movi', 'tv', 'googl', 'play', 'music', 'googl', 'play', 'newstand', 'hangout', 'instagram', 'live', 'weather', 'memo', 'onedr', 'photo', 'screensav', 'print', 'spooler', 'health', 'voic', 'samsung', 'galaxi', 'samsung', 'link', 'platform', 'connect', 'theme', 'store', 'virtual', 'tour', 'weather', 'daemonbas', 'i', 'read', 'safe', 'app', 'disabl', 'fact', 'unless', 'root', 'phone', 'not', 'think', 'phone', 'let', 'disabl', 'anyth', 'unsaf', 'disabl', 'button', 'grey', 'half', 'thing', 'look', 'not', 'know', 'app', 'real', 'batteri', 'hog', 'see', 'someth', 'actual', 'want', 'use', 'hope', 'not', 'kill', 'batteri', 'enabl', 'phone', 'also', 'come', 'smart', 'manag', 'app', 'click', 'ram', 'manag', 'app', 'tab', 'set', 'particular', 'app', 'kill', 'minut', 'screen', 'turn', 'find', 'particular', 'app', 'kill', 'idl', 'batteri', 'ad', 'list', 'might', 'help', 'not', 'look', 'like', 'add', 'stock', 'softwar', 'auto', 'stop', 'list', 'unfortun', 'mayb', 'thing', 'enabl', 'would', 'appear', 'next', 'day', 'instal', 'usual', 'app', 'includ', 'avast', 'antivirus', 'worri', 'phone', 'remain', 'blaze', 'fast', 'still', 'lose', 'almost', 'noth', 'screen', 'fact', 'think', 'went', 'bed', 'got', 'morn', 'batteri', 'not', 'lose', 'power', 'linear', 'not', 'seem', 'unreason', 'stick', 'kind', 'wish', 'would', 'given', 'larger', 'batteri', 'anyway', 'sinc', 'competitor', 'larger', 'batteri', 'would', 'ad', 'weight', 'use', 'current', 'batteri', 'seem', 'enough', 'not', 'go', 'lot', 'spend', 'much', 'time', 'use', 'phone', 'bit', 'time', 'nice', 'brows', 'web', 'without', 'horribl', 'lag', 'thing', 'worri', 'previous', 'phone', 'batteri', 'alway', 'swollen', 'year', 'forc', 'replac', 'most', 'due', 'bad', 'phone', 'hardwar', 'not', 'limit', 'batteri', 'charg', 'extra', 'current', 'gradual', 'damag', 'swell', 'batteri', 'eventu', 'work', 'around', 'use', 'tasker', 'turn', 'charger', 'use', 'modul', 'keep', 'phone', 'charg', 'i', 'zero', 'swollen', 'batteri', 'sinc', 'thing', 'alway', 'leav', 'charger', 'keep', 'time', 'i', 'worri', 'batteri', 'swell', 'crack', 'glass', 'back', 'phone', 'hope', 'samsung', 'set', 'charger', 'system', 'prevent', 'big', 'problem', 'last', 'two', 'phone', 'recommend', 'tri', 'not', 'leav', 'phone', 'near', 'charg', 'reason', 'wish', 'would', 'put', 'bigger', 'batteri', 'phone', 'would', 'thicker', 'would', 'not', 'need', 'leav', 'camera', 'stick', 'back', 'camera', 'like', 'ridicul', 'forc', 'everyon', 'buy', 'case', 'protrud', 'enough', 'protect', 'camera', 'slap', 'hard', 'surfac', 'crack', 'camera', 'definit', 'biggest', 'fear', 'come', 'damag', 'phone', 'i', 'sore', 'tempt', 'buy', 'case', 'cover', 'back', 'thick', 'rubber', 'right', 'near', 'edg', 'camera', 'yet', 'ruin', 'beauti', 'phone', 'back', 'camera', 'design', 'suck', 'i', 'never', 'bother', 'case', 'previous', 'phone', 'rare', 'drop', 'although', 'surviv', 'fall', 'year', 'look', 'fragil', 'end', 'use', 'spigen', 'neo', 'hybrid', 'ex', 'give', 'protect', 'prevent', 'camera', 'contact', 'tabl', 'surfac', 'phone', 'back', 'case', 'feet', 'four', 'corner', 'give', 'enough', 'thick', 'prevent', 'camera', 'touch', 'small', 'feet', 'end', 'tabl', 'camera', 'still', 'touch', 'annoy', 'add', 'extra', 'pad', 'choetech', 'qi', 'wireless', 'charg', 'pad', 'keep', 'camera', 'scrape', 'need', 'bigger', 'batteri', 'case', 'buy', 'batteri', 'built', 'case', 'add', 'weight', 'usual', 'block', 'wireless', 'charg', 'abil', 'phone', 'though', 'would', 'make', 'sens', 'develop', 'batteri', 'case', 'could', 'charg', 'charg', 'doubt', 'i', 'use', 'much', 'phone', 'come', 'special', 'adapt', 'fast', 'charger', 'take', 'phone', 'minut', 'dump', 'instead', 'usual', 'charg', 'speed', 'reduc', 'closer', 'phone', 'get', 'full', 'fast', 'charger', 'suppos', 'detect', 'connect', 'oper', 'normal', 'devic', 'read', 'someon', 'plug', 'control', 'fri', 'control', 'repeat', 'experi', 'time', 'dishonest', 'return', 'broken', 'control', 'store', 'exchang', 'new', 'one', 'happen', 'everi', 'time', 'cours', 'mayb', 'guy', 'lie', 'get', 'attent', 'defect', 'fast', 'charger', 'sound', 'serious', 'figur', 'i', 'would', 'pass', 'warn', 'not', 'risk', 'use', 'fast', 'charger', 'anyth', 'charg', 'samsung', 'seem', 'put', 'charg', 'coil', 'slight', 'height', 'phone', 'everi', 'upright', 'wireless', 'charger', 'look', 'complaint', 'would', 'charg', 'side', 'upsid', 'choetech', 'charger', 'link', 'fewest', 'complaint', 'phone', 'still', 'not', 'alway', 'link', 'upright', 'posit', 'interest', 'ad', 'spidgen', 'bumper', 'case', 'phone', 'connect', 'charger', 'pretti', 'much', 'reliabl', 'mayb', 'samsung', 'think', 'cap', 'assum', 'almost', 'nobodi', 'would', 'use', 'phone', 'without', 'case', 'posit', 'charg', 'coil', 'appropri', 'case', 'still', 'think', 'coil', 'bare', 'within', 'align', 'toler', 'phone', 'charg', 'slowli', 'also', 'note', 'although', 'i', 'seen', 'seller', 'wireless', 'charger', 'claim', 'fast', 'charg', 'phone', 'charg', 'coil', 'phone', 'not', 'physic', 'abl', 'take', 'power', 'quick', 'wire', 'fast', 'charger', 'put', 'fact', 'i', 'seen', 'complaint', 'wireless', 'charg', 'not', 'alway', 'keep', 'amount', 'power', 'phone', 'use', 'play', 'video', 'thing', 'screen', 'feel', 'charg', 'coil', 'not', 'align', 'well', 'phone', 'not', 'tweak', 'limit', 'amount', 'background', 'crap', 'constant', 'samsung', 'special', 'hardwar', 'protect', 'perman', 'mark', 'phone', 'compromis', 'root', 'use', 'method', 'though', 'way', 'around', 'phone', 'get', 'mark', 'call', 'blow', 'knox', 'fuse', 'suppos', 'happen', 'not', 'use', 'samsung', 'pay', 'warranti', 'might', 'void', 'i', 'root', 'previous', 'two', 'phone', 'not', 'general', 'found', 'extra', 'power', 'use', 'i', 'lean', 'toward', 'leav', 'scanner', 'cool', 'way', 'protect', 'phone', 'unwant', 'user', 'although', 'realli', 'fals', 'sens', 'secur', 'like', 'guard', 'friend', 'famili', 'muck', 'phone', 'thief', 'techi', 'reboot', 'phone', 'hold', 'power', 'volum', 'home', 'button', 'enter', 'bootload', 'mode', 'overwrit', 'boot', 'loader', 'get', 'phone', 'data', 'thumb', 'scanner', 'find', 'lost', 'devic', 'featur', 'might', 'slow', 'stop', 'someon', 'not', 'know', 'real', 'thief', 'turn', 'phone', 'soon', 'never', 'boot', 'let', 'find', 'anyway', 'thumb', 'scanner', 'decent', 'seem', 'hit', 'wrong', 'angl', 'least', 'third', 'time', 'care', 'move', 'thumb', 'perfect', 'straight', 'center', 'scanner', 'thought', 'mayb', 'move', 'thumb', 'various', 'slight', 'angl', 'center', 'thumb', 'print', 'train', 'might', 'help', 'seem', 'make', 'wors', 'thought', 'mayb', 'could', 'set', 'three', 'version', 'thumb', 'straight', 'slight', 'left', 'slight', 'right', 'program', 'four', 'finger', 'print', 'total', 'train', 'thumb', 'one', 'index', 'plus', 'one', 'wife', 'disappoint', 'limit', 'use', 'thumb', 'scanner', 'reason', 'fast', 'work', 'feel', 'slower', 'simpl', 'pattern', 'use', 'old', 'phone', 'i', 'not', 'sure', 'i', 'stick', 'wake', 'phone', 'press', 'thumb', 'scanner', 'button', 'not', 'lift', 'thumb', 'put', 'back', 'press', 'button', 'never', 'scan', 'valid', 'thumb', 'print', 'annoy', 'also', 'discov', 'fail', 'scan', 'thumb', 'mani', 'time', 'phone', 'lock', 'type', 'backup', 'password', 'i', 'not', 'sure', 'mani', 'fail', 'attempt', 'turn', 'lockdown', 'wife', 'caus', 'happen', 'trip', 'repeat', 'unlock', 'phone', 'take', 'photo', 'not', 'unlock', 'password', 'memor', 'written', 'paper', 'home', 'could', 'ruin', 'trip', 'featur', 'even', 'annoy', 'not', 'say', 'phone', 'disabl', 'thumb', 'scanner', 'instead', 'show', 'normal', 'lock', 'screen', 'put', 'thumb', 'noth', 'unlock', 'vibrat', 'indic', 'not', 'recogn', 'thumb', 'thought', 'mayb', 'thumb', 'scanner', 'broken', 'type', 'unlock', 'password', 'work', 'fine', 'set', 'lock', 'screen', 'secur', 'secur', 'lock', 'set', 'smart', 'lock', 'enabl', 'method', 'unlock', 'phone', 'includ', 'say', 'ok', 'googl', 'voic', 'phone', 'particular', 'known', 'gps', 'locat', 'phone', 'pair', 'trust', 'bluetooth', 'devic', 'car', 'watch', 'etc', 'phone', 'nfc', 'near', 'field', 'communic', 'sticker', 'cours', 'tell', 'phone', 'remain', 'unlock', 'near', 'watch', 'thief', 'demand', 'watch', 'phone', 'well', 'also', 'tell', 'phone', 'not', 'lock', 'long', 'hold', 'pocket', 'idea', 'know', 'hold', 'pocket', 'descript', 'featur', 'claim', 'know', 'somehow', 'gold', 'vs', 'platinum', 'gold', 'color', 'amazon', 'list', 'show', 'choic', 'gold', 'vs', 'platinum', 'gold', 'color', 'pick', 'gold', 'excit', 'final', 'get', 'gold', 'phone', 'box', 'arriv', 'show', 'platinum', 'gold', 'argh', 'research', 'onlin', 'appear', 'made', 'color', 'black', 'white', 'platinum', 'gold', 'gold', 'option', 'amazon', 'mistak', 'phone', 'hint', 'gold', 'certain', 'light', 'time', 'look', 'silver', 'gold', 'tone', 'never', 'amaz', 'phone', 'screen', 'camera', 'qualiti', 'perfect', 'complaint', 'smaller', 'averag', 'batteri', 'camera', 'stick', 'back', 'use', 'batteri', 'size', 'not', 'matter', 'ever', 'crack', 'camera', 'due', 'ridicul', 'design', 'i', 'probabl', 'come', 'back', 'knock', 'coupl', 'star', 'i', 'happi'], ['get', 'lot', 'unwant', 'like', 'tri', 'go', 'youtub', 'get', 'redirect', 'site', 'tell', 'download', 'someth', 'annoy'], ['everyth', 'ok'], ['expect'], ['excelent', 'product'], ['good'], ['excel', 'product'], ['arriv', 'time', 'amazon', 'deliveri', 'servic', 'phone', 'everyth', 'expect', 'complaint'], ['good'], ['use', 'less', 'week', 'far', 'not', 'abl', 'use', 'mani', 'featur', 'howev', 'one', 'day', 'arriv', 'travel', 'love', 'camera', 'photo', 'took', 'realli', 'nice', 'realli', 'surpris', 'even', 'photo', 'took', 'sunlight', 'good', 'plan', 'buy', 'iphon', 'not', 'sell', 'golden', 'one', 'anymor', 'decid', 'buy', 'samsung', 'not', 'regret', 'chang', 'mind', 'especi', 'instead', 'iphon'], ['happi', 'perch'], ['everyth', 'perfect', 'phone', 'perfect', 'condit', 'recommend'], ['junk', 'screen', 'not', 'work', 'phone', 'month', 'not', 'buy'], ['awesom', 'phone'], ['love', 'phone', 'not', 'disappoint', 'easi', 'use', 'would', 'recommend'], ['right', 'problem'], ['happi', 'samsung', 'galaxi', 'phone'], ['good'], ['good', 'qauliti', 'phone'], ['good'], ['not', 'spanish', 'setup'], ['great', 'phone'], ['buy', 'recommand', 'meet', 'expect'], ['garbag'], ['awesom', 'phone'], ['nice'], ['care', 'buy', 'intern', 'phone', 'without', 'us', 'warranti', 'month', 'broken', 'complet', 'dead', 'seller', 'not', 'help', 'samsung', 'usa', 'not', 'help', 'not', 'find', 'countri', 'origin', 'even', 'tri', 'use', 'one', 'year', 'warranti', 'depress', 'repair', 'shop', 'fix', 'either', 'tri', 'three', 'word', 'spent', 'phone', 'month', 'one', 'worst', 'purchas', 'decis', 'ever', 'made'], ['nice', 'phone', 'batteri', 'issu'], ['excit', 'packag', 'arriv', 'first', 'turn', 'realiz', 'not', 'unlock', 'strang', 'boot', 'anim', 'optus', 'yes', 'dissapoint', 'would', 'like', 'seller', 'comtact', 'offer', 'least', 'part', 'refund', 'issu', 'not', 'know', 'unlock'], ['screen', 'edg', 'especi', 'top', 'edg', 'drag', 'set', 'quick', 'menu', 'absolut', 'unaccept', 'flaw', 'cellphon', 'samsung', 'flagship'], ['perfect'], ['great', 'phone'], ['samsung', 'galaxi', 'best', 'phone', 'experi', 'ever', 'mean', 'lot', 'person', 'never', 'ever', 'stick', 'phone', 'mayb', 'month', 'i', 'constant', 'watch', 'youtub', 'video', 'buy', 'phone', 'talk', 'samsung', 'get', 'phone', 'one', 'smooth', 'beauti', 'phone', 'love', 'phone', 'get', 'phone', 'promis', 'buy', 'phone'], ['love', 'first', 'time', 'bought', 'actual', 'nice', 'smartphon', 'usual', 'get', 'love', 'phone', 'packag', 'great', 'everyth', 'work', 'great'], ['horribl', 'read', 'review', 'not', 'real', 'samsung', 'made', 'oversea', 'mine', 'broke', 'week', 'bought'], ['product', 'got', 'hous', 'one', 'day', 'suppos', 'phone', 'work', 'realli', 'good', 'beauti'], ['nice', 'cell'], ['phone', 'lock', 'still', 'need', 'code', 'unlock', 'phone'], ['love', 'phone', 'came', 'mail', 'quick', 'realli', 'easi', 'use', 'got', 'white'], ['everynth', 'good', 'super', 'fast', 'ship'], ['need', 'new', 'phone', 'soon', 'possibl', 'bought', 'amazon', 'warehous', 'expect', 'someth', 'wrong', 'aesthet', 'list', 'descript', 'phone', 'perfect', 'scratch', 'imperfect', 'cool', 'coupl', 'trick', 'gold', 'beauti', 'i', 'happi', 'got', 'rapid', 'charger', 'amaz', 'keep', 'charg', 'pretti', 'much', 'whole', 'day'], ['return', 'refurbish', 'product', 'want', 'brand', 'new', 'product'], ['i', 'alreadi', 'love', 'phone', 'good', 'custom', 'servic', 'btw', 'got', 'email', 'compani', 'purchas', 'complaint', 'came', 'iphon', 'communiti', 'iphon', 'year', 'want', 'chang', 'get', 'use', 'complex', 'iphon', 'work', 'brilliant', 'fingerprint', 'lock', 'work', 'like', 'charm'], ['excel', 'camera', 'main', 'purchas', 'reason', 'easi', 'use', 'interfac', 'long', 'batteri', 'life', 'could', 'ask'], ['great', 'phone', 'love'], ['nice'], ['great', 'cellphon'], ['horribl', 'read', 'review', 'not', 'real', 'samsung', 'made', 'oversea', 'mine', 'broke', 'week', 'bought'], ['perfect'], ['excit', 'packag', 'arriv', 'first', 'turn', 'realiz', 'not', 'unlock', 'strang', 'boot', 'anim', 'optus', 'yes', 'dissapoint', 'would', 'like', 'seller', 'comtact', 'offer', 'least', 'part', 'refund', 'issu', 'not', 'know', 'unlock'], ['excel'], ['year', 'week', 'hardwar', 'crash', 'phone', 'well', 'take', 'care'], ['bought', 'phone', 'father', 'honest', 'say', 'good', 'phone', 'sure', 'i', 'bit', 'bias', 'appl', 'person', 'camera', 'qualiti', 'excel', 'phone', 'beauti'], ['product', 'receiv', 'great', 'condit', 'work', 'fine'], ['nice'], ['like', 'better', 'old', 'iphon', 'better', 'camera', 'cours', 'bigger', 'screen', 'obvious', 'good', 'charg', 'time', 'mani', 'phone', 'compar', 'quick', 'iphon', 'charg', 'one', 'concern', 'move', 'icon', 'one', 'page', 'stick', 'not', 'budg', 'patient', 'catch', 'tri', 'anyway', 'far', 'good', 'refurb', 'phone'], ['great', 'phone', 'faster', 'previous', 'samsung'], ['phone', 'live', 'expect'], ['bought', 'phone', 'everyth', 'english', 'uk', 'manag', 'make', 'fulli', 'english', 'us', 'thing', 'not', 'like', 'not', 'use', 'samsung', 'pay', 'photoshop', 'mix', 'app', 'phone', 'phone', 'restrict', 'reason', 'idk', 'intern', 'unlock', 'phone', 'phone', 'got', 'not', 'say', 'galaxi', 'back', 'instead', 'say', 'duo', 'not', 'know', 'thing', 'aliv', 'phone', 'origin', 'box', 'not', 'open', 'came', 'origin', 'box', 'earphon', 'pin', 'differ', 'charger', 'uk', 'charger', 'not', 'compat', 'us', 'outlet', 'besid', 'point', 'test', 'phone', 'water', 'water', 'proof', 'like', 'phone', 'get', 'well', 'complement', 'peopl', 'like', 'apeciali', 'clock', 'alway', 'hope', 'help', 'buyer', 'bought', 'wireless', 'circl'], ['far', 'good', 'worri', 'us', 'warranti'], ['good', 'product'], ['need', 'facil', 'dual', 'sim', 'card', 'instead', 'travel', 'two', 'separ', 'phone', 'tri', 'option', 'use', 'bluetooth', 'adapt', 'problem', 'sound', 'qualiti', 'phone', 'dual', 'sim', 'solv', 'problem', 'dedic', 'iphon', 'user', 'get', 'use', 'differ', 'operatingredi', 'featur', 'experi', 'indic', 'one', 'need', 'patient', 'one', 'data', 'transfer', 'get', 'use', 'differ', 'iphon', 'howev', 'note', 'galaxi', 'excel', 'phone', 'addit', 'featur', 'iphon', 'camera', 'better', 'iphon'], ['great', 'phone', 'i', 'love', 'everyth', 'huge', 'step', 'galaxi', 'migrat', 'process', 'intuit', 'includ', 'usb', 'adaptar', 'connect', 'previous', 'phone', 'one', 'copi', 'file', 'direct'], ['not', 'work', 'cell', 'phone', 'servic'], ['dual', 'sim', 'mode', 'mobil', 'data', 'not', 'work', 'mobil', 'data', 'work', 'second', 'mobil', 'restart', 'die', 'dual', 'sim', 'purpos', 'need', 'use', 'mobil', 'data', 'either', 'sim', 'troubl', 'not', 'sure', 'problem', 'item', 'receiv', 'model'], ['like', 'other', 'point', 'not', 'lte', 'signal', 'ever', 'not', 'quit', 'sure', 'network', 'oper', 'issu', 'phone', 'not', 'imagin', 'phone', 'issu', 'even', 'stream', 'youtub', 'video', 'without', 'issu', 'compar', 'old', 'huge', 'upgrad', 'everyth', 'faster', 'network', 'page', 'load', 'much', 'faster', 'old', 'par', 'game', 'desktop'], ['good'], ['spent', 'forev', 'look', 'everywher', 'advanc', 'call', 'section', 'phone', 'set', 'verizon', 'call', 'one', 'main', 'reason', 'bought', 'phone', 'verizon', 'time', 'even', 'servic', 'come', 'goe', 'hous', 'start', 'think', 'crazi', 'googl', 'problem', 'call', 'verizon', 'inde', 'verizon', 'not', 'support', 'call', 'phone', 'unlock', 'would', 'nice', 'spec', 'say', 'also', 'speak', 'spec', 'even', 'though', 'verizon', 'note', 'phone', 'advertis', 'us', 'carrier', 'miss', 'band', 'phone', 'hot', 'sit', 'untouch', 'two', 'hour', 'spent', 'set', 'watch', 'batteri', 'drop', 'fulli', 'charg', 'arriv', 'go', 'back', 'real', 'bummer', 'sinc', 'phone', 'suppos', 'best'], ['great', 'beauti', 'fyi', 'origin', 'seal', 'region', 'arab', 'emir', 'not', 'use', 'samsung', 'pay'], ['nice'], ['ugli', 'phone', 'high', 'end', 'market', 'ugli', 'oblong', 'shape', 'cheap', 'shini', 'plastic', 'look', 'ugli', 'design', 'icon', 'oversatur', 'color', 'even', 'basic', 'mode', 'messi', 'organ', 'app', 'screen', 'extra', 'featur', 'like', 'puls', 'sens', 'margin', 'valu', 'best', 'good', 'featur', 'dual', 'simm', 'larg', 'screen', 'size', 'phone', 'size', 'ratio', 'low', 'weight', 'waterproof', 'not', 'fulli', 'compens', 'ugli', 'design', 'given', 'chanc', 'would', 'go', 'phone', 'especi', 'htc'], ['got', 'phone', 'husband', 'absolut', 'love'], ['love', 'phone'], ['cell', 'phone', 'not', 'pictur', 'back'], ['good', 'mobil'], ['everyth', 'ok'], ['not', 'purchas', 'bought', 'phone', 'month', 'ago', 'row', 'dead', 'pixel', 'never', 'drop', 'water', 'damag', 'fine', 'morn', 'took', 'pocket', 'notic', 'pixel', 'die', 'goe', 'away', 'random', 'alway', 'return', 'hour'], ['good', 'noticia', 'excel'], ['receiv', 'devic', 'excel', 'thank', 'lot'], ['phone', 'phone'], ['i', 'gotten', 'phone', 'twice', 'one', 'wife', 'one', 'come', 'two', 'day', 'earlier', 'date', 'suppos', 'come', 'phone', 'wonder', 'work', 'great', 'noth', 'recommend', 'buy', 'phone'], ['awesom', 'phone'], ['excel'], ['phone', 'exceed', 'expect', 'research', 'beforehand', 'differ', 'chip', 'put', 'phone', 'say', 'intern', 'version', 'live', 'hype', 'i', 'phone', 'week', 'one', 'day', 'batteri', 'die', 'hour', 'trip', 'run', 'googl', 'map', 'take', 'pictur', 'video', 'game', 'thing', 'phone', 'charger', 'left', 'not', 'bad', 'go', 'htc', 'one', 'could', 'not', 'make', 'without', 'charg', 'camera', 'fast', 'take', 'great', 'pictur', 'i', 'compliment', 'amaz', 'screen', 'look', 'thing', 'heard', 'peopl', 'complain', 'not', 'samsung', 'pay', 'never', 'use', 'not', 'think', 'deal', 'breaker'], ['dual', 'sim', 'unlock', 'duo', 'version', 'awesom', 'phone', 'dual', 'sim', 'capabl', 'key', 'purchas', 'decis', 'intern', 'version', 'phone', 'come', 'carrier', 'unlock', 'pop', 'gsm', 'sim', 'card', 'old', 'phone', 'htc', 'one', 'new', 'samsung', 'edg', 'network', 'nyc', 'research', 'lte', 'band', 'phone', 'lte', 'band', 'use', 'us', 'great', 'recept', 'lte', 'avail', 'high', 'recommend', 'anyon', 'plan', 'intern', 'travel', 'get', 'phone', 'instead', 'carrier', 'lock', 'phone', 'usa', 'dual', 'sim', 'avail', 'us'], ['great'], ['ecxel', 'seller', 'high', 'recommend'], ['fine'], ['excel', 'product', 'work', 'great'], ['give', 'littl', 'back', 'stori', 'phone', 'i', 'guy', 'new', 'phone', 'everi', 'month', 'not', 'break', 'not', 'abl', 'find', 'someth', 'get', 'board', 'long', 'phone', 'chang', 'batteri', 'perform', 'samsung', 'exyno', 'screen', 'realli', 'hard', 'scratch', 'crack', 'rear', 'camera', 'improv', 'perform', 'especi', 'import', 'anyon', 'realli', 'android', 'longer', 'buy', 'us', 'variant', 'phone', 'carrier', 'make', 'difficult', 'root', 'instal', 'custom', 'expandabiltiy', 'back', 'becon', 'edg', 'kind', 'annoy', 'not', 'case', 'finger', 'constant', 'press', 'side', 'screen', 'mess', 'model', 'reason', 'samsung', 'gb', 'samsung', 'softwar', 'alway', 'atroci', 'opinion', 'use', 'custom', 'rom', 'get', 'rid', 'camera', 'resolut', 'speaker', 'sound', 'horribl', 'take', 'first', 'repairoveral', 'realli', 'like', 'phone', 'still', 'think', 'final', 'found', 'one', 'keep', 'time'], ['clear', 'best', 'cell', 'far'], ['deliv', 'time', 'best', 'cell', 'great', 'screen', 'easi', 'comfort', 'handl', 'great', 'long', 'last', 'batteri', 'incred', 'pictur', 'love', 'cell'], ['phone', 'amaz', 'fast', 'someth', 'wrong', 'batteri', 'life', 'estim', 'hour', 'charg', 'not', 'even', 'enough', 'batteri', 'last', 'half', 'day', 'submit', 'return'], ['order', 'samsung', 'galaxi', 'edg', 'factori', 'unlock', 'intern', 'middl', 'east', 'version', 'singl', 'sim', 'card', 'got', 'wrong', 'order', 'samsung', 'galaxi', 'dual', 'sim'], ['good'], ['ok'], ['excelent'], ['techno', 'master', 'alway', 'send', 'product', 'week', 'start', 'see', 'defect', 'happen', 'twice', 'less', 'month'], ['background', 'color', 'second', 'one', 'receiv', 'work', 'perfect'], ['mon', 'work'], ['excel'], ['phone', 'work', 'pretti', 'awesom', 'crash', 'would', 'not', 'turn', 'troubleshoot', 'could', 'still', 'would', 'not', 'turn', 'return', 'item'], ['edg', 'unit', 'arab', 'emir', 'phone', 'detial', 'say', 'set', 'brand', 'new', 'unopen', 'work', 'perfect', 'set', 'easi', 'pop', 'nano', 'sim', 'card', 'worri', 'someth', 'might', 'faulti', 'processor', 'snappi', 'screen', 'perfect', 'camera', 'fault', 'ever', 'order', 'arriv', 'oct', 'would', 'high', 'recommend', 'bloatwar', 'faster', 'processor', 'us', 'version', 'not', 'test', 'waterproof', 'featur', 'give', 'feedback', 'wireless', 'everyth'], ['great', 'smartphon', 'gift', 'christma', 'cellphon', 'deliv', 'without', 'problem', 'recomend'], ['not', 'sure', 'recept', 'weak', 'bad', 'antenna'], ['excelent'], ['not', 'buy', 'phone', 'stand', 'loss', 'like', 'purchas', 'phone', 'juli', 'return', 'home', 'start', 'use', 'phone', 'overh', 'burnt', 'screen', 'paye', 'usd', 'get', 'fix', 'still', 'not', 'fix', 'proper', 'amazon', 'sent', 'troubl', 'loss', 'i', 'countri', 'not', 'return', 'may', 'busi', 'amazon', 'electron', 'done', 'even', 'fix', 'two', 'shade', 'light', 'phone', 'technician', 'said', 'softwar', 'problem', 'said', 'contact', 'samsung', 'gave', 'everyth'], ['perfect'], ['amaz'], ['excel', 'cellphon'], ['lot', 'cool', 'help', 'featur', 'perform', 'good', 'high', 'recommend', 'purchas', 'consid', 'switch', 'upgrad'], ['good', 'product'], ['good', 'phone', 'intern', 'version', 'adapt'], ['i', 'realli', 'pleas', 'product', 'met', 'expect', 'inform', 'provid', 'seller', 'correct', 'realli', 'recommend', 'product', 'hope', 'comment', 'help'], ['i', 'bit', 'disappoint', 'shipment', 'got', 'european', 'socket', 'charger', 'american', 'charger', 'adapt', 'like', 'peopl', 'say', 'got', 'review', 'also', 'seal', 'packag', 'alreadi', 'broken', 'also', 'packag', 'kind', 'workn', 'still', 'phone', 'look', 'great', 'bummer', 'get', 'proper', 'charger', 'use', 'nake', 'thing', 'wors', 'phone', 'almost', 'dollar', 'cheaper', 'bought', 'day', 'ago'], ['amaz', 'smartphon', 'high', 'recommend'], ['love', 'edg', 'thing', 'sometim', 'get', 'hot'], ['great', 'phone', 'love', 'far'], ['love', 'much', 'thank', 'not', 'believ', 'bought', 'expens', 'fone', 'reward', 'expens', 'ok', 'satisfi', 'happi', 'thank', 'amazon'], ['rather', 'expens', 'meet', 'expect'], ['incred', 'satisfi', 'recommend'], ['soon', 'got', 'yet', 'put', 'super', 'fast', 'amaz', 'screen', 'dream', 'phone', 'wait', 'easi', 'transfer', 'data', 'new', 'phone', 'thing', 'light', 'first', 'held', 'like', 'omg', 'thing', 'super', 'light', 'like', 'would', 'drop', 'forget', 'weight', 'lol', 'thing', 'eh', 'get', 'seal', 'detach', 'box', 'not', 'broken', 'adhes', 'rub', 'brand', 'usual', 'say', 'edg', 'back', 'not', 'model', 'think', 'good', 'thing', 'made', 'feel', 'hour', 'man', 'got', 'fake', 'not', 'case', 'felt', 'like', 'real', 'deal', 'check', 'set', 'softwar', 'super', 'snappi', 'easi', 'use', 'phone', 'section', 'set', 'say', 'model', 'number', 'phone', 'type', 'resist', 'tri', 'water', 'resist', 'say', 'work', 'residu', 'sticker', 'ran', 'tap', 'water', 'clean', 'right', 'yet', 'tri', 'wireless', 'charg', 'yet', 'neutral', 'seem', 'great', 'time', 'not', 'great', 'woke', 'still', 'great', 'feel', 'end', 'night', 'ill', 'left', 'less', 'heavi', 'user', 'come', 'phone', 'con', 'come', 'foreign', 'seller', 'gave', 'adapt', 'phone', 'not', 'know', 'everi', 'purchas', 'well', 'awar', 'may', 'not', 'come', 'american', 'adapt', 'far', 'tell', 'far', 'updat', 'review', 'anyth', 'chang', 'yet', 'test', 'wireless', 'charg', 'plan', 'pick', 'one', 'soon', 'add', 'edit'], ['everith', 'ok', 'cell', 'phone', 'amaz'], ['bought', 'gift', 'girlfriend', 'love', 'iphon', 'dindt', 'want', 'use', 'month', 'later', 'regrest', 'not', 'make', 'transit', 'phone', 'problem', 'use', 'tmobil', 'cricket', 'network'], ['amaz'], ['accord', 'expect'], ['usual', 'read', 'review', 'bedor', 'order', 'anyth', 'therefor', 'anxious', 'order', 'phone', 'various', 'user', 'various', 'got', 'good', 'deal', 'devic', 'got', 'whithin', 'week', 'latin', 'american', 'version', 'us', 'wall', 'far', 'devic', 'perform'], ['phone', 'featur', 'great', 'thing', 'i', 'phone', 'week', 'not', 'drop', 'today', 'phone', 'crack', 'drop', 'sit', 'floor', 'slip', 'hand', 'less', 'foot', 'entir', 'screen', 'crack', 'materi', 'made', 'terribl', 'fragil'], ['good', 'product', 'littl', 'defect', 'home', 'button', 'make', 'big', 'nois', 'press'], ['receiv', 'phone', 'crack'], ['far', 'order', 'samsung', 'galaxi', 'edg', 'gold', 'receiv', 'regular', 'silver', 'like', 'wtf'], ['receiv', 'phone', 'time', 'phone', 'kept', 'restat'], ['cellphon', 'amaz', 'ship', 'deliv', 'quick', 'mine', 'us', 'version', 'unlock', 'work', 'excel', 'metro', 'pcs', 'mine', 'warranti', 'septemb', 'next', 'year', 'check', 'imei', 'get', 'phone', 'phone', 'not', 'come', 'sim', 'extract', 'tool', 'packag', 'bad', 'big', 'cardboard', 'box', 'anoth', 'cardboard', 'box', 'phone', 'insid', 'put', 'air', 'bag', 'someth', 'couchon', 'anyway', 'phone', 'great', 'condit', 'not', 'given', 'problem', 'far', 'phone', 'came', 'samsung', 'earphon', 'quick', 'charger', 'cabl', 'truli', 'recommend', 'get', 'phone', 'case', 'got', 'one', 'spigen', 'check', 'nice', 'case'], ['new', 'excel', 'want'], ['excel', 'product', 'satisfi'], ['good'], ['good', 'price'], ['experi', 'purchas', 'product', 'excel'], ['worst', 'seller', 'amazonhorr', 'experi', 'useless', 'costum', 'servic', 'amazon', 'extrem', 'disappointedphon', 'not', 'use', 'outsid', 'usabluetooth', 'not', 'workcamera', 'defectedvideo', 'noiseand'], ['item', 'not', 'new'], ['great'], ['got', 'galaxi', 'last', 'year', 'get', 'one', 'notic', 'batteri', 'life', 'improv', 'huge', 'also', 'camera', 'lot', 'better', 'even', 'galaxi', 'best', 'worth', 'chang'], ['experi', 'purchas', 'product', 'excel'], ['love'], ['like', 'cell', 'much', 'love', 'custom', 'featur'], ['month', 'sinc', 'got', 'phone', 'still', 'not', 'full', 'use', 'devic', 'horribl', 'buy', 'not', 'read', 'sim', 'restart', 'ever', 'often', 'problem', 'persist', 'screen', 'goe', 'phone', 'goe', 'dead', 'even', 'full', 'charg', 'take', 'switch', 'back', 'wors', 'wors', 'wors', 'buy', 'sad', 'disappoint', 'whqt', 'make', 'wors', 'suppos', 'gift', 'gf', 'phone', 'one', 'crap'], ['amaz', 'phone', 'i', 'use', 'week', 'major', 'improv', 'use', 'intern', 'version', 'work', 'perfect', 'argentina', 'use', 'cut', 'previous', 'simcard', 'appropri', 'size'], ['samsung', 'fanboy', 'want', 'phone', 'perform', 'great', 'esthet', 'samsung', 'alway', 'deliv'], ['love', 'smaller', 'earlier', 'model', 'love'], ['great', 'spec', 'great', 'color', 'great', 'samsung'], ['impress', 'phone', 'price', 'cheaper', 'amazon', 'store', 'not', 'issu', 'sinc', 'bought', 'month', 'ago', 'camera', 'outstand'], ['great', 'smartphon'], ['everyth', 'great', 'stat'], ['perfect', 'phone', 'apart', 'two', 'thing', 'fact', 'batteri', 'not', 'chang', 'fact', 'batteri', 'life', 'real', 'user', 'still', 'not', 'great', 'second', 'front', 'camera', 'wack', 'iphon', 'user', 'like', 'pictur', 'not', 'chang'], ['phone', 'weird', 'arab', 'calend', 'instal', 'realli', 'new'], ['great', 'devic'], ['like', 'cell', 'much', 'love', 'custom', 'featur'], ['good', 'product', 'problem'], ['perfect', 'deliveri', 'time', 'sinc', 'travel', 'outsid', 'countri', 'issu', 'get', 'line', 'sinc', 'phone', 'featur', 'great', 'tool', 'fast', 'easi', 'also', 'great', 'entertain', 'awesom', 'camera', 'great', 'sound', 'music', 'love', 'brother', 'leav', 'present', 'jajaja'], ['great'], ['new', 'excel', 'want'], ['excel', 'work', 'perfect'], ['got', 'uk', 'version', 'galaxi', 'differ', 'us', 'version', 'processor', 'exyno', 'charger', 'box', 'open', 'phone', 'trace', 'fingertip', 'howev', 'not', 'look', 'like', 'phone', 'ever', 'use', 'still', 'protect', 'plastic', 'layer', 'content', 'box', 'wrape', 'seal', 'charger', 'uk', 'adapt', 'includ', 'box', 'far', 'phone', 'work', 'great', 'beauti', 'compar', 'i', 'would', 'spent', 'phone', 'i', 'would', 'bought', 'us', 'carrier', 'save', 'around', 'thing', 'not', 'like', 'seal', 'broken', 'would', 'like', 'know', 'overal', 'satisfi', 'note', 'samsung', 'pay', 'not', 'work', 'intern', 'version', 'not', 'sure', 'futur', 'featur', 'releas', 'uk'], ['need', 'facil', 'dual', 'sim', 'card', 'instead', 'travel', 'two', 'separ', 'phone', 'tri', 'option', 'use', 'bluetooth', 'adapt', 'problem', 'sound', 'qualiti', 'phone', 'dual', 'sim', 'solv', 'problem', 'dedic', 'iphon', 'user', 'get', 'use', 'differ', 'operatingredi', 'featur', 'experi', 'indic', 'one', 'need', 'patient', 'one', 'data', 'transfer', 'get', 'use', 'differ', 'iphon', 'howev', 'note', 'galaxi', 'excel', 'phone', 'addit', 'featur', 'iphon', 'camera', 'better', 'iphon'], ['extent'], ['phone', 'terribl', 'recept', 'return', 'wast', 'time', 'energi'], ['bought', 'husband', 'chang', 'super', 'nice', 'love', 'camera', 'fast', 'phone'], ['phone', 'live', 'expect'], ['ok'], ['phone', 'realli', 'fast', 'work', 'great', 'plenti', 'memori', 'sd', 'slot', 'boot', 'instal', 'lot', 'app', 'not', 'move', 'app', 'sd', 'card', 'unlik', 'samsung', 'galaxi', 'galaxi', 'accept', 'two', 'sim', 'second', 'sim', 'would', 'take', 'place', 'sd', 'slot', 'unfortun', 'not', 'use', 'sd', 'slot', 'second', 'sim', 'either', 'thus', 'gps', 'work', 'realli', 'well', 'bluetooth', 'work', 'well', 'wifi', 'work', 'well', 'problem', 'phone', 'come', 'european', 'style', 'plug', 'usb', 'cabl', 'littl', 'pin', 'eject', 'sim', 'tray', 'earphon', 'tri', 'regist', 'phone', 'us', 'samsung', 'websit', 'samsung', 'not', 'recogn', 'serial', 'number', 'imei', 'number', 'not', 'know', 'phone', 'not', 'usa', 'fake', 'phone', 'cours', 'list', 'say', 'warranti', 'seem', 'real', 'work', 'great', 'water', 'resist', 'not', 'test'], ['good'], ['order', 'galaxi', 'intern', 'addit', 'work', 'flawless', 'state', 'i', 'issu', 'adjust', 'new', 'featur', 'everyth', 'came', 'expect', 'phone'], ['perfect', 'may', 'overheat'], ['exact', 'phone', 'need', 'extrem', 'good'], ['phone', 'monster', 'meet', 'everi', 'specif', 'indic', 'beat', 'nokia', 'lumia', 'mile', 'unthink', 'recommend', 'phone', 'anyon', 'desir', 'experi', 'phone', 'tablet', 'laptop', 'camera', 'one'], ['excel', 'product', 'satisfi'], ['excel', 'work', 'perfect'], ['got', 'uk', 'version', 'galaxi', 'differ', 'us', 'version', 'processor', 'exyno', 'charger', 'box', 'open', 'phone', 'trace', 'fingertip', 'howev', 'not', 'look', 'like', 'phone', 'ever', 'use', 'still', 'protect', 'plastic', 'layer', 'content', 'box', 'wrape', 'seal', 'charger', 'uk', 'adapt', 'includ', 'box', 'far', 'phone', 'work', 'great', 'beauti', 'compar', 'i', 'would', 'spent', 'phone', 'i', 'would', 'bought', 'us', 'carrier', 'save', 'around', 'thing', 'not', 'like', 'seal', 'broken', 'would', 'like', 'know', 'overal', 'satisfi', 'note', 'samsung', 'pay', 'not', 'work', 'intern', 'version', 'not', 'sure', 'futur', 'featur', 'releas', 'uk'], ['receiv', 'phone', 'two', 'week', 'ago', 'first', 'android', 'phone', 'ever', 'i', 'play', 'android', 'friend', 'phone', 'hate', 'chang', 'sinc', 'start', 'use', 'phone', 'fast', 'thin', 'beauti', 'camera', 'good', 'not', 'superior', 'lumia', 'not', 'wit', 'lag', 'far', 'focus', 'camera', 'realli', 'good', 'say', 'actual', 'better', 'dslr', 'kind', 'sad', 'qualiti', 'photo', 'come', 'perfect', 'especi', 'pro', 'mode', 'abl', 'adjust', 'iso', 'focus', 'tint', 'far', 'better', 'lumia', 'think', 'amol', 'screen', 'amaz', 'plus', 'top', 'qualiti', 'love', 'recommend', 'phone', 'especi', 'never', 'galaxi'], ['daughter', 'drop', 'pool', 'school', 'start', 'n', 'need', 'one', 'great', 'enjoy'], ['not', 'work', 'kept', 'crash'], ['would', 'given', 'product', 'star', 'rate', 'seller', 'fail', 'includ', 'usb', 'adapt', 'need', 'perform', 'built', 'smart', 'switch', 'function', 'roll', 'content', 'old', 'phone', 'one', 'solv', 'problem', 'order', 'one', 'amazon', 'includ', 'phone', 'requir', 'piec', 'hardwar'], ['struggl', 'horribl', 'batteri', 'life', 'previous', 'galaxi', 'phone', 'final', 'one', 'toler', 'high', 'recommend', 'upgrad', 'final', 'feel', 'safe', 'without', 'charg', 'phone', 'multipl', 'time', 'day'], ['bought', 'mom', 'not', 'like', 'new', 'phone', 'almost', 'exact', 'like', 'old', 'one', 'love'], ['love'], ['juse', 'love', 'phone'], ['good', 'product'], ['disappoint', 'phone', 'not', 'work'], ['send', 'bull', 'back', 'junk', 'not', 'even', 'work', 'refund', 'soon', 'possibl'], ['good', 'product'], ['order', 'friday', 'got', 'deliv', 'fast', 'check', 'see', 'new', 'return', 'one', 'turn', 'brand', 'new', 'intial', 'menu', 'french', 'quick', 'search', 'tube', 'help', 'set', 'languag', 'english', 'insert', 'exist', 'att', 'sim', 'card', 'voic', 'unlimit', 'data', 'work', 'like', 'charm', 'abl', 'make', 'call', 'use', 'cellular', 'capabilit', 'wifi', 'skype', 'sound', 'qualiti', 'end', 'clear', 'even', 'hold', 'inch', 'away', 'face', 'first', 'impress', 'good', 'post', 'start', 'use'], ['anayl', 'mix', 'review', 'item', 'determin', 'promblem', 'peopl', 'have', 'user', 'base', 'sinc', 'look', 'like', 'everyth', 'want', 'decid', 'go', 'first', 'got', 'watch', 'concern', 'noth', 'seam', 'work', 'right', 'went', 'three', 'four', 'firmwar', 'patch', 'cours', 'day', 'thing', 'start', 'go', 'like', 'well', 'clockwork', 'hardwar', 'watch', 'awesom', 'screen', 'phone', 'make', 'call', 'watch', 'even', 'phone', 'sit', 'right', 'next', 'text', 'navig', 'web', 'serf', 'even', 'watch', 'youtub', 'howev', 'get', 'happi', 'state', 'dig', 'samsung', 'special', 'app', 'store', 'limit', 'select', 'android', 'store', 'titl', 'new', 'unfamiliar', 'trial', 'error', 'invest', 'dollar', 'eventu', 'found', 'app', 'make', 'hardwar', 'sing', 'app', 'get', 'right', 'app', 'watch', 'not', 'get', 'right', 'app', 'frustrat', 'write', 'angri', 'review', 'bear', 'repeat', 'wait', 'firmwar', 'updat', 'make', 'decis', 'thing', 'fail', 'basic', 'task', 'updat', 'hit', 'overal', 'littl', 'tech', 'savi', 'love', 'watch', 'ever', 'brake', 'get', 'eaten', 'wolv', 'i', 'click', 'button', 'heartbeat'], ['ok'], ['love', 'see', 'limit', 'compar', 'newer', 'model', 'love', 'look', 'watch', 'think', 'wear', 'anyth'], ['first', 'hesit', 'buy', 'howev', 'went', 'ahead', 'purchas', 'one', 'today', 'india', 'trust', 'work', 'gsm', 'umt', 'network', 'rest', 'perform', 'well', 'beyond', 'expect', 'genuin', 'accessori', 'retail', 'pack', 'thing', 'note', 'sk', 'telecom', 'start', 'korean', 'languag', 'figur', 'chang', 'eng', 'us', 'other', 'work', 'like', 'charm', 'thank', 'genuin', 'product'], ['excel'], ['excel'], ['come', 'microsoft', 'band', 'fitbit', 'charg', 'great', 'smart', 'watch', 'realli', 'look', 'like', 'watch', 'want', 'keep', 'find', 'new', 'function', 'not', 'expect', 'connect', 'direct', 'network', 'also', 'connect', 'wifi', 'phone', 'not', 'rang', 'still', 'get', 'notif', 'watch', 'also', 'found', 'nfc', 'use', 'samsung', 'pay', 'nfc', 'though', 'plenti', 'option', 'around', 'display', 'gorgeous', 'wireless', 'charg', 'make', 'conveni'], ['watch', 'exact', 'advertis', 'arriv', 'perfect', 'condit', 'would', 'think', 'arriv', 'origin', 'box', 'i', 'happi', 'went', 'rout', 'save'], ['work', 'week'], ['love', 'littl', 'phone', 'screen', 'stop', 'work', 'week', 'got', 'thank', 'abl', 'return', 'return', 'process', 'went', 'smooth', 'slid', 'open', 'send', 'text', 'screen', 'went', 'i', 'assum', 'someth', 'connect', 'slide', 'part', 'main', 'phone', 'keyboard', 'great', 'prefer', 'full', 'real', 'keyboard', 'touch', 'screen', 'menus', 'easi', 'navig', 'call', 'qualiti', 'good', 'great', 'signal', 'strength', 'loud', 'speaker', 'compar', 'old', 'phone', 'imagin', 'got', 'unlucki', 'got', 'faulti', 'phone', 'would', 'still', 'recommend', 'phone', 'review', 'specif', 'phone', 'stop', 'work'], ['good', 'phone'], ['bought', 'three', 'one', 'one', 'amazon', 'kept', 'rise', 'price', 'work', 'easi', 'set', 'tell', 'kid', 'expect', 'iphon', 'not', 'good', 'phone', 'text', 'call', 'even', 'put', 'music', 'video', 'howev', 'mani', 'song', 'place', 'would', 'not', 'work', 'play', 'not', 'licens', 'protect', 'song'], ['bought', 'phone', 'microphon', 'went', 'samsung', 'evergreen', 'phone', 'use', 'could', 'not', 'find', 'new', 'evergreen', 'phone', 'replac', 'told', 'graviti', 'updat', 'version', 'evergreen', 'decid', 'give', 'phone', 'similar', 'evergreen', 'mani', 'respect', 'one', 'big', 'differ', 'neither', 'make', 'receiv', 'phone', 'call', 'dial', 'somebodi', 'els', 'number', 'ring', 'one', 'time', 'hang', 'somebodi', 'els', 'call', 'phone', 'hang', 'one', 'carrier', 'spiel', 'accompani', 'product', 'say', 'suppos', 'work', 'not', 'problem', 'i', 'also', 'sim', 'card', 'check', 'work', 'fine', 'phone', 'not', 'plan', 'return', 'phone', 'resum', 'search', 'slide', 'qwerti', 'phone', 'actual', 'use', 'make', 'receiv', 'call', 'meantim', 'consid', 'buy', 'phone', 'take', 'advic', 'look', 'save', 'lot', 'hassl', 'aggrav'], ['good', 'phone', 'good', 'qualiti', 'use', 'replac', 'phone', 'issu'], ['not', 'believ', 'phone', 'us', 'warranti', 'advertis', 'contact', 'samsung', 'tell', 'intern', 'phone', 'samsung', 'us', 'want', 'noth'], ['work', 'well', 'intern', 'sim', 'card', 'nigeria', 'gave', 'four', 'star', 'volum', 'not', 'loud', 'enough', 'call'], ['love', 'use', 'phone', 'hat', 'got', 'allit', 'one', 'use'], ['nice', 'phone'], ['nice'], ['excelnt'], ['excel'], ['fine', 'cell', 'phone', 'small', 'light', 'need', 'function', 'work', 'fine', 'recommend'], ['good', 'phone', 'fast', 'effici', 'enough', 'averag', 'user', 'problem', 'size', 'keyboard', 'type'], ['receiv', 'phone', 'everyth', 'seem', 'fine', 'notic', 'bottom', 'right', 'box', 'network', 'provid', 'european', 'phone', 'not', 'work', 'whatev', 'reason', 'even', 'unlock', 'i', 'return', 'mine', 'order', 'anoth', 'one', 'i', 'not', 'go', 'order', 'wireless', 'circl', 'seem', 'i', 'not', 'one', 'happen'], ['good'], ['great', 'purchas', 'power', 'great', 'design', 'happi', 'far', 'bought', 'work', 'great', 'venezuela'], ['best', 'use', 'countri', 'function', 'arriv', 'time', 'came', 'protector', 'free'], ['recomendado'], ['great', 'use', 'daili', 'year', 'work', 'perfect', 'fast', 'play', 'store', 'offer', 'mani', 'goord', 'applic'], ['expect', 'even', 'better', 'thought', 'thank', 'good', 'qualiti', 'product', 'thank', 'fulfil', 'expect', 'thank', 'much'], ['nice'], ['needi', 'found', 'product', 'web', 'good', 'price', 'good', 'order', 'unlock', 'phone', 'deed', 'work', 'well', 'ecuador'], ['great', 'product', 'arriv', 'quick', 'mail', 'good', 'price', 'work', 'super', 'far', 'troubl', 'great', 'servic', 'compani'], ['buen', 'producto'], ['realli', 'nice', 'cheap', 'android', 'phone', 'intro', 'phone', 'android', 'world', 'star', 'high', 'recommend'], ['phone', 'great', 'easi', 'use', 'robust', 'i', 'alreadi', 'drop', 'sever', 'time', 'ill', 'effect', 'purpl', 'color', 'subtl', 'cool', 'one', 'complaint', 'alarm', 'not', 'work', 'perfect', 'work', 'perfect', 'three', 'time', 'not', 'work', 'last', 'month', 'everi', 'time', 'alarm', 'set', 'truli', 'strang', 'bug', 'alarm', 'not', 'work', 'work', 'fine', 'long', 'rememb'], ['good', 'purchas'], ['good', 'simpl', 'phone', 'buy', 'dad', 'nurs', 'home', 'parkinson', 'could', 'never', 'use', 'touch', 'screen', 'shaki', 'hand', 'perfect', 'ad', 'friend', 'phone', 'number', 'contact', 'set', 'easi', 'not', 'even', 'need', 'read', 'instruct', 'good', 'simpl', 'phone', 'someon', 'special', 'need', 'not', 'electron', 'inclin', 'also', 'nice', 'look', 'phone', 'good', 'price'], ['face', 'plate', 'scratch', 'expect', 'buy', 'refurbish', 'noth', 'cover', 'not', 'fix'], ['got', 'mother', 'uncl', 'want', 'big', 'button', 'frill', 'phone', 'clear', 'easi', 'use'], ['not', 'expect', 'german', 'languag', 'phone', 'call', 'samsung', 'support', 'could', 'not', 'support', 'return', 'easili', 'back', 'amazon', 'day', 'buyer', 'bewar'], ['well', 'thank'], ['rate', 'not', 'phone', 'seller', 'wireless', 'circl', 'phone', 'fals', 'advertis', 'gb', 'intern', 'memori', 'wherea', 'gb', 'intern', 'memori', 'complain', 'seller', 'tri', 'justifi', 'say', 'quit', 'common', 'not', 'get', 'whole', 'oper', 'system', 'app', 'instal', 'plain', 'cheat', 'not', 'buy', 'product', 'seller', 'want', 'suffici', 'intern', 'memori', 'without', 'enough', 'intern', 'memori', 'would', 'struggl', 'app', 'stream', 'content', 'not', 'love', 'phone', 'either', 'not', 'smart', 'samsung', 'galaxi', 'grand', 'neo', 'also', 'bought', 'amazon', 'cheaper', 'price', 'good', 'thing', 'fit', 'nice', 'shirt', 'pocket', 'light', 'enough', 'bottom', 'line', 'not', 'worth', 'money', 'seller', 'not', 'honest'], ['yes', 'sesent'], ['good', 'phone'], ['simpl', 'i', 'told', 'look', 'like', 'mini', 'version', 'samsung', 'galaxi', 'use', 'motorola', 'droid', 'way', 'better', 'wish', 'front', 'camera', 'top', 'notch', 'like', 'new', 'love'], ['love', 'phone', 'month', 'charg', 'end', 'mess', 'great', 'phone', 'want', 'anoth', 'one', 'perfect', 'size'], ['not', 'galaxi', 'nice', 'softwar', 'everyth', 'work', 'batteri', 'kind', 'iffi', 'bought', 'use', 'expect', 'run', 'downal', 'way', 'occasion', 'charg', 'turn', 'use', 'juic', 'defend', 'help', 'get', 'two', 'day', 'not', 'use', 'alot', 'alreadi', 'drop', 'not', 'hurt', 'far', 'good', 'not', 'pay', 'much', 'pleas', 'regard', 'workson', 'page', 'plus', 'rokz', 'btw', 'i', 'happi'], ['nice', 'phone', 'not', 'run', 'app', 'want', 'run', 'due', 'older', 'android', 'oper', 'system'], ['excel'], ['phone', 'expect', 'condit', 'perfect', 'never', 'use', 'use', 'work', 'great', 'would', 'certain', 'buy', 'seller'], ['wait', 'week', 'phone', 'not', 'work', 'not', 'expect', 'new', 'phone', 'low', 'expect', 'use', 'phone', 'not', 'work', 'tri', 'sell', 'wast', 'time', 'wait', 'tri', 'activ', 'phone', 'not', 'work', 'come', 'need', 'work', 'coupl', 'month'], ['impress', 'look', 'phone', 'sad', 'say', 'one', 'biggest', 'disappoint', 'never', 'rate', 'product', 'star', 'zero', 'rate', 'would', 'prefer', 'rate', 'product', 'month', 'phone', 'start', 'month', 'got', 'wors', 'month', 'stop', 'work', 'altogeth', 'configur', 'went', 'complet', 'noth', 'work', 'contact', 'seller', 'refer', 'samsung', 'sinc', 'product', 'carri', 'warranti', 'notic', 'not', 'think', 'run', 'around', 'may', 'count', 'loss', 'futur', 'purchas', 'warranti', 'notic', 'learn', 'experi', 'trust', 'amazon', 'never', 'problem', 'make', 'purchas', 'guess', 'warranti', 'notic', 'reason', 'see', 'warranti', 'not', 'buy', 'dissatisfi', 'say', 'least'], ['phone', 'work', 'like', 'new', 'clean', 'littl', 'take', 'get', 'activ'], ['outstand', 'actual', 'new', 'not', 'use'], ['thank'], ['bought', 'handicap', 'problem', 'simpl', 'small', 'phone', 'perfect'], ['low', 'vision', 'phone', 'perfect', 'first', 'one', 'die', 'husband', 'found', 'one', 'gave', 'smart', 'phone', 'one', 'not', 'feel', 'bit', 'dumb', 'thank'], ['nice'], ['awsom', 'phone', 'glad', 'bought'], ['satisfi', 'purchas'], ['perfect', 'thank', 'much', 'product', 'perfect', 'condit', 'new', 'pedi', 'thank', 'much', 'happi'], ['exelent', 'producto'], ['bought', 'use', 'us', 'work', 'perfect', 'great', 'featur', 'low', 'budget', 'phone', 'softwar', 'problem', 'got', 'like', 'realli', 'unstabl', 'updat', 'softwar', 'fine', 'gps', 'stop', 'work', 'could', 'longer', 'navig', 'outsid', 'zip', 'code', 'frame', 'start', 'peel', 'think', 'metal', 'someth', 'look', 'like', 'shini', 'metal', 'paint', 'start', 'peel', 'one', 'area', 'stop', 'spread', 'even', 'case', 'still', 'peel', 'littl', 'tini', 'chip', 'come', 'everytim', 'remov', 'case', 'not', 'not', 'remov', 'case', 'hate', 'grimi', 'phone', 'chang', 'case', 'often'], ['great'], ['bought', 'accid', 'tot', 'note', 'normal', 'not', 'even', 'know', 'exist', 'note', 'neo', 'version'], ['nice', 'phone', 'batteri', 'not', 'last', 'long'], ['got', 'new', 'phone', 'work', 'perfect', 'straight', 'box', 'wish', 'come', 'english', 'version', 'instruct', 'found', 'onlin', 'biggi'], ['love', 'phone', 'good', 'phone', 'work', 'perfect', 'use', 'phone', 'handfre', 'mode', 'read', 'messag', 'speak', 'incom', 'call', 'drive', 'use', 'two', 'hand', 'time'], ['phone', 'not', 'unlock', 'not', 'use', 'without', 'unclock'], ['order', 'product', 'suppos', 'unlock', 'could', 'give', 'father', 'took', 'brazil', 'use', 'cell', 'phone', 'oper', 'local', 'phone', 'lock', 'retriev', 'month', 'time', 'not', 'abl', 'return', 'not', 'sure'], ['phone', 'purchas', 'make', 'work', 'dega', 'unlock', 'unlock', 'intern', 'not', 'specif', 'say', 'locat', 'vzla', 'solv', 'problem', 'receiv', 'product', 'not', 'unlock', 'shown', 'product', 'descript'], ['excel'], ['good'], ['good', 'excel'], ['verri', 'good'], ['good', 'product'], ['good'], ['excel', 'cellphon'], ['good'], ['excelent', 'lo', 'recomiendo'], ['far', 'work', 'fine'], ['excel'], ['muy', 'buen', 'producto'], ['excel'], ['excelent'], ['great', 'phone'], ['excel', 'cell', 'phone'], ['spectacular', 'cell', 'fast', 'comfort', 'work', 'well', 'venezuela', 'definit', 'paid'], ['recomend'], ['excelent'], ['wifi', 'antenna', 'indic', 'not', 'show', 'proper', 'strength', 'compar', 'laptop', 'place', 'show', 'half', 'signal', 'strend'], ['got', 'phone', 'wife', 'love', 'good', 'featur', 'easi', 'learn', 'use', 'good', 'size', 'screen', 'not', 'big', 'feel', 'like', 'carri', 'tablet', 'pocket', 'super', 'light', 'weight', 'problem', 'batteri', 'phone', 'month', 'order', 'new', 'batteri', 'lifespan', 'bad', 'even', 'run', 'phone', 'die', 'hour', 'less', 'use', 'lot', 'new', 'phone', 'not', 'die', 'quick', 'plug', 'comput', 'die', 'charg', 'wtf', 'plus', 'phone', 'get', 'super', 'hot', 'charg', 'could', 'fluke', 'batteri', 'issu', 'particular', 'phone', 'bummer', 'buy', 'new', 'batteri', 'phone', 'practic', 'brand', 'new'], ['phone', 'came', 'lock', 'ti', 'pay', 'extra', 'cash', 'unlock', 'make', 'spend', 'time', 'money', 'bad', 'bad'], ['let', 'say', 'love', 'phone', 'week', 'learn', 'someth', 'new', 'everyday', 'realli', 'like', 'galaxi', 'mini', 'straight', 'talk', 'lte', 'area', 'want', 'phone', 'also', 'great', 'littl', 'phone', 'littl', 'bit', 'taller', 'littl', 'narrow', 'mini', 'put', 'case', 'not', 'realli', 'tell', 'seem', 'littl', 'faster', 'mini', 'gotten', 'two', 'day', 'batteri', 'not', 'heavi', 'phone', 'user', 'play', 'game', 'like', 'bejewel', 'littl', 'bit', 'text', 'check', 'email', 'alarm', 'clock', 'make', 'phone', 'call', 'rare', 'use', 'surf', 'web', 'watch', 'video', 'probabl', 'not', 'techi', 'person', 'say', 'purpos', 'great', 'phone', 'would', 'recommend', 'anyon', 'not', 'want', 'huge', 'phone', 'still', 'like', 'qualiti', 'one', 'come', 'unlock', 'seal', 'although', 'like', 'someon', 'els', 'look', 'open', 'reseal', 'offici', 'seal', 'guess', 'shopbest', 'open', 'put', 'plug', 'adapt', 'could', 'use', 'us', 'without', 'issu', 'inter', 'nation', 'phone', 'plug', 'come', 'need', 'put', 'convert', 'mini', 'version', 'not', 'regular', 'version', 'knew', 'come', 'prepar', 'not', 'read', 'product', 'descript', 'surpris'], ['good'], ['excel', 'mobil', 'phone'], ['phone', 'lock', 'not', 'use', 'need', 'tha', 'pin', 'number', 'phome', 'supo', 'unlock'], ['excelent'], ['love', 'phone', 'bought', 'intern', 'client', 'littl', 'bit', 'scare', 'biggest', 'onlin', 'risk', 'ever', 'took', 'great', 'servic', 'samsung'], ['great', 'product', 'got', 'time'], ['excelent'], ['excel'], ['satisfi', 'product', 'price', 'servic', 'time'], ['good'], ['phone', 'never', 'work', 'right', 'not', 'happi', 'purchas', 'anoth', 'phone', 'take', 'place'], ['start', 'say', 'surpris', 'fast', 'got', 'said', 'week', 'two', 'day', 'like', 'phone', 'not', 'issu', 'sinc', 'start', 'use', 'thing', 'littl', 'disappoint', 'pictur', 'show', 'ear', 'piec', 'origin', 'box', 'hard', 'case', 'phone', 'came', 'got', 'phone', 'charger', 'realli', 'not', 'complain', 'got', 'great', 'phone', 'much', 'better', 'plus', 'not', 'beat', 'price', 'lovin', 'new', 'phone', 'daughter', 'want', 'one'], ['mother', 'want', 'simpl', 'mobil', 'good', 'qualiti', 'suit', 'favorit', 'brand', 'samsung', 'excel', 'idea', 'get', 'model', 'happi', 'new', 'cell', 'phone'], ['got', 'took', 'phone', 'love', 'one', 'costa', 'rica', 'seem', 'love', 'needless', 'say', 'work'], ['love', 'phone', 'most', 'not', 'phone', 'incred', 'leap', 'regardless', 'thus', 'phone', 'batteri', 'life', 'not', 'bad', 'watch', 'lot', 'show', 'movi', 'road', 'travel', 'lot', 'could', 'watch', 'star', 'war', 'movi', 'bright', 'enough', 'power', 'go', 'day', 'make', 'call', 'listen', 'music', 'brows', 'web', 'deliv', 'time', 'everyth', 'perfect', 'packag', 'i', 'would', 'say', 'go', 'think', 'get', 'awesom', 'devic', 'look', 'part'], ['love', 'love', 'new', 'phone', 'get', 'gold', 'made', 'even', 'better'], ['phone', 'nice', 'not', 'connect', 'anyth', 'via', 'bluetooth', 'not', 'mirror', 'screen', 'projector', 'touch', 'sensit', 'slow'], ['phone', 'super', 'slow', 'not', 'know', 'not', 'buy', 'phone'], ['love', 'phone', 'best', 'phone', 'i', 'ever', 'complaint', 'thus', 'far', 'phone'], ['product', 'fit', 'descript', 'servic', 'expect'], ['not', 'expect', 'blackout', 'spot', 'metro', 'area'], ['love', 'new', 'galaxi', 'note', 'terrif', 'phone', 'would', 'recommend', 'anyon', 'ship', 'great', 'condit', 'packag', 'fantast', 'satisfi'], ['bought', 'samsung', 'galaxi', 'note', 'love', 'amazon', 'nice', 'phone'], ['receiv', 'color', 'gold', 'platinum', 'bought', 'color', 'white'], ['excel', 'cell', 'iam', 'happi', 'purchas', 'worri', 'cell', 'came', 'new', 'not', 'problem', 'conect', 'straigh', 'talk', 'buis', 'seller', 'happi'], ['absolut', 'love', 'note', 'pray', 'version', 'not', 'charg', 'port', 'issu', 'origin', 'note'], ['great', 'phone', 'work', 'great', 'straight', 'talk', 'g', 'lte', 'older', 'phone', 'spec', 'great', 'even', 'compar', 'new', 'phone', 'hard', 'ever', 'give', 'star', 'phone', 'star', 'ship', 'quick', 'box', 'seem', 'generic', 'everyth', 'need', 'look', 'galaxi', 'would', 'choos', 'day', 'fact', 'dollar', 'dollar', 'might', 'choos', 'phone', 'check', 'vs', 'note', 'video', 'yt', 'make', 'choic'], ['niic'], ['good'], ['excel', 'love'], ['best', 'phone', 'could', 'made', 'love', 'phone', 'everyth', 'everyth', 'would', 'not', 'trade', 'anyth', 'not', 'go', 'back', 'iphon', 'actual', 'see', 'need', 'see', 'phone', 'screen', 'happi', 'phone', 'mini', 'comput', 'multipl', 'function', 'still', 'learn'], ['terribl', 'phone', 'lock', 'not', 'buy'], ['order', 'replac', 'phone', 'not', 'turn', 'even', 'batteri', 'tire', 'differ', 'work', 'batteri', 'return', 'one', 'hope', 'get', 'new', 'work', 'one', 'soo'], ['great', 'phone', 'seller', 'great'], ['bit', 'wari', 'base', 'review', 'buy', 'phone', 'happi', 'say', 'good', 'spout', 'much', 'love', 'phone', 'thing', 'need', 'phone', 'come', 'new', 'unless', 'buy', 'seller', 'one', 'phone', 'need', 'unlock', 'code', 'provid', 'seller', 'sticker', 'side', 'phone', 'box', 'easi', 'took', 'pic', 'scribbl', 'code', 'paper', 'artist', 'upload', 'bit', 'artsi', 'not', 'feel', 'like', 'download', 'photo', 'edit', 'app', 'reason', 'not', 'come', 'one', 'use', 'straight', 'talk', 'not', 'need', 'unlock', 'write', 'review', 'handwrit', 'convert', 'text', 'pic', 'ad', 'emphasi', 'note', 'take', 'screenshot', 'write', 'hold', 'button', 'stylus', 'touch', 'pen', 'screen', 'coupl', 'second', 'download', 'app', 'scribbl', 'photo', 'download', 'manual', 'take', 'time', 'read', 'featur', 'high', 'recommend', 'ton', 'peopl', 'never', 'peopl', 'not', 'need', 'featur', 'phone', 'offer', 'phone', 'work', 'work', 'mean', 'simplifi', 'task', 'busi', 'said', 'student', 'graphic', 'web', 'design', 'project', 'busi', 'work', 'want', 'tablet', 'draw', 'sketch', 'idea', 'take', 'note', 'not', 'found', 'one', 'reason', 'price', 'pretti', 'small', 'budget', 'could', 'accomplish', 'news', 'want', 'new', 'phone', 'bad', 'iphon', 'worthless', 'school', 'work', 'kill', 'two', 'bird', 'one', 'stone', 'get', 'phone', 'noth', 'prais', 'pen', 'amaz', 'accur', 'look', 'like', 'handwrit', 'someth', 'seen', 'microsoft', 'surfac', 'pro', 'must', 'wacom', 'technolog', 'stylus', 'superior', 'even', 'wacom', 'bamboo', 'stylus', 'alreadi', 'sketch', 'idea', 'new', 'websit', 'possibl', 'school', 'work', 'effici', 'endless', 'thing', 'calendar', 'sync', 'email', 'googl', 'drive', 'etc', 'make', 'easier', 'check', 'stuff', 'not', 'bother', 'spec', 'cover', 'life', 'go', 'batteri', 'use', 'purchas', 'someon', 'want', 'small', 'tablet', 'phone', 'afford', 'one', 'not', 'want', 'carri'], ['wish', 'could', 'give', 'star', 'phone', 'awesom', 'superfast', 'lot', 'ap', 'great', 'around'], ['today', 'receiv', 'samsung', 'galaxi', 'note', 'phone', 'surpris', 'stylus', 'chew', 'mark', 'may', 'dog', 'also', 'stereo', 'headset', 'miss', 'packag', 'expect', 'new', 'phone', 'unfortun', 'seem', 'use', 'one'], ['work', 'great'], ['even', 'though', 'intern', 'version', 'noth', 'lack', 'great', 'phone'], ['not', 'use', 'smart', 'phone', 'use', 'regular', 'phone', 'text', 'start', 'becom', 'problem', 'say', 'hi', 'much', 'start', 'type', 'like', 'well', 'like', 'full', 'keyboard', 'phone', 'not', 'make', 'mani', 'stroke', 'say', 'thing', 'look', 'like', 'blackberri', 'blueberri'], ['thought', 'buy', 'duplic', 'old', 'phone', 'use', 'year', 'problem', 'until', 'screen', 'went', 'blank', 'bought', 'hope', 'real', 'phone', 'work', 'well', 'time', 'twice', 'shut', 'restart', 'screen', 'froze', 'tell', 'not', 'go', 'last', 'verri', 'long', 'batteri', 'terribl', 'seem', 'lose', 'charg', 'way', 'quick', 'lost', 'oper', 'phone', 'twice', 'never', 'happen', 'last', 'phone', 'would', 'take', 'coupl', 'day', 'lose', 'charg', 'one', 'everi', 'night', 'lose', 'charg', 'tell', 'not', 'go', 'last', 'long', 'color', 'batteri', 'cover', 'not', 'match', 'phone', 'tell', 'not', 'factori', 'new', 'thought', 'bought', 'new', 'phone', 'lie', 'return', 'button', 'differ', 'symbol', 'supos', 'mayb', 'got', 'mix', 'piec', 'phone', 'differ', 'compani', 'verri', 'dissapoint', 'probabl', 'never', 'use', 'amazon'], ['bought', 'product', 'replac', 'prior', 'phone', 'crack', 'screen', 'set', 'easi', 'transfer', 'prior', 'account', 'thru', 'net', 'price', 'phone', 'cheap', 'look', 'android', 'phone', 'need', 'look', 'farther'], ['third', 'phone', 'first', 'two', 'phone', 'lot', 'not', 'like', 'southwest', 'ct', 'imho', 'made', 'sure', 'verizon', 'g', 'end', 'name', 'indic', 'c', 'mean', 'verizon', 'import', 'function', 'good', 'coverag', 'verizon', 'good', 'voic', 'command', 'reliabl', 'bluetooth', 'decent', 'text', 'abil', 'not', 'bad', 'devic', 'first', 'phone', 'samsung', 'slider', 'realli', 'beat', 'fakeberri', 'style', 'phone', 'text', 'phone', 'voic', 'dial', 'bluetooth', 'not', 'fulli', 'function', 'scratch', 'second', 'phone', 'samsung', 'look', 'much', 'like', 'phone', 'actual', 'heftier', 'nicer', 'case', 'kind', 'pad', 'move', 'cursor', 'look', 'like', 'paid', 'rather', 'phone', 'bluetooth', 'weirdest', 'i', 'ever', 'encount', 'wrote', 'review', 'amazon', 'time', 'hit', 'space', 'bar', 'text', 'equal', 'like', 'get', 'period', 'would', 'get', 'sentenc', 'like', 'scratch', 'get', 'verizon', 'connect', 'normal', 'bluetooth', 'abil', 'text', 'relat', 'easili', 'actual', 'find', 'type', 'fakeberri', 'much', 'easier', 'would', 'thought', 'worst', 'overlay', 'punctuat', 'thing', 'like', 'etc', 'start', 'lose', 'fine', 'eyesight', 'murder', 'hard', 'see', 'key', 'suppos', 'life', 'phone', 'get', 'use', 'common', 'thing', 'use', 'phone', 'new', 'bit', 'drag', 'not', 'phone', 'phone', 'expos', 'button', 'like', 'phone', 'not', 'lock', 'everi', 'time', 'goe', 'dark', 'featur', 'actual', 'like', 'easili', 'lock', 'hold', 'space', 'bar', 'put', 'purs', 'sit', 'desk', 'not', 'lock', 'everi', 'time', 'goe', 'dormant', 'great', 'midst', 'somewhat', 'sporad', 'text', 'exchang', 'somewhat', 'unusu', 'unlock', 'phone', 'press', 'soft', 'key', 'space', 'bar', 'rather', 'center', 'ok', 'button', 'seem', 'common', 'not', 'long', 'enough', 'comment', 'batteri', 'life', 'seem', 'better', 'terribl', 'batteri', 'life'], ['read', 'good', 'review', 'phone', 'price', 'right', 'order', 'phone', 'great', 'basic', 'phone', 'work', 'well', 'need', 'realli', 'like'], ['not', 'hear', 'call', 'broken'], ['product', 'great', 'great', 'tex', 'talk', 'wonder', 'pictur', 'messag', 'way', 'get', 'internet', 'would', 'explain', 'simpl', 'phone', 'otherwis', 'i', 'keep', 'not', 'i', 'use'], ['short', 'period', 'time', 'plug', 'charg', 'took', 'charg', 'insid', 'port', 'came'], ['phone', 'wonder', 'basic', 'like', 'touchscreen', 'well', 'mechan', 'keyboard', 'not', 'difficult', 'text', 'also', 'like', 'fact', 'person', 'unlik', 'verizon', 'new', 'basic', 'phone', 'offer', 'phone', 'came', 'speedili', 'ajust', 'one', 'prefer'], ['phone', 'came', 'deliv', 'promis', 'inform', 'oper', 'phone', 'complet', 'satisfi', 'packag', 'phone', 'excel', 'shape', 'would', 'recommend', 'everyon', 'need', 'new', 'phone', 'use', 'compani'], ['phone', 'post', 'not', 'match', 'receiv', 'mail', 'plus', 'not', 'get', 'money', 'back'], ['sqame', 'phone', 'great', 'recept', 'easi', 'use', 'phone', 'fit', 'recommend', 'other', 'nice', 'color'], ['quick', 'ship', 'phone', 'great', 'even', 'screen', 'cover', 'awesom', 'servic'], ['front', 'screen', 'fell', 'month', 'use', 'not', 'good', 'deal'], ['charger', 'not', 'work', 'phone', 'batteri', 'also', 'defect', 'return', 'phone', 'disappoint', 'bought', 'christma', 'present', 'daughter'], ['like'], ['cheaper', 'buy', 'phone', 'verizon', 'good', 'pick', 'pay', 'go', 'phone', 'want', 'smart', 'phone', 'good', 'touch', 'screen', 'keyboard', 'well', 'still', 'like', 'older', 'phone'], ['phone', 'work', 'realli', 'welli', 'love', 'kind', 'phone', 'easi', 'use', 'not', 'like', 'complic', 'phone'], ['great', 'look', 'everyth', 'one', 'got', 'defect', 'slide', 'screen', 'use', 'qwerti', 'keybaord', 'key', 'p', 'left', 'arrow', 'key', 'not', 'work', 'ver', 'sad', 'want', 'use', 'key', 'close', 'phone', 'use', 'touch', 'screen', 'slide', 'back', 'agian', 'continu', 'use', 'annoy', 'someim', 'restart', 'random', 'last', 'time', 'buy', 'cellphon', 'amamzon'], ['buy', 'cell', 'use', 'job', 'broke', 'one', 'job', 'gave', 'fell', 'hand', 'open', 'stood', 'get', 'crazi', 'pay', 'compani', 'decid', 'took', 'look', 'amazon', 'phone', 'year', 'one', 'occas', 'fell', 'deep', 'hole', 'street', 'full', 'water', 'amaz', 'noth', 'happen', 'mani', 'struggl', 'phone', 'pass', 'trough', 'never', 'fail', 'alway', 'work', 'even', 'broken', 'amaz', 'kept', 'use', 'pass', 'order', 'compani', 'give', 'back', 'way', 'gave', 'not', 'broken', 'wonder', 'price', 'way', 'go', 'pay', 'compani', 'good', 'qualiti', 'phone', 'resist', 'believ', 'not', 'touch', 'one', 'blackberri', 'iphon', 'love', 'phone', 'sad', 'give', 'back', 'quit', 'someday'], ['phone', 'one', 'far', 'phone', 'easi', 'setup', 'got', 'use', 'manual', 'came', 'tell', 'basic', 'find', 'full', 'pdf', 'manual', 'onlin', 'charg', 'batteri', 'full', 'left', 'desk', 'night', 'wake', 'batteri', 'light', 'flash', 'not', 'realli', 'expect', 'refurbish', 'phone', 'bought', 'anoth', 'new', 'batteri', 'hope', 'fix', 'problem'], ['phone', 'not', 'work', 'time', 'got', 'dad', 'would', 'not', 'upgrad', 'contract', 'not', 'happi', 'not', 'want', 'work', 'time'], ['got', 'time', 'easi', 'phone', 'use', 'need', 'phone'], ['not', 'like', 'turn', 'speaker', 'talk', 'phone', 'ring'], ['love', 'everyth', 'phone', 'definit', 'suit', 'need', 'need', 'make', 'receiv', 'call', 'also', 'love', 'rug', 'look', 'look', 'like', 'could', 'handl', 'lot'], ['use', 'telephon', 'approxim', 'week', 'construct', 'appear', 'tank', 'phone', 'appear', 'shut', 'three', 'time', 'not', 'abl', 'place', 'call', 'open', 'compart', 'remov', 'batteri', 'send', 'back', 'occur'], ['expect', 'strong', 'reliabl', 'good', 'look', 'effect'], ['got', 'replac', 'hubbi', 'phone', 'not', 'get', 'send', 'receiv', 'pictur', 'otherwis', 'work', 'like', 'one'], ['got', 'not', 'scratch', 'everyth', 'work', 'far', 'know', 'christma', 'offici', 'open', 'littl', 'bit', 'mess', 'wrap', 'great'], ['satisfi', 'withi', 'purchas'], ['need', 'perfect', 'phone', 'stand', 'rough', 'environ', 'perfect', 'phone', 'great', 'condit', 'thank'], ['recent', 'bought', 'phone', 'ehom', 'tech', 'happi', 'purchas', 'found', 'phone', 'would', 'not', 'charg', 'coupl', 'day', 'later', 'receiv', 'contact', 'compani', 'answer', 'one', 'email', 'phone', 'ask', 'exchang', 'complet', 'ignor', 'not', 'recommend', 'buy', 'compani'], ['not', 'think', 'play', 'loud', 'enough', 'clear', 'enough', 'work', 'phone', 'return', 'also', 'screen', 'small'], ['samsung', 'rugbi', 'offer', 'wireless', 'solut', 'arriv', 'day', 'ahead', 'schedul', 'product', 'new', 'origin', 'ship', 'contain', 'bijan', 'wireless', 'solut', 'indic', 'product', 'new', 'state', 'amazon', 'portal', 'phone', 'work', 'without', 'flaw', 'thus', 'far', 'capabl', 'provid', 'recept', 'area', 'signal', 'qualiti', 'poor', 'rugbi', 'milspec', 'design', 'ensur', 'durabl', 'yet', 'light', 'weight', 'form', 'factor', 'featur', 'pack', 'rugbi', 'utliiz', 'network', 'allow', 'sim', 'card', 'exchang', 'ideal', 'world', 'phone', 'suit', 'use', 'global', 'communic', 'environ', 'applaud', 'wireless', 'solut', 'provid', 'product', 'capabl'], ['old', 'phone', 'broke', 'need', 'new', 'one', 'fast', 'order', 'arriv', 'faster', 'expect', 'item', 'much', 'better', 'expect', 'qualiti', 'phone', 'last'], ['got', 'time', 'easi', 'phone', 'use', 'need', 'phone'], ['want'], ['pleas', 'phone', 'excel', 'servic', 'ship', 'fast', 'problem', 'thank', 'much'], ['bought', 'mom', 'gift', 'use', 'outsid', 'countri', 'not', 'work', 'well', 'even', 'gsm', 'worldwid', 'not', 'advis', 'phone', 'list', 'money'], ['thank', 'still', 'care'], ['would', 'give', 'one', 'star'], ['one', 'first', 'rugbi', 'phone', 'love', 'one', 'not', 'beefi', 'not', 'ugli', 'either', 'yellow', 'definit', 'cat', 'proof', 'ask', 'volum', 'highest', 'set', 'still', 'weak', 'figur', 'not', 'hear', 'go', 'set', 'sound', 'profil', 'switch', 'outdoor', 'mode', 'voila', 'leav', 'much', 'louder', 'download', 'rington', 'pc', 'load', 'onto', 'rugbi', 'requir', 'instal', 'samsung', 'kie', 'softwar', 'instal', 'made', 'get', 'altern', 'rington', 'onto', 'phone', 'breez', 'everi', 'time', 'phone', 'ring', 'hear', 'tripod', 'war', 'world', 'remak', 'general', 'appropri', 'rugbi', 'work', 'consum', 'cellular', 'like', 'restrict', 'phone', 'usag', 'talk', 'text', 'outsid', 'not', 'palmtop', 'comput', 'us', 'refus', 'get', 'one', 'anyway', 'like', 'brows', 'screen', 'addict', 'not', 'not', 'phone', 'want', 'good', 'durabl', 'reliabl', 'phone', 'count', 'year', 'come', 'awesom', 'standbi', 'talk', 'time', 'definit', 'i', 'yet', 'find', 'phone', 'squeez', 'hour', 'batteri', 'chang', 'like', 'samsung', 'everi', 'samsung', 'phone', 'i', 'averag', 'batteri', 'life', 'grin', 'everi', 'time', 'cowork', 'friend', 'phone', 'poop', 'hey', 'went', 'pretti', 'bell', 'whistl', 'rather', 'sad', 'pay', 'much', 'phone', 'servic', 'yet', 'constant', 'unabl', 'make', 'call', 'rememb', 'charg', 'mine', 'least', 'week', 'phone', 'could', 'not', 'recommend', 'comput', 'well', 'go', 'get', 'one', 'instead'], ['nice', 'phone', 'good', 'bought', 'use', 'happi', 'decid', 'phone', 'want'], ['husband', 'plumber', 'hard', 'phone', 'love', 'phone', 'previous', 'version', 'hope', 'continu', 'make', 'phone'], ['purchas', 'phone', 'hubbi', 'use', 'phone', 'long', 'replac', 'ran', 'phone', 'loader', 'good', 'phone', 'not', 'suggest', 'run', 'ton', 'piec', 'equip', 'loader'], ['phone', 'uncl', 'i', 'sure', 'love'], ['work', 'great', 'husband', 'need', 'rug', 'enough', 'abus', 'electron'], ['one', 'not', 'better', 'anoth', 'rugbi', 'one', 'headset', 'accessori', 'convertor', 'one', 'without', 'pleas', 'buy', 'care'], ['rugbi', 'came', 'cover', 'charg', 'outlet', 'also', 'came', 'batteri', 'would', 'not', 'hold', 'charg', 'two', 'hour', 'tri', 'contact', 'seller', 'multipl', 'time', 'unsuccess', 'rugbi', 'good', 'phone', 'normal', 'not', 'one', 'final', 'put', 'old', 'batteri', 'last', 'rugbi', 'seem', 'work', 'let', 'know', 'anyth', 'chang', 'not', 'recommend', 'seller'], ['compat', 'straight', 'talkheavi', 'duti', 'menno', 'issuesveri', 'pleas', 'still', 'not', 'figur', 'set', 'internet', 'straight', 'talk', 'though', 'phone'], ['i', 'millwright', 'go', 'gone', 'lot', 'phone', 'not', 'one', 'not', 'bell', 'whistl', 'phone', 'realli', 'not', 'phone', 'top', 'line', 'class', 'price', 'rang', 'thing', 'not', 'like', 'charg', 'use'], ['work', 'great', 'month', 'turn', 'briefli', 'die'], ['problem', 'charg', 'think', 'need', 'new', 'charger', 'work', 'great', 'good', 'price'], ['want', 'text', 'talk', 'phone', 'good', 'sprint', 'start', 'drop', 'item', 'phone', 'could', 'advic', 'not', 'wast', 'time', 'phone'], ['cute'], ['disappoint', 'phone', 'look', 'feel', 'like', 'demo', 'basic', 'function', 'person', 'opinion', 'phone', 'not', 'worth', 'buck', 'total'], ['not', 'product', 'appear', 'tittl', 'not', 'phone', 'not', 'unlock', 'come', 'screen', 'phone', 'freez', 'pay', 'unlock', 'phone', 'pay', 'unlock', 'code', 'not', 'come', 'sell', 'anoth', 'thing', 'realli', 'bad'], ['agre', 'daisi', 'review', 'phone', 'good', 'howev', 'biggest', 'con', 'not', 'abl', 'turn', 'vibrat', 'mode', 'complet', 'return', 'phone', 'use', 'two', 'day'], ['got', 'phone', 'order', 'pick', 'wifi', 'mani', 'peopl', 'pick', 'wifi', 'unlock', 'browser', 'horribl', 'usual', 'minut', 'brows', 'would', 'stop', 'give', 'memori', 'error', 'call', 'custom', 'servic', 'center', 'keypad', 'would', 'not', 'let', 'enter', 'menu', 'option', 'camera', 'horribl', 'mani', 'not', 'download', 'wifi', 'dollar', 'get', 'lg', 'optimus', 'unlock', 'support', 'latest', 'androhid', 'froyo', 'great', 'browser', 'anoth', 'stupid', 'thing', 'phone', 'head', 'phone', 'jack', 'propitiatori', 'not', 'normal', 'jack', 'stay', 'away', 'stupid', 'phone', 'get', 'someth', 'android', 'base'], ['want', 'phone', 'replac', 'lg', 'lost', 'key', 'repeat', 'price', 'lg', 'two', 'year', 'ago', 'plus', 'gps', 'bunch', 'version', 'got', 'came', 'polish', 'document', 'polish', 'navig', 'app', 'still', 'figur', 'way', 'get', 'english', 'version', 'realli', 'not', 'matter', 'not', 'realli', 'get', 'lost', 'littl', 'part', 'world', 'googl', 'map', 'work', 'well', 'enough', 'get', 'direct', 'shop', 'stuff', 'not', 'realli', 'gps', 'work', 'fine', 'take', 'lock', 'five', 'six', 'satellit', 'give', 'lat', 'long', 'alt', 'alt', 'chang', 'fair', 'rapid', 'even', 'stay', 'inaccur', 'interfac', 'fair', 'respons', 'stick', 'slow', 'coupl', 'time', 'touch', 'screen', 'qwerti', 'slight', 'disappoint', 'landscap', 'opinion', 'phone', 'work', 'good', 'recept', 'bunch', 'neat', 'featur', 'minor', 'issu', 'not', 'shabbi', 'not', 'want', 'spend', 'small', 'fortun', 'unlock', 'phone', 'not', 'go', 'far', 'base', 'one'], ['el', 'teleffunciona', 'excelent', 'funciona', 'en', 'la', 'red', 'del', 'ice', 'de', 'costa', 'rica', 'por', 'si', 'tienen', 'la', 'duda', 'si', 'compran', 'est', 'telefono', 'asegurec', 'que', 'sea', 'version', 'l', 'de', 'latinoamerica', 'que', 'es', 'la', 'que', 'funciona', 'con', 'la', 'banda', 'del', 'ice', 'telefono', 'es', 'muy', 'bonito', 'super', 'funcion', 'nada', 'que', 'envidiarl', 'un', 'iphon', 'lo', 'unico', 'malo', 'que', 'veo', 'hasta', 'el', 'momento', 'es', 'que', 'alguno', 'programa', 'se', 'almacenan', 'en', 'la', 'memoria', 'interna', 'la', 'capacidad', 'del', 'telefono', 'es', 'muy', 'poco'], ['buen', 'producto'], ['memori', 'small'], ['satisfi', 'excel', 'throughout'], ['phone', 'not', 'good', 'charger', 'defect', 'phone', 'problem', 'not', 'come', 'turn', 'realli', 'dissapoint', 'not', 'think', 'phone', 'new', 'realli', 'need', 'replac', 'phone', 'charg', 'phone', 'last', 'night', 'baterri', 'dead', 'alreadi', 'everyth', 'not', 'new', 'seller', 'disappoint', 'demand', 'amswer'], ['good', 'qualiti', 'product', 'mani', 'necessari', 'featur', 'batteri', 'charg', 'stay', 'longer', 'light', 'weight', 'product'], ['person', 'prefer', 'blackberri', 'bought', 'phone', 'brother', 'i', 'would', 'recommend', 'samsung', 'galaxi', 'anyon', 'interest'], ['todo', 'perfecto', 'como', 'lo', 'describianlo', 'recomiendo', 'sigan', 'perfecto', 'como', 'lo', 'describianlo', 'recomiendo', 'sigan', 'asi', 'mejor', 'imposibletodo', 'perfecto', 'como', 'lo', 'describianlo', 'recomiendo', 'sigan', 'perfecto', 'como', 'lo', 'describianlo', 'recomiendo', 'sigan', 'asi', 'mejor', 'impos'], ['fanci', 'phone', 'multipl', 'applic', 'easi', 'use', 'nice', 'design', 'let', 'stay', 'touch', 'friend', 'news', 'trought', 'social', 'network'], ['samsung', 'recommend', 'friend', 'whoever', 'need', 'unlock', 'intern', 'use', 'gsm', 'especi', 'nigeria'], ['start', 'not', 'download', 'pic', 'upload', 'pic', 'internet', 'spotti', 'best', 'phone', 'mani', 'glitch', 'though', 'charg', 'fast', 'also', 'die', 'fast', 'spend', 'hour', 'phone', 'readi', 'charg', 'complet', 'dislik', 'phone', 'mani', 'level', 'galaxi', 'sii', 'die', 'need', 'new', 'one', 'quick', 'made', 'huge', 'error', 'one'], ['purchas', 'phone', 'two', 'week', 'later', 'purchas', 'new', 'batteri', 'phone', 'batteri', 'not', 'take', 'charg'], ['phone', 'complet', 'smartphon', 'sens', 'high', 'speed', 'internet', 'good', 'camera', 'word', 'excel', 'pp', 'acrobat', 'compat', 'manag', 'softwar', 'gb', 'sd', 'card', 'capac', 'etc', 'conveni', 'price', 'gorilla', 'glass', 'reliabl', 'construct', 'seem', 'capabl', 'withstand', 'accident', 'fall', 'enough', 'ram', 'memori', 'normal', 'pleas', 'phone', 'complaint', 'video', 'record', 'perform', 'better'], ['product', 'perfect', 'condit', 'excel', 'devic', 'unlock', 'good', 'size', 'use', 'visibl', 'applic', 'thank', 'much'], ['good', 'phone', 'work', 'perfect', 'thought', 'would', 'problem', 'unlock', 'work', 'great', 'recommend', 'friend'], ['bought', 'friend', 'love', 'compar', 'phone', 'one', 'surpass', 'expect', 'price', 'featur', 'not', 'complain'], ['not', 'happi', 'phone', 'everytim', 'turn', 'restart', 'hour', 'therefor', 'i', 'forc', 'keep', 'time', 'also', 'batteri', 'last', 'hour', 'fulli', 'charg', 'mean', 'turn', 'restar'], ['camera', 'not', 'work', 'fone', 'take', 'forev', 'like', 'turn', 'wast', 'money'], ['good', 'phone', 'good', 'relationship', 'cours', 'phone', 'fast', 'basic', 'funtion', 'one', 'smartphon', 'fine'], ['good', 'model', 'older', 'android', 'version', 'abl', 'connect', 'via', 'wifi', 'immedi', 'recogn', 'purchas', 'soni', 'phone', 'amazon', 'found', 'follow', 'model', 'soni', 'eleg', 'clear'], ['previous', 'given', 'item', 'good', 'review', 'sinc', 'first', 'use', 'work', 'expect', 'not', 'last', 'long', 'short', 'wrote', 'review', 'start', 'fail', 'random', 'screen', 'not', 'respons', 'black', 'random', 'phone', 'continu', 'whatev', 'given', 'moment', 'told', 'technic', 'support', 'phone', 'reput', 'fail', 'wish', 'knew', 'better', 'advic', 'not', 'buy', 'phone'], ['good', 'phone', 'total', 'recomend', 'batteri', 'life', 'good', 'use', 'whole', 'day', 'wifi', 'text', 'call', 'hour', 'good', 'phone'], ['worth', 'money', 'good', 'touch', 'screen', 'inch', 'money', 'worth', 'money', 'worth', 'moneyworth', 'moneyworth', 'moneyworth', 'money'], ['live', 'rural', 'area', 'limit', 'signal', 'nightmar', 'need', 'abl', 'communic', 'far', 'flung', 'area', 'farm', 'enough', 'research', 'find', 'mayb', 'quad', 'phone', 'would', 'four', 'bar', 'phone', 'go', 'loud', 'need', 'problem', 'hear', 'phone', 'purs', 'not', 'normal', 'get', 'signal', 'home', 'use', 'town', 'use', 'call', 'help', 'i', 'phone', 'easi', 'use', 'tutori', 'help', 'understand', 'got', 'bit', 'hear', 'loss', 'one', 'clear', 'talk', 'dial', 'talk', 'get', 'direct', 'like', 'gps', 'talk', 'send', 'messag', 'take', 'note', 'well', 'not', 'know', 'everyth', 'yet', 'i', 'neglect', 'thing', 'play', 'morn', 'awesom', 'phone', 'idiot', 'use', 'would', 'patient', 'get', 'one', 'step', 'took', 'back', 'appl', 'harder', 'phone', 'not', 'inexpens', 'cell', 'phone', 'go', 'quick', 'deliv', 'day', 'middl', 'wheat', 'field', 'sw', 'kansa'], ['bought', 'trip', 'spain', 'sore', 'disappoint', 'terribl', 'screen', 'pictur', 'list', 'seem', 'touch', 'unstabl', 'os', 'bare', 'enough', 'storag', 'run', 'app', 'come', 'includ', 'ridicul', 'drm', 'app', 'could', 'not', 'get', 'critic', 'app', 'like', 'facebook', 'tripit', 'chrome', 'work', 'phone', 'use', 'much', 'microsd', 'card', 'phone', 'unwork', 'even', 'tri', 'instal', 'sever', 'third', 'parti', 'android', 'rom', 'gave', 'bought', 'lg', 'phone', 'instead'], ['buy', 'samsung', 'ace', 'bad', 'two', 'month', 'work', 'half', 'screen', 'solut', 'replac', 'screen', 'thank'], ['gran', 'smartphon', 'para', 'el', 'precio', 'excelent', 'prestacion', 'super', 'liviano', 'con', 'un', 'muy', 'buen', 'procesador', 'sorprendió', 'gratament', 'el', 'hecho', 'de', 'que', 'aunqu', 'en', 'las', 'especifiacion', 'del', 'producto', 'dice', 'que', 'trae', 'android', 'realment', 'vino', 'con', 'android', 'anda', 'muuy', 'cuanto', 'al', 'envío', 'fue', 'inmejor', 'incluso', 'más', 'rápido', 'de', 'lo', 'que', 'esperaba'], ['afford', 'met', 'expect', 'except', 'android', 'system', 'not', 'upgrad', 'henc', 'bbm', 'not', 'instal', 'recommend', 'low', 'budget', 'android', 'phone', 'not', 'bbm', 'great', 'deal', 'otherwis', 'great', 'phone'], ['brand', 'celphon', 'puerto', 'rico', 'bad', 'celular', 'carrier', 'featur', 'not', 'aford', 'pleas', 'not', 'wast', 'money', 'brand', 'celphon'], ['good', 'phone', 'new', 'android', 'user', 'phone', 'not', 'not', 'say', 'anyth'], ['not', 'geek', 'want', 'not', 'complex', 'touch', 'screen', 'phone', 'good', 'one'], ['galaxi', 'whwewver', 'version', 'great', 'gadget', 'excellent', 'cell', 'phone', 'recomend', 'rate', 'product', 'good'], ['like', 'phone', 'easi', 'use', 'good', 'app', 'fast', 'process', 'phone', 'keep', 'fastest', 'app', 'user'], ['first', 'smartphon', 'have', 'read', 'mani', 'review', 'articl', 'exchang', 'experi', 'firend', 'not', 'geek', 'hightech', 'expert', 'common', 'guy', 'like', 'social', 'netwok', 'game', 'brows', 'live', 'venezuela', 'carrier', 'movilnet', 'took', 'sim', 'card', 'gsm', 'old', 'mobil', 'phone', 'huawei', 'wualaa', 'start', 'make', 'call', 'samsung', 'android', 'great', 'part', 'mobil', 'market', 'usa', 'europ', 'south', 'america', 'recomend', 'gave', 'star', 'configur', 'new', 'router', 'mbps', 'speed', 'tell', 'later', 'thank', 'amazon', 'good', 'seller', 'contento', 'satisfecho'], ['muy', 'buen', 'producto', 'buena', 'presentación', 'excelent', 'calidad', 'presentó', 'alguno', 'problema', 'inicial', 'con', 'twitter', 'los', 'cual', 'fueron', 'corregido', 'buena', 'compra'], ['got', 'phone', 'month', 'ago', 'work', 'pretti', 'good', 'thing', 'not', 'realli', 'like', 'like', 'sometim', 'realli', 'slow', 'normal', 'thing', 'like', 'tri', 'get', 'messag', 'unlock', 'phone', 'also', 'not', 'lot', 'app', 'alreadi', 'intern', 'memori', 'basic', 'full', 'wish', 'came', 'intern', 'memori', 'batteri', 'life', 'alright', 'could', 'better', 'get', 'annoy', 'less', 'half', 'batteri', 'life', 'not', 'let', 'use', 'camera', 'minor', 'issu', 'think', 'phone', 'pretti', 'good'], ['good', 'cell'], ['bien'], ['exelnt'], ['good', 'phone', 'nice', 'pretti', 'color', 'howev', 'would', 'defin', 'prefer', 'phone', 'come', 'screen', 'protector'], ['thank'], ['husband', 'love', 'phone', 'red', 'one', 'unfortun', 'not', 'hold', 'wash', 'machin', 'anyway', 'contract', 'not', 'renew', 'yet', 'want', 'anoth', 'phone', 'like', 'one', 'order', 'one', 'differ', 'previous', 'phone', 'color', 'not', 'text', 'use', 'internet', 'good', 'basic', 'phone'], ['want', 'simpl', 'cell', 'phone', 'one', 'work', 'well', 'call', 'easili', 'made', 'receiv', 'clariti', 'drawback', 'batteri', 'requir', 'daili', 'recharg'], ['phone', 'came', 'almost', 'perfect', 'condit', 'pop', 'sim', 'card', 'work'], ['purchas', 'phone', 'wife', 'requir', 'easi', 'use', 'easi', 'read', 'must', 'bluetooth', 'not', 'phone', 'seem', 'negat', 'limit', 'number', 'preload', 'ring', 'tone', 'abil', 'brows', 'web', 'not', 'priorti', 'us', 'phone'], ['not', 'want', 'sound', 'sexist', 'wife', 'refus', 'move', 'modern', 'day', 'come', 'cell', 'phone', 'basic', 'better', 'phone', 'step', 'wife', 'not', 'text', 'take', 'photo', 'read', 'text', 'limit', 'not', 'stupid', 'choic', 'complain', 'phone', 'complic', 'sinc', 'learn', 'use', 'enough', 'get', 'charger', 'broke', 'first', 'day', 'got', 'contact', 'seller', 'sent', 'addit', 'charg', 'satisfi'], ['love', 'littl', 'slider', 'eas', 'use', 'small', 'form', 'factor', 'not', 'smart', 'tablet', 'great', 'want', 'basic', 'easi', 'carri', 'simpl', 'use', 'great', 'batteri', 'life'], ['phone', 'sold', 'unlock', 'not', 'lock', 'also', 'not', 'unlock', 'wast', 'money', 'time', 'far', 'worst', 'amazon', 'purchas', 'grr'], ['product', 'came', 'quick', 'describ', 'pleas', 'purchas', 'bought', 'two', 'servic'], ['nice', 'purchas'], ['first', 'smart', 'phone', 'noth', 'realli', 'compar', 'great', 'far', 'issu', 'network', 'not', 'believ', 'anyth', 'phone', 'great', 'phone', 'far', 'complaint'], ['fine', 'phone'], ['love', 'thank', 'phone', 'prombl', 'phone', 'look', 'great'], ['work', 'great', 'metro', 'pcs', 'love'], ['good', 'purchas', 'phone', 'arriv', 'time', 'good', 'condit', 'work', 'good'], ['daughter', 'absolut', 'love', 'phone'], ['receiv', 'phone', 'activ', 'set', 'everyth', 'phone', 'realiz', 'speaker', 'not', 'work', 'right', 'activ', 'fee', 'time', 'invest', 'ring', 'sound', 'yes', 'everyth', 'verizon', 'custom', 'servic', 'verifi', 'sound', 'not', 'work', 'choic', 'return', 'tri', 'use', 'differ', 'vendor', 'least', 'refurbish', 'mean', 'second', 'phone', 'amazon', 'vendor', 'past', 'two', 'week', 'first', 'phone', 'not', 'unlock', 'advertis', 'return', 'disappoint', 'amazon', 'two', 'vendor', 'not', 'deserv', 'busi', 'view', 'techarvard', 'lexington', 'ky', 'suppli', 'refurbish', 'phone'], ['great', 'product', 'thank'], ['bought', 'replac', 'older', 'phone', 'daughter', 'not', 'want', 'smart', 'phone', 'not', 'need', 'come', 'parent', 'sourc', 'half', 'way', 'decent', 'non', 'smart', 'phone', 'phone', 'would', 'heat', 'like', 'oven', 'charg', 'batteri', 'fact', 'would', 'turn', 'hot', 'stay', 'away'], ['excel'], ['bought', 'phone', 'daughter', 'al', 'lot', 'text', 'say', 'realli', 'like', 'easi', 'use', 'arriv', 'quick', 'packag', 'well', 'pleas'], ['phone', 'awesom', 'easi', 'use', 'love', 'color', 'problem', 'charg', 'work', 'perfect', 'love', 'love', 'love'], ['suppost', 'ben', 'referbish', 'stillnumb', 'memori', 'would', 'not', 'hold', 'charg'], ['bought', 'phone', 'oct', 'alreadi', 'broken', 'not', 'turn', 'work', 'batteri', 'new', 'one', 'tri', 'differ', 'charger', 'luck', 'bad'], ['phone', 'drop', 'call', 'lot', 'not', 'get', 'help'], ['great', 'phone', 'good', 'senior', 'elder', 'use', 'unlock', 'afford', 'comfort', 'hand'], ['phone', 'stop', 'work', 'soon', 'arriv', 'volum', 'not', 'work', 'without', 'headphon', 'phone', 'consid', 'warranti', 'samsung', 'disappoint', 'samsung', 'not', 'honor', 'warranti', 'even', 'though', 'phone', 'bought', 'amazon'], ['look', 'phone', 'work', 'great', 'not', 'want', 'toboth', 'high', 'tech', 'stuff', 'phone', 'bought', 'phone', 'husband', 'simpl', 'easi', 'use'], ['good', 'phone', 'not', 'want', 'frilli', 'extra', 'simpl', 'easi', 'camera', 'speaker', 'phone', 'text', 'sms', 'pictur', 'messag', 'larg', 'buttonsfor', 'not', 'want', 'squint', 'dial', 'number', 'phone', 'replac', 'formi', 'mom', 'crappi', 'phone', 'broke', 'thus', 'far', 'great', 'replac', 'work', 'fine'], ['look', 'good', 'call', 'sound', 'qualiti', 'would', 'easi', 'text', 'phone', 'perfect', 'without', 'extra', 'featur', 'app', 'not', 'want', 'spend', 'money', 'begin', 'own', 'use', 'phone', 'week', 'speaker', 'volum', 'clariti', 'well', 'hold', 'ear', 'excel', 'great', 'simpl', 'phone', 'look', 'basic', 'function', 'nice', 'size', 'not', 'bulki', 'fit', 'small', 'pocket', 'light', 'connect', 'bluetooth', 'easili', 'work', 'well', 'thing', 'phone', 'made', 'plastic', 'make', 'want', 'get', 'rubber', 'cover', 'case', 'fall', 'get', 'scratch', 'pleas', 'phone'], ['not', 'like', 'smartphon', 'disappoint', 'lg', 'gave', 'renew', 'contract', 'wife', 'realli', 'nice', 'samsung', 'order', 'one', 'not', 'phone', 'wife', 'realli', 'nice', 'someon', 'use', 'phone', 'talk', 'peopl', 'good', 'sound', 'qualiti', 'decent', 'camera', 'much', 'solid', 'built', 'lg', 'phone', 'would', 'recommend', 'phone', 'anyon', 'look', 'good', 'basic', 'phone'], ['work', 'great'], ['bought', 'telephon', 'one', 'month', 'ago', 'best', 'thing', 'like', 'phone', 'standby', 'time', 'least', 'one', 'week', 'addit', 'power', 'batteri', 'samsung', 'user', 'friend', 'menu', 'style', 'simpl', 'long', 'last', 'easi', 'use', 'telephon', 'need', 'cheap', 'use', 'telephon', 'buy', 'phone', 'without', 'hesit'], ['phone', 'went', 'swim', 'need', 'new', 'one', 'fast', 'insur', 'stop', 'cover', 'alreadi', 'replac', 'two', 'phone', 'past', 'year', 'came', 'amazon', 'find', 'cheap', 'decent', 'smart', 'phone', 'reason', 'phone', 'not', 'cost', 'much', 'qualiti', 'cheap', 'way', 'old', 'school', 'phone', 'slow', 'first', 'week', 'car', 'charger', 'stop', 'work', 'week', 'later', 'one', 'prong', 'broke', 'wall', 'charger', 'random', 'not', 'make', 'mistak', 'littl', 'extra', 'money', 'better', 'phone'], ['seller', 'phone', 'max', 'mention', 'imei', 'number', 'phone', 'samsung', 'galaxi', 'vibrant', 'unlock', 'modifi', 'origin', 'imei', 'number', 'phone', 'zero', 'sim', 'card', 'would', 'not', 'work', 'phone', 'took', 'store', 'check', 'imei', 'number', 'show', 'zero', 'told', 'not', 'work', 'sim', 'card', 'told', 'may', 'phone', 'stolen', 'someon', 'chang', 'imei', 'number', 'block', 'look', 'new', 'not', 'sure', 'someon', 'would', 'chang', 'imei', 'number', 'new', 'phone', 'set', 'paid', 'phone', 'max', 'receiv', 'product', 'samsung', 'galaxi', 'vibrant', 'unlock', 'wrong', 'alter', 'case', 'seller', 'phone', 'max', 'fail', 'mention', 'would', 'not', 'buy', 'anyth', 'ever'], ['receiv', 'phone', 'estim', 'arriv', 'time', 'phone', 'fine', 'look', 'box', 'saw', 'includ', 'phone', 'wall', 'charger', 'not', 'includ', 'micro', 'usb', 'cabl', 'micro', 'sd', 'card', 'even', 'batteri', 'not', 'genuin', 'impress', 'phone', 'new', 'seal', 'box', 'box', 'mention', 'phone', 'come', 'usb', 'cabl', 'sd', 'card', 'movi', 'avatar', 'also', 'ear', 'bud', 'got', 'none', 'perk', 'also', 'brought', 'smartphon', 'seller', 'amazon', 'includ', 'least', 'sd', 'card', 'genuin', 'batteri', 'earbud', 'sometim', 'screen', 'protector', 'also', 'includ', 'seller', 'ross', 'cellular', 'includ', 'noth', 'phone', 'wall', 'contact', 'seller', 'said', 'lower', 'price', 'compens', 'extra', 'accessori', 'believ', 'not', 'true'], ['came', 'fast', 'love', 'phone', 'littl', 'slow', 'overal', 'love', 'buy', 'futur'], ['never', 'regret', 'phone', 'far', 'though', 'setback', 'get', 'use', 'one', 'instead', 'brand', 'new', 'time', 'purchas', 'promis', 'get', 'rebat', 'never', 'came', 'help', 'full', 'confid', 'pleas'], ['great', 'phone', 'love', 'one', 'thing', 'wrong', 'keep', 'freez', 'restart', 'phone', 'not', 'sure', 'phone', 'custom', 'text', 'app', 'either', 'way', 'love', 'phone', 'one', 'happi', 'custom'], ['reciv', 'phone', 'work', 'perfect', 'problem', 'not', 'yet', 'check', 'unlock', 'part', 'plan', 'use', 'intern', 'travel', 'countri', 'sim', 'card', 'phone', 'work', 'perfect', 'prepaid', 'tmob', 'unlimit', 'data', 'text', 'talk', 'best', 'deal', 'around', 'buy', 'iphon', 'pay', 'perhap', 'servic', 'probabl', 'much', 'actal', 'pay', 'phone', 'month', 'insurd', 'ensquar', 'amaz', 'amount', 'research', 'feel', 'best', 'bang', 'buck', 'near', 'tough', 'upfront', 'best', 'invest', 'make', 'admit', 'com', 'itun', 'iphon', 'android', 'not', 'easi', 'fidd', 'also', 'customiz', 'previous', 'tmobil', 'pay', 'go', 'sim', 'went', 'right', 'upgrad', 'acct', 'acct', 'onlin', 'without', 'talk', 'anyon', 'easi', 'quick', 'number', 'would', 'recommend', 'phone', 'plan'], ['i', 'new', 'kind', 'phone', 'realli', 'like', 'featur', 'conveni', 'check', 'messag', 'read', 'kindl', 'book', 'thing', 'could', 'not', 'regular', 'good', 'bargain'], ['wors', 'phone', 'ever', 'regret', 'buy', 'phone', 'not', 'download', 'everi', 'time', 'tri', 'download', 'problem', 'post', 'pleas', 'stop', 'sell', 'phone', 'good', 'charg', 'phone', 'everi', 'two', 'hour', 'tri', 'make', 'call', 'soon', 'dial', 'number', 'phone', 'would', 'go', 'blank', 'not', 'see', 'anyth', 'annoy'], ['noth', 'inconveni', 'keep', 'send', 'phone', 'back', 'would', 'not', 'work', 'proper', 'time', 'said', 'forget'], ['although', 'knew', 'use', 'phone', 'certain', 'not', 'expect', 'previous', 'owner', 'call', 'histori', 'intact', 'although', 'seller', 'not', 'specif', 'claim', 'recondit', 'quit', 'rude', 'point', 'return', 'came', 'disappoint', 'shock', 'find', 'previous', 'owner', 'person', 'phone', 'number', 'data', 'still', 'phone', 'bewar', 'empti', 'phone', 'turn', 'sell', 'never', 'know', 'end'], ['inherit', 'blackberri', 'curv', 'sister', 'ex', 'cousin', 'i', 'verizon', 'could', 'not', 'afford', 'xtra', 'data', 'plan', 'use', 'mb', 'month', 'anyway', 'bought', 'inexpens', 'think', 'like', 'report', 'blackberri', 'lost', 'stolen', 'switch', 'phone', 'number', 'phone', 'littl', 'advic', 'data', 'plan', 'smartphon', 'longer', 'afford', 'cut', 'spend', 'switch', 'go', 'back', 'basic', 'plain', 'phone', 'data', 'plan', 'not', 'think', 'find', 'way', 'xact', 'call', 'provid', 'verizon', 'sprint', 'whatev', 'report', 'phone', 'data', 'plan', 'longer', 'afford', 'lost', 'stolen', 'get', 'ya', 'know', 'life', 'not', 'understand', 'someon', 'would', 'need', 'want', 'inch', 'hold', 'air', 'hour', 'front', 'face', 'overpr', 'phone', 'watch', 'damn', 'netflix', 'movi', 'damn', 'peopl', 'movi', 'friggin', 'size', 'finger', 'nail', 'gosh', 'sake', 'technolog', 'today', 'xact', 'commerci', 'say', 'peopl', 'use', 'smartphon', 'dumb', 'thing', 'ridicul', 'samsung', 'work', 'absolut', 'troubl', 'drop'], ['nice', 'phone', 'easi', 'carri', 'plenti', 'capabl', 'good', 'valu', 'bought', 'use', 'problem', 'wish', 'ring', 'louder', 'sometim', 'not', 'hear'], ['took', 'use', 'batteri', 'hold', 'fine', 'model', 'yrs', 'knew', 'expect', 'not', 'need', 'want', 'anyth', 'simpl', 'flip', 'phone'], ['bought', 'phone', 'husband', 'want', 'make', 'receiv', 'call', 'love', 'start', 'use', 'soon', 'charg', 'complaint', 'not', 'fanci', 'need'], ['basic', 'phone', 'definit', 'give', 'star', 'love', 'respons', 'touch', 'screen', 'keyboard', 'feel', 'great', 'phone', 'perfect', 'size', 'thing', 'wish', 'could', 'adjust', 'bright', 'batteri', 'life', 'last', 'longer'], ['bought', 'dad', 'got', 'deliv', 'realli', 'fast', 'great', 'packag', 'phone', 'work', 'great', 'not', 'even', 'tell', 'use', 'love', 'star'], ['got', 'christma', 'present', 'wife', 'phone', 'simpleton', 'love', 'eas', 'use'], ['thank'], ['nice', 'happi'], ['great', 'phone', 'perfect', 'like', 'look', 'feel', 'smart', 'phone', 'prefer', 'basic', 'model', 'easi', 'verizon', 'took', 'activ', 'activ', 'free', 'alreadi', 'account'], ['phone', 'came', 'great', 'came', 'way', 'expect', 'great', 'scratch', 'clean', 'id', 'great', 'grandad', 'love', 'comapni', 'great', 'thank'], ['ok'], ['ok'], ['came', 'promis', 'specifi', 'everyth', 'new', 'problem', 'whatsoev', 'buy'], ['happi', 'phone', 'good', 'price', 'pay', 'fanci', 'brand', 'pay', 'least'], ['not', 'good', 'phone', 'not', 'download', 'anyth', 'phone', 'video', 'qualiti', 'great', 'though', 'i', 'definit', 'return'], ['hello', 'figur', 'i', 'would', 'give', 'honest', 'review', 'possibl', 'help', 'someon', 'make', 'good', 'lot', 'research', 'lot', 'phone', 'blu', 'phone', 'budget', 'android', 'phone', 'want', 'phone', 'nice', 'size', 'display', 'nice', 'camera', 'fast', 'cours', 'not', 'want', 'spend', 'dollar', 'high', 'end', 'phone', 'ridicul', 'spend', 'much', 'money', 'phone', 'could', 'find', 'million', 'better', 'thing', 'kind', 'money', 'hey', 'final', 'ran', 'across', 'sky', 'devic', 'caught', 'eye', 'first', 'size', 'camera', 'read', 'pretti', 'impress', 'review', 'read', 'decid', 'give', 'go', 'purchas', 'phone', 'must', 'say', 'honest', 'honest', 'honest', 'phone', 'awesom', 'absolut', 'love', 'big', 'gorgeous', 'sturdi', 'fast', 'camera', 'amaz', 'front', 'back', 'also', 'great', 'video', 'qualiti', 'come', 'galaxi', 'still', 'pricey', 'phone', 'even', 'today', 'phone', 'better', 'sky', 'great', 'phone', 'nervous', 'buy', 'i', 'happi', 'want', 'help', 'someon', 'struggl', 'decis', 'make', 'phone', 'take', 'micro', 'sim', 'also', 'come', 'one', 'year', 'factori', 'warranti', 'realli', 'awesom', 'would', 'recommend', 'anyon', 'want', 'good', 'big', 'phone', 'good', 'camera', 'good', 'speed', 'beauti', 'display', 'good', 'video', 'qualiti', 'etc', 'go', 'not', 'disappoint', 'hope', 'abl', 'help'], ['nice', 'ok', 'excelent'], ['want', 'like', 'faulti', 'i', 'use', 'phone', 'sky', 'devic', 'fine', 'not', 'last', 'long', 'i', 'phone', 'month', 'longer', 'charg', 'i', 'not', 'reckless', 'phone', 'take', 'care', 'one', 'not', 'hold', 'bad', 'think', 'i', 'done', 'sky', 'devic'], ['love', 'phone'], ['good'], ['cheap', 'reliabl', 'bought', 'second', 'phone'], ['phone', 'great', 'not', 'use', 'boost', 'mobil', 'smh'], ['realli', 'great', 'phone', 'happi', 'qualiti', 'price', 'camera', 'front', 'back', 'best', 'friend'], ['gps', 'not', 'work', 'stay', 'hot'], ['not', 'like', 'small'], ['phone', 'reason', 'qualiti', 'good', 'valu', 'price', 'one', 'big', 'except', 'camera', 'specif', 'list', 'mega', 'pixl', 'camera', 'yet', 'photo', 'took', 'much', 'less', 'clear', 'sharp', 'exact', 'pic', 'taken', 'compar', 'price', 'phone', 'mp', 'camera', 'blu', 'dash', 'not', 'care', 'camera', 'phone', 'ok', 'choic', 'look', 'differ', 'brand'], ['great', 'phone', 'expect', 'case', 'come', 'though', 'might', 'need', 'check', 'order'], ['got', 'far'], ['unlock', 'use', 'countri', 'world', 'dual', 'sim', 'allow', 'two', 'phone', 'line', 'simultan', 'screen', 'quit', 'clear', 'bright', 'camera', 'mp', 'mp', 'littl', 'ram', 'mb', 'littl', 'intern', 'storag', 'enabl', 'process', 'data', 'access', 'internet', 'quick', 'download', 'applic', 'play', 'store', 'littl', 'storag', 'space', 'limit', 'general', 'term', 'phone', 'good', 'qualiti'], ['excelent'], ['phone', 'cute', 'buy', 'anoth', 'gold', 'color', 'camera', 'good', 'also', 'fast', 'sail'], ['reliabl', 'servic', 'high', 'recommend'], ['fulfil', 'expect', 'work', 'well'], ['great', 'phone', 'other', 'not', 'want', 'spend', 'huge', 'chunk', 'money', 'smartphon', 'use', 'simpl', 'mobil', 'tower', 'not', 'problem', 'call', 'qualiti', 'drop', 'call', 'old', 'phone', 'would', 'drop', 'call', 'alot', 'one', 'seem', 'fair', 'much', 'better', 'old', 'phone', 'also', 'hard', 'time', 'make', 'day', 'without', 'die', 'phone', 'go', 'day', 'charg', 'not', 'use', 'lot', 'data', 'most', 'talk', 'txt', 'moder', 'check', 'email', 'occasion', 'heavi', 'data', 'user', 'may', 'not', 'last', 'quit', 'long', 'vast', 'improv', 'last', 'phone', 'happi', 'bit', 'larg', 'wish', 'case', 'come', 'clear', 'back', 'case', 'protect', 'screen', 'protector', 'nice', 'overal', 'good', 'phone', 'good', 'qualiti', 'especi', 'price', 'kit', 'kat', 'make', 'fast', 'cool', 'app', 'find', 'expens', 'name', 'brand', 'smartphon'], ['reliabl', 'fast', 'ship'], ['nice'], ['excel', 'product', 'recommend'], ['unlock', 'use', 'countri', 'world', 'dual', 'sim', 'allow', 'two', 'phone', 'line', 'simultan', 'screen', 'quit', 'clear', 'bright', 'camera', 'mp', 'mp', 'littl', 'ram', 'mb', 'littl', 'intern', 'storag', 'enabl', 'process', 'data', 'access', 'internet', 'quick', 'download', 'applic', 'play', 'store', 'littl', 'storag', 'space', 'limit', 'general', 'term', 'phone', 'good', 'qualiti'], ['littl', 'scare', 'first', 'would', 'not', 'work', 'work', 'great', 'happi'], ['not', 'like'], ['excit', 'watch', 'game', 'eveyth', 'need', 'even', 'record', 'record', 'undercov', 'everybodi', 'think', 'appl', 'watch'], ['worst', 'watch', 'ever', 'not', 'sync', 'iphon', 'not', 'worth', 'effort', 'instruct', 'terribl'], ['work', 'nice', 'not', 'top', 'line', 'not', 'junk', 'either'], ['watch', 'good', 'cheap', 'band', 'bust', 'easi'], ['great', 'watch'], ['connect', 'iphon', 'limit', 'sens', 'term', 'allow', 'text', 'via', 'devic', 'would', 'realli', 'need', 'stylus', 'hit', 'tini', 'digit', 'key', 'provid', 'function', 'not', 'work', 'instal', 'devic', 'seem', 'aim', 'android', 'devic', 'instruct', 'poor', 'translat', 'english', 'got', 'paid', 'put', 'simpli'], ['phone', 'best', 'peopl', 'say', 'behind', 'spec', 'might', 'not', 'processor', 'camera', 'serious', 'peopl', 'not', 'sit', 'around', 'vido', 'game', 'useless', 'thing', 'max', 'processor', 'phone', 'power', 'enough', 'think', 'screen', 'back', 'genius', 'alot', 'note', 'take', 'anyth', 'els', 'phone', 'sun', 'like', 'phone', 'need', 'tri', 'like', 'never', 'want', 'go', 'back', 'regular', 'display', 'outsid', 'turn', 'away', 'sun', 'see', 'display', 'instead', 'find', 'put', 'phone', 'sun', 'better', 'see', 'display', 'though', 'see', 'pretti', 'good', 'insid', 'love', 'feel', 'like', 'look', 'paper', 'not', 'screen', 'think', 'not', 'make', 'sens', 'wast', 'phone', 'batteri', 'light', 'regular', 'display', 'sun', 'could', 'use', 'sun', 'energi', 'light', 'instead', 'batteri', 'light', 'display', 'outsid', 'save', 'ton', 'batteri', 'not', 'outsid', 'also', 'insid', 'use', 'display', 'time', 'use', 'color', 'display', 'see', 'someth', 'color', 'like', 'photo', 'product', 'charg', 'phone', 'everi', 'day', 'despit', 'use', 'note', 'work', 'main', 'reason', 'bought', 'phone', 'lot', 'web', 'base', 'read', 'standard', 'lcd', 'amol', 'screen', 'suicid', 'eye', 'realli', 'feel', 'alot', 'easier', 'eye', 'like', 'paper', 'american', 'wear', 'glass', 'contact', 'doubl', 'year', 'ago', 'not', 'want', 'one', 'wrote', 'review', 'screen', 'thing', 'not', 'like', 'phone', 'not', 'durabl', 'particular', 'issu', 'front', 'screen', 'glass', 'extend', 'way', 'edg', 'phone', 'guarante', 'crack', 'drop', 'phone', 'happen', 'first', 'drop', 'not', 'drop', 'shock', 'absorb', 'case', 'got', 'new', 'phone', 'also', 'got', 'tpu', 'case', 'test', 'case', 'crack', 'phone', 'drop', 'mani', 'time', 'concret', 'not', 'get', 'new', 'crack', 'ok', 'case', 'one', 'love', 'phone'], ['bought', 'android', 'phone', 'realli', 'like', 'appear', 'luxuri', 'slim', 'built', 'design', 'come', 'instal', 'screen', 'protector', 'extra', 'one', 'side', 'color', 'silver', 'matt', 'finish', 'back', 'part', 'nice', 'pattern', 'like', 'dual', 'camera', 'dual', 'flash', 'compar', 'iphon', 'plus', 'flash', 'size', 'batteri', 'last', 'long', 'great', 'impress', 'function', 'instal', 'want', 'download', 'app', 'creat', 'googl', 'account', 'sound', 'qualiti', 'impress', 'well', 'pictur', 'use', 'viber', 'skype', 'messeng', 'call', 'work', 'great', 'use', 'video', 'call', 'parti', 'see', 'hear', 'clear', 'cours', 'hear', 'well', 'signal', 'good', 'although', 'depend', 'locat', 'connect', 'easili', 'switch', 'applic', 'without', 'overal', 'construct', 'great', 'reliabl', 'cours', 'not', 'compar', 'qualiti', 'iphon', 'plus', 'overal', 'i', 'satisfi', 'purchas', 'high', 'recommend', 'actual', 'great', 'receiv', 'product', 'discount', 'price', 'exchang', 'review', 'promot', 'period', 'thought', 'opinion', 'rate', 'oblig', 'post', 'posit', 'feedback', 'simpli', 'share', 'opinion', 'would', 'purchas', 'item', 'full', 'price', 'updat', 'review', 'soon', 'encount', 'issu', 'product'], ['could', 'not', 'get', 'booth', 'charg', 'batteri', 'twice', 'send', 'back'], ['pay', 'came', 'fast'], ['best', 'phone', 'ever', 'i', 'adventur', 'tour', 'guid', 'ecuador', 'jungl', 'mountin', 'river', 'best', 'adventur', 'partner'], ['would', 'never', 'buy', 'parent', 'own', 'blu', 'phone', 'work', 'great', 'dad', 'lost', 'thought', 'i', 'would', 'give', 'one', 'tri', 'slight', 'cheaper', 'look', 'great', 'arriv', 'quick', 'regret', 'feel', 'cheap', 'not', 'light', 'sensor', 'automat', 'bright', 'not', 'work', 'lcd', 'motion', 'quit', 'jitteri', 'eventu', 'less', 'month', 'use', 'power', 'button', 'stop', 'work', 'month', 'phone', 'die', 'not', 'buy'], ['fluent', 'spanish', 'might', 'fine', 'even', 'got', 'select', 'phone', 'set', 'offer', 'switch', 'languag', 'spanish', 'either', 'portugues', 'english', 'select', 'english', 'press', 'ok', 'noth', 'chang', 'still', 'spanish', 'instruct', 'spanish', 'websit', 'offer', 'real', 'support', 'photo', 'phone', 'look', 'nice', 'useless'], ['greet', 'venezuela', 'inform', 'handset', 'purchas', 'store', 'not', 'sent', 'not', 'carri', 'origin', 'invoic', 'appli', 'order', 'send', 'phone', 'venezuela', 'thank', 'email', 'eltesorodelcielo'], ['sorri', 'not', 'write', 'well', 'i', 'not', 'english', 'languag', 'nice', 'phone', 'i', 'happi', 'purchasepro', 'lot', 'screen', 'confort', 'videoscon', 'life', 'short', 'recommend', 'instal', 'task', 'killer', 'reduc', 'number', 'app', 'run', 'time', 'let', 'run', 'lag', 'annoy', 'realli', 'task', 'killer', 'obligatori', 'camera', 'bad', 'want', 'camera', 'buy', 'final', 'word', 'love', 'phone', 'recommend'], ['thank', 'lot', 'thank', 'lot', 'thank', 'lot', 'thank', 'lot', 'thank', 'lot'], ['good'], ['bought', 'amazon', 'mobil', 'itslef', 'start', 'amaz', 'sinc', 'see', 'box', 'first', 'time', 'came', 'complet', 'set', 'accesori', 'wriststrap', 'handsfre', 'memorystick', 'adapt', 'mb', 'memori', 'stick', 'charger', 'usb', 'cabl', 'come', 'pc', 'suit', 'easi', 'help', 'charg', 'connect', 'via', 'usb', 'never', 'get', 'troubl', 'stay', 'onlin', 'long', 'wish', 'pay', 'everytim', 'connect', 'let', 'choos', 'type', 'connect', 'either', 'modem', 'memori', 'camera', 'oh', 'say', 'amaz', 'pictur', 'qualiti', 'excel', 'mode', 'flash', 'liter', 'blind', 'photodj', 'option', 'make', 'brighter', 'darker', 'lot', 'internet', 'fastest', 'i', 'seen', 'mobil', 'phone', 'trust', 'integr', 'browser', 'make', 'addict', 'search', 'anyth', 'anytim', 'word', 'know', 'pretti', 'exhaust', 'read', 'say', 'buy', 'need', 'digi', 'cam', 'portabl', 'let', 'make', 'phone', 'call', 'go', 'thank', 'god', 'sonyericsson'], ['not', 'cellular', 'phoneit', 'toy', 'phone'], ['deliveri', 'servic', 'averag', 'phone', 'work', 'got', 'work', 'get', 'servic', 'soon', 'not', 'use', 'much', 'satisfi', 'custom', 'servic', 'phone', 'littl', 'scratch', 'describ', 'smaller', 'expect'], ['excelent'], ['work', 'one', 'year', 'die', 'power', 'button', 'suck', 'soni', 'owe', 'us', 'new', 'phone', 'not', 'buy', 'junk'], ['verygood'], ['good', 'cell', 'phone', 'good', 'qualiti', 'littl', 'regular', 'cell', 'perfect'], ['walkman', 'function', 'not', 'work', 'phone', 'old', 'pc', 'could', 'not', 'download', 'upload', 'music', 'work', 'phone', 'bought', 'smart', 'phone', 'though', 'thin', 'light', 'good', 'carri', 'went', 'run'], ['best', 'avail', 'money', 'great', 'featur', 'small', 'enough', 'pocket', 'outstand', 'batteri', 'life'], ['bought', 'phone', 'replac', 'red', 'version', 'got', 'soak', 'stop', 'work', 'love', 'origin', 'work', 'perfect', 'batteri', 'last', 'long', 'get', 'use', 'black', 'defein', 'strong', 'phone', 'red', 'one', 'work', 'least', 'know', 'take', 'beat', 'last', 'long', 'time'], ['good', 'sound'], ['bought', 'j', 'r', 'ask', 'version', 'sent', 'french', 'version', 'easi', 'awar', 'wrong', 'version', 'box', 'written', 'french', 'also', 'put', 'insid', 'box', 'way', 'box', 'rip', 'adaptor', 'plug', 'connect', 'french', 'charger', 'bad'], ['take', 'long', 'get', 'item', 'not', 'got', 'almost', 'monthit', 'frustrat', 'deliveri'], ['got', 'day', 'ago', 'not', 'first', 'experi', 'android', 'soni', 'love', 'design', 'white', 'color', 'give', 'stylish', 'look', 'light', 'slim', 'android', 'estim', 'upgrad', 'ice', 'cream', 'sandwich', 'end', 'march', 'begin', 'price', 'paid', 'got', 'i', 'happi'], ['found', 'phone', 'low', 'memori', 'space', 'not', 'instal', 'app', 'phone', 'els', 'show', 'messag', 'like', 'phone', 'run', 'low', 'memori', 'not', 'allow', 'phone', 'start', 'kill', 'run', 'app', 'not', 'recommend', 'product', 'peopl', 'love', 'mani', 'pretti', 'heavi', 'app', 'like', 'game', 'phone'], ['es', 'de', 'lo', 'mejor', 'est', 'equipo', 'ya', 'lo', 'actualizado', 'va', 'de', 'se', 'los', 'recomiendo', 'al', 'igual', 'que', 'el', 'vendedor'], ['uniqu', 'phone', 'husband', 'love', 'not', 'put', 'kid', 'love', 'way', 'made', 'good', 'qualiti', 'great', 'price'], ['got', 'son', 'birthday', 'absolut', 'love', 'came', 'earlier', 'expect', 'let', 'earli', 'birthday', 'gift', 'realli', 'neat', 'system', 'even', 'though', 'coupl', 'year', 'old', 'far', 'launch', 'fit', 'need', 'far', 'spec'], ['gift'], ['phone', 'year', 'realli', 'like', 'slide', 'control', 'tougher', 'could', 'ever', 'imagin', 'first', 'open', 'could', 'not', 'believ', 'would', 'last', 'long'], ['love', 'well', 'worth', 'money'], ['think', 'problem', 'se', 'limit', 'capac', 'intern', 'storag', 'aspect', 'work', 'great'], ['excel', 'producti', 'prefer', 'cell', 'phone', 'anoth', 'due', 'os', 'integr', 'gamepadth', 'batteri', 'life', 'call', 'normal', 'use', 'data', 'connect', 'dayswith', 'data', 'connect', 'hourswith', 'data', 'wireless', 'daysbad', 'thing', 'slow', 'charg', 'intern', 'spacevideoconfer', 'bug', 'use', 'gtalk'], ['littl', 'year', 'buy', 'phone', 'love', 'love', 'phone', 'still', 'need', 'hous', 'urgent', 'inde', 'amazon', 'nobodi', 'recommend', 'anyth', 'ebay', 'sinc', 'i', 'venezuela', 'not', 'buy', 'agradesco', 'thank', 'much'], ['work', 'good', 'complain', 'phone', 'memori', 'small', 'mani', 'app', 'transfer', 'chip', 'stuck', 'phone', 'ono', 'option', 'delet', 'need', 'phone', 'space'], ['good', 'phone', 'not', 'work', 'costa', 'rica', 'work', 'latin', 'america', 'gsm', 'est', 'es', 'un', 'buen', 'celular', 'pero', 'trabaja', 'en', 'en', 'costa', 'rica', 'por', 'lo', 'leido', 'en', 'internet', 'ni', 'en', 'latino', 'américa', 'solo', 'en', 'gsm'], ['excelent', 'muy', 'buen', 'vendedor', 'super', 'rapido', 'lo', 'recomiendo'], ['excellent', 'product', 'thank', 'work', 'grate', 'like', 'thought', 'android', 'system', 'amaz'], ['good', 'team', 'recommend', 'not', 'file', 'fault', 'high', 'qualiti', 'good'], ['think', 'enough', 'bad', 'thing', 'say', 'phone', 'not', 'know', 'peopl', 'talk', 'low', 'batteri', 'life', 'averag', 'get', 'full', 'day', 'usag', 'one', 'charg', 'screen', 'sure', 'look', 'small', 'compar', 'iphon', 'littl', 'smaller', 'not', 'bulki', 'iphon', 'anoth', 'thing', 'not', 'afraid', 'word', 'intern', 'version', 'mani', 'phone', 'come', 'middl', 'east', 'term', 'note', 'come', 'middl', 'east', 'android', 'marketplac', 'restrict', 'noth', 'easi', 'fix', 'mani', 'phone', 'come', 'android', 'simpli', 'download', 'pc', 'companion', 'comput', 'insert', 'provid', 'data', 'cabl', 'comput', 'android', 'also', 'featur', 'android', 'marketplac', 'tweak', 'would', 'recommend', 'get', 'kind', 'skin', 'cover', 'prevent', 'phone', 'scratch', 'well', 'screen', 'protector'], ['bought', 'phone', 'year', 'ago', 'work', 'perfect', 'mani', 'android', 'app', 'favorit', 'aldiko', 'allow', 'carri', 'book', 'look', 'great', 'use', 'fb', 'twitter', 'well', 'review', 'screen', 'littl', 'small', 'actual', 'navig', 'internet', 'size', 'use', 'use', 'predict', 'text', 'send', 'sms', 'ok', 'prefer', 'full', 'keyboard', 'not', 'phone', 'actual', 'weak', 'mini', 'not', 'get', 'not', 'full', 'screen', 'touch', 'keyboard', 'realli', 'surpris', 'qualiti', 'video', 'great', 'camera', 'also', 'good'], ['phone', 'lock', 'bought', 'go', 'use', 'paper', 'weight', 'thank'], ['soni', 'xperia', 'mini', 'great', 'phone', 'could', 'small', 'phone', 'featur', 'os', 'camera', 'made', 'phone', 'good', 'choic', 'want', 'technolog', 'smaller', 'size', 'recommend'], ['great'], ['still', 'work', 'great', 'upgrad', 'new', 'phone', 'gave', 'daughter', 'love'], ['great'], ['phone', 'awesom', 'mint', 'colour', 'even', 'gorgeous', 'person', 'pictur', 'look'], ['got', 'easi', 'move', 'sim', 'chip', 'phone', 'phone', 'take', 'littl', 'time', 'learn', 'yet', 'much', 'better', 'phone', 'see', 'place'], ['someon', 'fought', 'go', 'versus', 'samsung', 'black', 'jack', 'complex', 'pleas', 'littl', 'android', 'phone', 'purchas', 'last', 'week', 'amaz', 'easi', 'set', 'easi', 'use', 'also', 'amazon', 'prime', 'custom', 'sinc', 'incept', 'one', 'best', 'product', 'order', 'keep', 'good', 'work', 'amazon'], ['ok'], ['fast', 'core', 'phone', 'simpl', 'os', 'sound', 'good', 'headphon', 'camera', 'good', 'take', 'ugli', 'photo', 'dark', 'ambient'], ['reason'], ['purchas', 'excel', 'rapid', 'recommend'], ['kool'], ['excel'], ['good', 'high', 'recommend'], ['good'], ['exelent'], ['excel'], ['recomendado', 'excelent', 'producto'], ['sleek', 'easi', 'use', 'lot', 'featur', 'wifi', 'gmail', 'face', 'book', 'love', 'much', 'bought', 'anoth', 'one'], ['excel', 'phone', 'recom'], ['good'], ['purchas', 'excel', 'rapid', 'recommend'], ['great', 'cell', 'phone', 'still', 'work', 'perfect', 'first', 'day', 'basic', 'featur', 'basic', 'user'], ['receiv', 'order', 'perfect', 'condit', 'not', 'want', 'good'], ['work', 'fine', 'neic', 'india'], ['fast', 'core', 'phone', 'simpl', 'os', 'sound', 'good', 'headphon', 'camera', 'good', 'take', 'ugli', 'photo', 'dark', 'ambient'], ['pros', 'compact', 'size', 'plastic', 'back', 'relat', 'low', 'price', 'point', 'problem', 'audio', 'qualiti', 'call', 'connectivitycon', 'not', 'enough', 'storag', 'app', 'inadequ', 'process', 'power', 'insuffici', 'ram', 'slow', 'camera', 'borderlin', 'useless', 'low', 'screen', 'resolut', 'soni', 'xperia', 'underwhelmingthi', 'first', 'smartphon', 'purchas', 'want', 'someth', 'compact', 'unlock', 'relat', 'inexpens', 'i', 'xperia', 'e', 'sever', 'month', 'retrospect', 'memori', 'process', 'power', 'classic', 'exampl', 'get', 'pay', 'phone', 'infuri', 'slow', 'respond', 'even', 'action', 'seem', 'simpl', 'unlock', 'screen', 'pin', 'screen', 'resolut', 'low', 'app', 'make', 'difficult', 'use', 'camera', 'good', 'captur', 'still', 'subject', 'far', 'annoy', 'featur', 'phone', 'small', 'intern', 'flash', 'memori', 'seem', 'like', 'would', 'enough', 'shop', 'sinc', 'intent', 'load', 'bunch', 'media', 'littl', 'know', 'alloc', 'phone', 'memori', 'app', 'store', 'sever', 'limit', 'abil', 'instal', 'much', 'beyond', 'preload', 'app', 'phone', 'app', 'move', 'intern', 'storag', 'manag', 'uninstal', 'preload', 'app', 'nevertheless', 'updat', 'larg', 'app', 'chrome', 'often', 'tedious', 'process', 'clear', 'cach', 'temporarili', 'uninstal', 'app', 'order', 'free', 'enough', 'storag', 'perform', 'updat', 'i', 'sure', 'enough', 'time', 'effort', 'could', 'find', 'solut', 'android', 'forum', 'expect', 'thing', 'work', 'move'], ['excel'], ['ok'], ['work', 'well'], ['realli', 'like', 'phone', 'virtual', 'lag', 'app', 'two', 'sim', 'slot', 'great', 'two', 'number', 'downsid', 'not', 'super', 'durabl', 'back', 'plastic', 'probabl', 'real', 'bad', 'not', 'case', 'not', 'much', 'memori', 'get', 'extra', 'memori', 'card', 'happi'], ['not', 'know', 'say', 'order', 'not', 'get', 'phone', 'not', 'know', 'write', 'thank'], ['horribl', 'phone', 'bargain', 'price', 'wise', 'well', 'not', 'realli', 'featur', 'come', 'suck', 'camera', 'front', 'seller', 'disclos', 'inform'], ['thank'], ['not', 'work'], ['star', 'get', 'pay', 'reliabl', 'phone', 'plenti', 'not', 'want', 'pocket', 'comput', 'pocket', 'agenda', 'phone', 'gps', 'music', 'like', 'palm', 'els', 'could', 'nice', 'phone', 'bravo'], ['perfecto'], ['excelent', 'producto'], ['excel', 'phone', 'arriv', 'realli', 'quick', 'great', 'qualiti', 'pictur', 'thing', 'not', 'like', 'cellphon', 'not', 'allow', 'put', 'applic', 'sd', 'card', 'least', 'not', 'care', 'mean', 'ship', 'cellphon', 'realli', 'good'], ['light', 'good', 'smart', 'phone', 'system', 'multimedia', 'camera', 'excel', 'negat', 'not', 'work', 'countri', 'dice', 'unlock', 'work', 'venezuela', 'wrong', 'buy', 'everyth', 'els', 'good', 'phone'], ['iphon', 'yet', 'smaller', 'conveni', 'not', 'mention', 'afford'], ['nice', 'phone', 'necessari', 'smart', 'featur', 'reason', 'price', 'littl', 'delic', 'use', 'good', 'cover', 'issu'], ['excel', 'product', 'high', 'qualiti', 'easi', 'use', 'updat', 'proper', 'size', 'multilanguag'], ['excel', 'product', 'not', 'problem', 'everyth', 'work', 'fine', 'far', 'everyth', 'describ', 'price', 'excel', 'buy'], ['excelenyt'], ['great', 'phone', 'much', 'sell', 'right', 'need', 'cost', 'effect', 'function', 'smartphon', 'also', 'look', 'good', 'great', 'price', 'rang', 'good', 'choic', 'also', 'read', 'pro', 'review', 'lot', 'review', 'complain', 'screen', 'qualiti', 'life', 'not', 'figur', 'look', 'great', 'inch', 'smartphon', 'realli', 'not', 'need', 'classi', 'look', 'seem', 'well', 'soni', 'imho', 'best', 'ui', 'android', 'solid', 'batteri', 'life', 'processor', 'ram', 'good', 'enough', 'screen', 'larg', 'enough', 'thing', 'phone', 'small', 'enough', 'easili', 'fit', 'hand', 'pocketcon', 'limit', 'intern', 'storag', 'space', 'way', 'move', 'app', 'sd', 'card', 'essenti', 'hack', 'phone', 'instal', 'memori', 'soni', 'like', 'not', 'upgrad', 'android', 'kitkat', 'even', 'though', 'phone', 'compani', 'upgrad', 'older', 'two', 'con', 'mention', 'gave', 'phone', 'star', 'rate', 'soni', 'upgrad', 'kitkat', 'allow', 'send', 'app', 'memori', 'card', 'would', 'problem', 'give', 'star', 'rate'], ['good'], ['recomendado'], ['perfect'], ['tmobil', 'sin', 'not', 'work', 'phone', 'wast', 'buy'], ['accord', 'descript', 'item', 'suppos', 'lte', 'readi', 'put', 'gsm', 'card', 'work', 'someth', 'network', 'son', 'iphon', 'work', 'lte', 'network', 'place', 'tri', 'use', 'soni', 'xperia'], ['good', 'great', 'seller'], ['good'], ['good'], ['receiv', 'cellphon', 'januari', 'i', 'venezuela', 'gift', 'girlfriend', 'last', 'month', 'birthday', 'cellphon', 'not', 'charg', 'green', 'led', 'even', 'charger', 'conect', 'tri', 'differ', 'charger', 'comput', 'conect', 'differ', 'cabl', 'press', 'reset', 'button', 'seg', 'seg', 'min', 'min', 'press', 'power', 'button', 'power', 'buttom', 'press', 'power', 'buttom', 'min', 'kind', 'recommend', 'noth', 'cellphon', 'not', 'start', 'want', 'know', 'thank', 'time'], ['heat', 'restart', 'sever', 'time', 'day', 'bought', 'afyer', 'experi', 'second', 'hous', 'hold', 'use', 'cobtiuesli', 'issu', 'restart', 'regardless', 'uninstal', 'lot', 'app', 'run', 'n', 'dafe', 'mode', 'alway', 'think', 'soni', 'good', 'thisnon', 'fail', 'may', 'next', 'time', 'think', 'wait', 'till', 'get', 'good', 'review', 'new', 'phone'], ['great'], [], ['gps', 'not', 'work', 'first', 'phone', 'receiv', 'return', 'replac', 'without', 'issu', 'new', 'phone', 'work', 'perfect', 'far'], ['great', 'product', 'not', 'watter', 'proof', 'not', 'put', 'watter', 'everyth', 'els', 'pretti', 'cool', 'phone'], ['solid', 'phone', 'offer', 'soni', 'first', 'xperia', 'phone', 'recent', 'come', 'lenovo', 'pretti', 'cool', 'solid', 'build', 'despit', 'plastic', 'frame', 'incred', 'clear', 'call', 'qualiti', 'lte', 'deliv', 'good', 'signal', 'network', 'nfc', 'sd', 'card', 'slot', 'lte', 'unlock', 'us', 'manufactur', 'warranti', 'one', 'year', 'new', 'devic', 'screen', 'soni', 'bloat', 'odd', 'usb', 'port', 'placement', 'weak', 'adjust', 'featur', 'amazon', 'model', 'not', 'rootabl', 'without', 'consider', 'softwar', 'modificationsnotesth', 'phone', 'automat', 'download', 'apn', 'set', 'depend', 'upon', 'simcard', 'insert', 'automat', 'soni', 'say', 'marshmallow', 'upgrad', 'year', 'not', 'shown', 'yet', 'devic', 'bought', 'use', 'bought', 'new', 'use', 'devic', 'ceas', 'oper', 'day', 'devic', 'watertight', 'may', 'get', 'warm', 'oper', 'reason', 'peopl', 'believ', 'processor', 'underclock', 'keep', 'devic', 'cooler', 'may', 'contribut', 'laggi', 'menusi', 'tudia', 'tpu', 'case', 'fit', 'extrem', 'well', 'mr', 'shield', 'matt', 'screen', 'protector', 'look', 'excel', 'phone', 'zagg', 'appar', 'make', 'shield', 'phone', 'not', 'sell', 'us'], ['good', 'price', 'goob', 'phone'], ['perfect'], ['phone', 'random', 'restart', 'multipl', 'time', 'day', 'reset', 'done', 'everyth', 'think', 'use', 'sudden', 'restart', 'also', 'sit', 'counter', 'look', 'boot', 'back', 'restart', 'self', 'diagnost', 'say', 'incid', 'past', 'day', 'contact', 'soni', 'requir', 'phone', 'sent', 'repair', 'take', 'coupl', 'week', 'get', 'phone', 'back', 'find', 'backup', 'guess', 'not', 'without', 'phone', 'problem', 'known', 'time', 'would', 'not', 'purchas', 'phone', 'would', 'return'], ['use', 'less', 'six', 'month', 'pool', 'swim', 'pocket', 'less', 'min', 'alreadi', 'broke', 'not', 'realli', 'waterproof'], ['i', 'hawaii', 'not', 'work', 'transfer', 'sim', 'card', 'say', 'not', 'support'], ['phone', 'not', 'provid', 'batteri', 'life', 'wifi', 'mode', 'batteri', 'keep', 'drain', 'even', 'stamina', 'ultra', 'stamina', 'mode', 'activ', 'also', 'back', 'panel', 'get', 'heat', 'charg', 'stream', 'video', 'play', 'music', 'not', 'satisfi', 'soni', 'product', 'order', 'replac', 'hope', 'next', 'one', 'would', 'give', 'better', 'batteri', 'life', 'turn', 'go', 'return', 'product'], ['bought', 'phone', 'replac', 'lumina', 'window', 'phone', 'lack', 'app', 'avail', 'android', 'phone', 'past', 'love', 'wife', 'enough', 'said', 'see', 'mani', 'app', 'avail', 'android', 'decid', 'get', 'soni', 'base', 'review', 'extrem', 'happi', 'purchas', 'latest', 'android', 'download', 'app', 'audio', 'qualiti', 'great', 'great', 'phone', 'better', 'display', 'button', 'larger', 'phone', 'text', 'almost', 'twice', 'research', 'think', 'get', 'phone', 'not', 'disappoint'], ['phone', 'decent', 'first', 'real', 'downfal', 'speaker', 'volum', 'howev', 'month', 'expect', 'replac', 'phone', 'bought', 'one', 'decemb', 'return', 'within', 'coupl', 'month', 'speaker', 'go', 'thought', 'mayb', 'damag', 'box', 'product', 'howev', 'second', 'phone', 'approxim', 'month', 'old', 'exact', 'issu', 'thought', 'spend', 'addit', 'would', 'save', 'money', 'long', 'run', 'mail', 'ladi', 'light', 'water', 'mayb', 'problem', 'get', 'caught', 'rain', 'howev', 'phone', 'never', 'even', 'subject', 'rain', 'yet', 'last', 'less', 'time', 'nokia', 'lumia', 'past', 'cheaper', 'would', 'gotten', 'squar', 'trade', 'warranti', 'howev', 'not', 'avail', 'product', 'wonder', 'manufactur', 'vendor', 'know', 'someth', 'not', 'know'], ['super', 'great', 'phone', 'note', 'want', 'someth', 'water', 'proof', 'close', 'call', 'not', 'miss', 'note', 'bit'], ['great', 'product', 'accur', 'descript', 'reason', 'price'], ['speed'], ['review', 'product', 'soni', 'servic', 'four', 'month', 'bought', 'screen', 'issu', 'vertic', 'band', 'dead', 'pixel', 'right', 'side', 'screen', 'soni', 'receiv', 'rma', 'shipment', 'may', 'servic', 'term', 'claim', 'busi', 'day', 'turnaround', 'time', 'till', 'date', 'not', 'abl', 'tell', 'would', 'receiv', 'repair', 'phone', 'call', 'chat', 'custom', 'servic', 'depart', 'end', 'not', 'inform', 'time', 'contact', 'us', 'next', 'would', 'better', 'return', 'phone', 'amazon'], ['first', 'mid', 'grade', 'smart', 'phone', 'love', 'far'], ['long', 'deliber', 'first', 'smartphon', 'chose', 'soni', 'xperia', 'aqua', 'soni', 'ericsson', 'phone', 'sturdi', 'hope', 'someth', 'similar', 'husband', 'trust', 'judgement', 'also', 'need', 'new', 'phone', 'end', 'order', 'two', 'seven', 'week', 'frank', 'disappoint', 'one', 'word', 'describ', 'phone', 'would', 'slow', 'not', 'instal', 'much', 'app', 'anyth', 'switch', 'phone', 'take', 'long', 'time', 'also', 'open', 'social', 'media', 'app', 'like', 'whatsapp', 'facebook', 'keep', 'switch', 'type', 'extrem', 'annoy', 'take', 'pictur', 'someth', 'not', 'still', 'object', 'practic', 'imposs', 'take', 'sec', 'take', 'shot', 'long', 'time', 'end', 'alway', 'miss', 'one', 'moment', 'take', 'pictur', 'second', 'see', 'frame', 'not', 'pictur', 'end', 'blurri', 'pictur', 'big', 'part', 'librari', 'wors', 'video', 'record', 'without', 'sign', 'someth', 'wrong', 'end', 'complet', 'black', 'tape', 'two', 'friend', 'say', 'wed', 'afterward', 'turn', 'absolut', 'noth', 'tape', 'see', 'someth', 'tape', 'though', 'could', 'said', 'complet', 'black', 'next', 'video', 'tri', 'turn', 'fine', 'idea', 'miss', 'big', 'moment', 'someon', 'call', 'touch', 'screen', 'somewher', 'pick', 'phone', 'disconnect', 'husband', 'phone', 'stop', 'work', 'five', 'week', 'light', 'use', 'microphon', 'not', 'work', 'time', 'ship', 'look', 'miss', 'phone', 'busi', 'day', 'without', 'replac', 'complet', 'unaccept', 'brand', 'new', 'phone', 'get', 'new', 'one', 'ask', 'care', 'place', 'phone', 'pocket', 'back', 'tend', 'becom', 'realli', 'realli', 'almost', 'hot', 'touch', 'one', 'point', 'not', 'healthi', 'walk', 'around', 'close', 'last', 'thing', 'not', 'like', 'fact', 'big', 'hand', 'rather', 'small', 'like', 'like', 'like', 'fact', 'water', 'proof', 'howev', 'not', 'put', 'test', 'like', 'definit', 'like', 'batteri', 'life', 'two', 'day', 'easili', 'take', 'least', 'hour', 'recharg', 'would', 'not', 'recommend', 'look', 'solut', 'video', 'alway', 'turn', 'black', 'found', 'issu', 'often', 'report', 'well', 'know', 'soni', 'solut', 'restart', 'phone', 'video', 'turn', 'ok'], ['great', 'item', 'great', 'price'], ['one', 'best', 'cellular', 'ever', 'new', 'one', 'everi', 'monthsth', 'right', 'size', 'work', 'fast', 'nice', 'good', 'qualiti', 'good', 'batteri', 'lifei', 'not', 'tri', 'water', 'normal', 'life', 'drop', 'safepric', 'also', 'good', 'less', 'dollar', 'excel', 'deviceon', 'month', 'later', 'still', 'excel', 'impress', 'good', 'phone', 'low', 'price', 'pay', 'much', 'appl', 'samsung', 'lg'], ['bad', 'perform', 'camera', 'sometim', 'not', 'avail', 'throw', 'error', 'phone', 'overheat', 'lot', 'also', 'turn', 'sudden', 'often', 'design', 'good', 'dissapoint', 'fail', 'even', 'new'], ['order', 'singl', 'sim', 'instead', 'got', 'dual', 'checkout', 'singl', 'sim', 'card', 'cost', 'dual', 'version', 'phone', 'not'], ['great', 'phone', 'perfect', 'condit', 'bad', 'paid', 'anyway', 'i', 'happi', 'phone'], ['screen', 'crack', 'month', 'use', 'appar', 'reason', 'phone', 'fallen', 'coupl', 'time', 'month', 'period', 'not', 'recent', 'thing', 'happen', 'soni', 'xperia', 'mayb', 'glass', 'soni', 'use', 'would', 'not', 'recommend', 'anyon', 'buy', 'phone', 'send', 'text', 'messag', 'frustrat', 'miss', 'photo', 'opportun', 'wait', 'camera', 'work', 'miss', 'appoint', 'reli', 'alarm', 'batteri', 'drain', 'mysteri', 'phone', 'turn', 'batteri', 'pictur', 'water', 'proof', 'although', 'one', 'time', 'phone', 'got', 'wet', 'not', 'function', 'proper', 'short', 'crack', 'screen', 'mayb', 'fault', 'mayb', 'glass', 'soni', 'use', 'defect', 'sinc', 'soni', 'phone', 'slow', 'camera', 'take', 'sever', 'second', 'take', 'pictur', 'sometim', 'miss', 'good', 'photo', 'text', 'messag', 'take', 'second', 'send', 'batteri', 'drain', 'night', 'almost', 'full', 'zero', 'three', 'time', 'last', 'main', 'bought', 'phone', 'dual', 'sim', 'capabl', 'water', 'proof', 'featur', 'phone', 'not', 'special', 'like', 'buy', 'differ', 'brand', 'next', 'august', 'phone', 'start', 'act', 'insert', 'second', 'sim', 'card', 'turn', 'sever', 'time', 'day', 'phone', 'not', 'turn', 'anymor', 'month', 'use', 'rip', 'soni', 'xperia', 'tomorrow', 'purchas', 'samsung'], ['great'], ['touch', 'not', 'work'], ['perfect', 'price', 'light', 'weight', 'camera', 'job', 'batteri', 'run', 'long', 'touch', 'screen', 'super', 'sensit', 'overal', 'good', 'phone', 'price', 'like', 'much'], ['i', 'person', 'want', 'thing', 'basic', 'well', 'call', 'receiv', 'messag', 'equip', 'qualiti', 'display', 'camera', 'speaker', 'gps', 'browser', 'relat', 'modern', 'without', 'expens', 'price', 'could', 'care', 'less', 'latest', 'edg', 'smartphon', 'anyth', 'outdat', 'warranti', 'end', 'not', 'heavi', 'invest', 'phone', 'fulfil', 'challeng', 'rather', 'phone', 'display', 'finish', 'round', 'aluminum', 'back', 'matt', 'black', 'bar', 'contain', 'android', 'back', 'home', 'menu', 'key', 'transpar', 'top', 'phone', 'jack', 'bottom', 'piec', 'remov', 'plastic', 'cap', 'remov', 'expos', 'label', 'show', 'info', 'speakerphon', 'right', 'side', 'phone', 'screen', 'button', 'button', 'volum', 'adjust', 'end', 'dedic', 'camera', 'button', 'front', 'face', 'camera', 'skype', 'rear', 'face', 'camera', 'use', 'widescreen', 'equip', 'bright', 'led', 'flash', 'left', 'side', 'phone', 'charg', 'port', 'micro', 'hdmi', 'ouput', 'slot', 'microsim', 'micro', 'usb', 'hdmi', 'port', 'uncov', 'wherea', 'microsim', 'port', 'cover', 'come', 'headphon', 'microphon', 'link', 'soni', 'stereo', 'headset', 'microphon', 'button', 'cell', 'phone', 'black', 'bulk', 'packag', 'factori', 'unlock', 'year', 'manufactur', 'good', 'qualiti', 'bright', 'big', 'bright', 'resolut', 'visibl', 'screen', 'phenomen', 'display', 'text', 'legibl', 'color', 'minim', 'wash', 'even', 'southern', 'california', 'sunlight', 'time', 'use', 'phone', 'dark', 'backlight', 'adjust', 'perfect', 'eye', 'not', 'strain', 'minut', 'web', 'bird', 'session', 'sleep', 'screen', 'bright', 'enough', 'use', 'outdoor', 'sensit', 'enough', 'use', 'indoor', 'ad', 'touch', 'come', 'screen', 'protector', 'appli', 'camera', 'quick', 'focus', 'flash', 'take', 'pictur', 'camera', 'key', 'use', 'activ', 'camera', 'phone', 'sleep', 'realli', 'press', 'set', 'whether', 'phone', 'take', 'pictur', 'direct', 'focus', 'camera', 'option', 'call', 'quick', 'launch', 'soni', 'disabl', 'phone', 'qualiti', 'not', 'tinni', 'sharp', 'loud', 'recept', 'good', 'even', 'even', 'without', 'band', 'seen', 'chart', 'amazon', 'provid', 'wifi', 'strength', 'reason', 'choic', 'keyboard', 'layout', 'tradit', 'version', 'qwerti', 'gestur', 'function', 'drag', 'finger', 'across', 'letter', 'word', 'automat', 'type', 'word', 'text', 'quick', 'activ', 'function', 'turn', 'fulli', 'tame', 'work', 'realli', 'well', 'tri', 'tongu', 'twister', 'sell', 'sea', 'shell', 'sea', 'shore', 'work', 'part', 'mistak', 'made', 'instead', 'sea', 'input', 'see', 'option', 'differ', 'languag', 'keyboard', 'well', 'english', 'chines', 'android', 'os', 'soni', 'quick', 'jump', 'menu', 'menu', 'app', 'app', 'appli', 'updat', 'independ', 'wifi', 'sourc', 'facebook', 'integr', 'work', 'skype', 'work', 'depend', 'bandwith', 'qualiti', 'feel', 'thin', 'well', 'weight', 'touchscreen', 'respons', 'asid', 'troubl', 'swipe', 'across', 'screen', 'hand', 'transpar', 'bar', 'key', 'respons', 'incred', 'distinct', 'design', 'unlik', 'rectangular', 'bar', 'big', 'softwar', 'requir', 'connect', 'xperia', 'p', 'pc', 'open', 'usabl', 'space', 'like', 'flash', 'drive', 'transfer', 'file', 'drag', 'drop', 'style', 'option', 'xperia', 'companion', 'softwar', 'prefer', 'simplic', 'drag', 'drop', 'option', 'xperia', 'p', 'come', 'load', 'languag', 'includ', 'multipl', 'dialect', 'english', 'spanish', 'chines', 'cruel', 'joke', 'someon', 'set', 'languag', 'basa', 'sunda', 'galego', 'shqipe', 'includ', 'headphon', 'not', 'best', 'better', 'cheap', 'earbud', 'normal', 'packag', 'phone', 'headphon', 'wire', 'lack', 'slider', 'behind', 'neck', 'style', 'wire', 'left', 'bud', 'wire', 'length', 'right', 'bad', 'batteri', 'life', 'unless', 'batteri', 'save', 'app', 'leav', 'wifi', 'connect', 'alon', 'drain', 'batteri', 'half', 'night', 'turn', 'extend', 'batteri', 'save', 'mode', 'energi', 'saver', 'mode', 'display', 'doubl', 'batteri', 'life', 'day', 'moder', 'usag', 'i', 'manag', 'averag', 'batteri', 'usag', 'daili', 'text', 'minim', 'wifi', 'backplat', 'batteri', 'batteri', 'life', 'estim', 'exagger', 'say', 'gaug', 'finicki', 'first', 'charg', 'batteri', 'gaug', 'would', 'stay', 'even', 'though', 'charg', 'full', 'night', 'restart', 'phone', 'would', 'show', 'glitch', 'gone', 'week', 'sd', 'card', 'not', 'sensit', 'enough', 'swing', 'phone', 'around', 'bit', 'i', 'lay', 'key', 'littl', 'stiff', 'focus', 'camera', 'easi', 'take', 'snapshot', 'take', 'quit', 'bit', 'mind', 'proxim', 'sensor', 'phone', 'end', 'hang', 'whoever', 'talk', 'face', 'close', 'enough', 'phone', 'screen', 'automat', 'lock', 'howev', 'i', 'use', 'use', 'shoulder', 'hold', 'phone', 'face', 'phone', 'go', 'place', 'i', 'end', 'hit', 'end', 'call', 'button', 'realli', 'easili', 'soni', 'read', 'make', 'rang', 'proxim', 'sensor', 'go', 'farther', 'futur', 'phone', 'everi', 'coupl', 'day', 'app', 'drain', 'phone', 'batteri', 'life', 'even', 'close', 'i', 'forgotten', 'restart', 'phone', 'busi', 'week', 'find', 'batteri', 'life', 'drain', 'month', 'usag', 'phone', 'not', 'show', 'sign', 'slow', 'still', 'love', 'use', 'final', 'deliv', 'jelli', 'bean', 'updat', 'xperia', 'howev', 'may', 'caus', 'phone', 'brick', 'momentarili', 'one', 'day', 'os', 'stop', 'respons', 'restart', 'phone', 'fail', 'initi', 'get', 'homepag', 'use', 'soni', 'updat', 'softwar', 'hope', 'patch', 'updat', 'ic', 'jellybean', 'not', 'work', 'either', 'reformat', 'consequ', 'lost', 'contact', 'app', 'instal', 'still', 'kept', 'everyth', 'storag', 'part', 'phone', 'music', 'photo', 'etc', 'sinc', 'problem', 'easi', 'fix', 'accid', 'happen', 'still', 'recommend', 'phone', 'not', 'sure', 'android', 'fault', 'soni', 'fault', 'prove', 'persist', 'assum', 'soni', 'fault', 'updat', 'plus', 'side', 'jelli', 'bean', 'add', 'googl', 'updat', 'overal', 'look', 'phone', 'ie', 'screen', 'lock', 'icon', 'menu', 'layout', 'color', 'theme', 'etc', 'mode', 'replac', 'batteri', 'mode', 'increas', 'batteri', 'life', 'provid', 'estim', 'time', 'remain', 'soni', 'walkman', 'also', 'updat', 'equal', 'xclariti', 'automat', 'equal'], ['good'], ['phone', 'excel', 'beauti', 'design', 'thin', 'excel', 'resolut', 'super', 'fast', 'everyth', 'one', 'would', 'expect', 'soni', 'congratul'], ['phone', 'could', 'not', 'turn', 'turn', 'tri', 'techniqu', 'not', 'recommend', 'anyon'], ['first', 'i', 'would', 'like', 'say', 'not', 'realli', 'want', 'purchas', 'gingerbread', 'phone', 'soni', 'howev', 'promis', 'updat', 'ic', 'sola', 'decid', 'get', 'wait', 'phone', 'work', 'decent', 'gingerbread', 'pleas', 'understand', 'review', 'base', 'premis', 'soni', 'promis', 'offici', 'updat', 'ic', 'convinc', 'purchas', 'phone', 'otherwis', 'would', 'not', 'said', 'ic', 'slow', 'perform', 'phone', 'signific', 'simpl', 'function', 'like', 'dial', 'receiv', 'call', 'start', 'take', 'etern', 'i', 'tri', 'everyth', 'short', 'revert', 'gingerbread', 'would', 'defeat', 'purpos', 'purchas', 'phone', 'confus', 'task', 'right', 'technic', 'challeng', 'task', 'killer', 'custom', 'rom', 'perform', 'still', 'led', 'disabl', 'lot', 'simpl', 'featur', 'purchas', 'phone', 'like', 'widget', 'live', 'wallpap', 'certain', 'app', 'run', 'background', 'like', 'viber', 'memori', 'manag', 'poor', 'given', 'time', 'averag', 'less', 'thank', 'task', 'camera', 'updat', 'take', 'second', 'take', 'pictur', 'tri', 'poor', 'subject', 'bear', 'led', 'blind', 'pictur', 'flash', 'end', 'lot', 'squint', 'backup', 'phone', 'brand', 'alcatel', 'use', 'gingerbread', 'run', 'speed', 'sola', 'cours', 'less', 'quarter', 'price', 'i', 'say', 'comparison', 'find', 'hard', 'recommend', 'phone', 'updat', 'offici', 'one', 'avoid'], ['phone', 'good', 'fast', 'play', 'game', 'mani', 'thing', 'good', 'allow', 'four', 'finger', 'screen'], ['smarthphon', 'work', 'well', 'zero', 'problem', 'android', 'pictur', 'excel', 'qualiti', 'limit', 'respect', 'size', 'beauti', 'smartphon', 'recommend'], ['phone', 'perform', 'beauti', 'price', 'high', 'recommend', 'soni', 'phone', 'far', 'better', 'design', 'manufactur', 'motorola', 'samsung', 'howev', 'give', 'star', 'first', 'time', 'custom', 'buy', 'unlock', 'phone', 'separ', 'none', 'review', 'descript', 'inform', 'worldwid', 'version', 'work', 'us', 'network', 'want', 'decent', 'data', 'speed', 'not', 'realiz', 'sp', 'come', 'three', 'differ', 'model', 'differ', 'network', 'compat', 'phone', 'perfect', 'travel', 'abroad', 'research', 'buy', 'one', 'would', 'better', 'use', 'strict', 'statesid', 'phone', 'not', 'accommod', 'spectrum', 'either', 'network', 'market', 'chang', 'not', 'fast', 'enough', 'work', 'signal', 'phone', 'capabl', 'complet', 'useless', 'state'], ['great', 'phone', 'price', 'even', 'better'], ['look', 'mid', 'size', 'phone', 'use', 'one', 'hand', 'octob', 'phone', 'best', 'phone', 'fit', 'one', 'batteri', 'life', 'last', 'day', 'case', 'two', 'phone', 'work', 'great', 'network', 'also', 'band', 'faster', 'lte', 'work', 'well', 'ui', 'smooth', 'not', 'lag', 'minimalist', 'skin', 'stock', 'overh', 'issu', 'like', 'android', 'n', 'due', 'releas', 'usb', 'c', 'quick', 'charg', 'expand', 'front', 'face', 'plastic', 'not', 'feel', 'premium', 'like', 'iphon', 'fair', 'thick', 'phone', 'made', 'camera', 'adequ', 'troubl', 'low', 'light', 'tend', 'overexpos', 'amol', 'volum', 'button', 'low', 'although', 'function', 'well', 'use', 'fingerprint', 'sensor', 'us', 'black', 'dark', 'blueit', 'unfortun', 'market', 'satur', 'mani', 'phablet', 'littl', 'choic', 'come', 'conserv', 'size', 'devic', 'think', 'good', 'phone', 'not', 'regret', 'buy', 'want', 'moder', 'size', 'phone'], ['phone', 'great', 'simpl', 'work', 'bought', 'replac', 'japanes', 'phone', 'compani', 'would', 'not', 'allow', 'upgrad', 'issu', 'cell', 'phone', 'not', 'japan', 'certifi', 'mobil', 'data', 'not', 'work'], ['love'], ['love', 'great', 'sizeui', 'fastbatteri', 'life', 'excel', 'usual', 'use', 'screen', 'good', 'not', 'let', 'releativli', 'low', 'resolut', 'deter', 'quit', 'good', 'even', 'look', 'small', 'soni', 'app', 'somewhat', 'annoy', 'not', 'uninstal', 'hide', 'folder', 'turn', 'notif', 'not', 'bother', 'concern', 'andriod', 'anyth', 'soni', 'privaci', 'control', 'insuffi', 'much', 'relianc', 'googl', 'quti', 'hassl', 'disabl', 'cloud', 'base', 'data', 'share', 'posit', 'side', 'not', 'need', 'relationship', 'soni', 'use', 'everyth', 'soni', 'account', 'cloud', 'servic', 'skip', 'startup', 'set', 'other', 'note', 'us', 'sku', 'mean', 'miss', 'featur', 'fingerprint', 'reader', 'smart', 'batteri', 'control', 'peopl', 'know', 'first', 'one', 'lack', 'smart', 'batteri', 'control', 'hidden', 'manual', 'mean', 'learn', 'habit', 'charg', 'less', 'max', 'speed', 'not', 'plugin', 'phone', 'overnight', 'not', 'want', 'charg', 'rapid', 'speed', 'lessen', 'batteri', 'life', 'long', 'term'], ['soni', 'compact', 'seri', 'alway', 'go', 'android', 'phone', 'size', 'speed', 'previous', 'compact', 'base', 'latest', 'greatest', 'highest', 'end', 'chip', 'set', 'time', 'releas', 'phone', 'announc', 'sd', 'disappoint', 'wrote', 'phone', 'not', 'sure', 'phone', 'get', 'bought', 'iphon', 'last', 'coupl', 'week', 'rememb', 'restrict', 'io', 'three', 'option', 'smallish', 'phone', 'honor', 'still', 'littl', 'larg', 'googl', 'pixel', 'expens', 'soni', 'x', 'compact', 'three', 'within', 'month', 'kept', 'x', 'compact', 'yep', 'right', 'gave', 'greatest', 'googl', 'premium', 'made', 'honor', 'reason', 'number', 'feel', 'size', 'right', 'joy', 'use', 'immedi', 'realiz', 'phone', 'fast', 'compact', 'i', 'not', 'sure', 'phone', 'silki', 'smooth', 'almost', 'iphon', 'like', 'hang', 'up', 'like', 'everi', 'android', 'like', 'play', 'store', 'overal', 'realli', 'impress', 'perform', 'show', 'spec', 'not', 'everyth', 'someth', 'said', 'real', 'price', 'drop', 'bought', 'mine', 'compar', 'pixel', 'half', 'camara', 'guru', 'not', 'realli', 'speak', 'much', 'take', 'real', 'nice', 'shot', 'good', 'light', 'low', 'light', 'not', 'peopl', 'bash', 'phone', 'not', 'waterproof', 'not', 'bother', 'edit', 'frustrat', 'someon', 'give', 'one', 'star', 'not', 'even', 'talk', 'phone', 'x', 'compact', 'not', 'cover', 'usb', 'prove', 'review', 'ignor', 'amazon', 'need', 'monitor', 'review', 'better'], ['tri', 'almost', 'everi', 'recent', 'soni', 'xperia', 'phone', 'past', 'year', 'far', 'one', 'best', 'sinc', 'xperia', 'compact', 'faster', 'seri', 'antutu', 'everyday', 'usag', 'snappi', 'lag', 'camera', 'soon', 'much', 'quicker', 'better', 'photo', 'unless', 'realli', 'want', 'water', 'proof', 'care', 'benchmark', 'reason', 'get', 'thicker', 'bulkier', 'x', 'perform', 'variant', 'not', 'game', 'phone', 'processor', 'enough', 'feel', 'fast', 'phone', 'daili', 'screen', 'design', 'put', 'level', 'flagship', 'curv', 'flush', 'bezel', 'smooth', 'feel', 'premium', 'iphon', 'well', 'final', 'feel', 'soni', 'polish', 'feel', 'hold', 'hand', 'price', 'could', 'littl', 'cheaper', 'soni', 'alway', 'littl', 'pricier', 'other', 'size', 'perfect', 'balanc', 'think', 'bulki', 'phone', 'smaller', 'phone'], ['work', 'perfect'], ['first', 'last', 'phone', 'samsung', 'galaxi', 'duo', 'upgrad', 'phone', 'one', 'look', 'phonewith', 'much', 'faster', 'perform', 'better', 'build', 'qualiti', 'sinc', 'most', 'use', 'phone', 'communic', 'peopl', 'take', 'pictur', 'watch', 'random', 'youtub', 'bought', 'white', 'version', 'far', 'realli', 'love', 'build', 'qualiti', 'quick', 'charger', 'work', 'pretti', 'well', 'took', 'around', 'hour', 'fulli', 'charg', 'xperia', 'x', 'sinc', 'came', 'old', 'phone', 'camera', 'great', 'screen', 'gorgeous', 'andth', 'phone', 'size', 'perfect', 'weeksaft', 'two', 'week', 'use', 'phone', 'say', 'realli', 'enjoy', 'use', 'batteri', 'life', 'sustain', 'day', 'not', 'use', 'phone', 'often', 'chat', 'look', 'social', 'media', 'brows', 'littl', 'bit', 'use', 'game', 'last', 'hour', 'sinc', 'use', 'phone', 'forcommun', 'brows', 'total', 'fit', 'purpos', 'quick', 'charg', 'featur', 'also', 'work', 'camera', 'superb', 'dual', 'front', 'speaker', 'also', 'great', 'never', 'experienc', 'lag', 'thing', 'realiz', 'build', 'qualiti', 'phone', 'beauti', 'tri', 'compar', 'phoneto', 'friend', 'iphon', 'turn', 'build', 'qualiti', 'differ', 'soni', 'phone', 'thicker', 'still', 'accept', 'negat', 'might', 'experi', 'fingerprint', 'sensor', 'instal', 'not', 'use', 'us', 'version', 'unfortun', 'occasion', 'swift', 'keyboard', 'somehow', 'feel', 'great', 'price', 'phone', 'littl', 'bit', 'cheaper', 'new', 'iphon', 'se', 'easili', 'choos', 'phone', 'iphon', 'se'], ['second', 'soni', 'problem', 'figur', 'could', 'phone', 'decid', 'give', 'soni', 'anoth', 'shot', 'main', 'camera', 'howev', 'sens', 'samsung', 'beat', 'song', 'butt', 'make', 'waterproof', 'soni', 'not', 'anymor', 'got', 'also', 'snap', 'pictur', 'dark', 'feel', 'samsung', 'next', 'phone', 'trend', 'continu', 'also', 'accessori', 'wide', 'avail'], ['realli', 'surpris', 'much', 'bang', 'buck', 'soni', 'advertis', 'miss', 'boat', 'use', 'tracphon', 'system', 'far', 'exceed', 'expect', 'doubt', 'compar', 'xperia', 'spec', 'high', 'end', 'other', 'see', 'mean'], ['i', 'sorri', 'item', 'reciev', 'not', 'exact', 'model', 'instead', 'xperia', 'x', 'compact'], ['like', 'everyth', 'soni', 'xperia', 'x', 'far', 'design', 'perform', 'ergonomicsrecommend', 'accessori', 'xperia', 'x', 'case', 'ringk', 'fusion', 'crystal', 'clear', 'pc', 'back', 'tpu', 'bumper', 'drop', 'absorpt', 'technolog', 'rais', 'bezel', 'protect', 'cover', 'soni', 'xperia', 'x', 'clearsold', 'ringk', 'offici', 'store'], ['awesom', 'phone', 'selfish'], ['amaz', 'phone', 'probabl', 'best', 'soni', 'phone', 'ever', 'own', 'upgrad', 'regret', 'gold', 'color', 'beauti', 'tire', 'black', 'phone', 'decid', 'tri', 'someth', 'new', 'even', 'bought', 'transpar', 'case', 'enjoy', 'color', 'look', 'realli', 'realli', 'good', 'got', 'compliment', 'nice', 'hold', 'hand', 'size', 'perfect', 'everi', 'time', 'touch', 'screen', 'feel', 'awesom', 'round', 'edg', 'big', 'solid', 'free', 'lag', 'storag', 'okay', 'get', 'much', 'less', 'free', 'space', 'ram', 'sensor', 'use', 'thing', 'howev', 'instal', 'firmwar', 'anoth', 'region', 'enabl', 'fear', 'risk', 'not', 'recommend', 'lock', 'sensor', 'us', 'version', 'may', 'alreadi', 'els', 'say', 'camera', 'okay', 'not', 'abl', 'test', 'lot', 'not', 'care', 'much', 'camera', 'definit', 'nice', 'frontal', 'camera', 'flash', 'light', 'rear', 'camera', 'stronger', 'use', 'bank', 'app', 'deposit', 'check', 'hard', 'take', 'good', 'pictur', 'check', 'not', 'enough', 'light', 'around', 'flash', 'strong', 'make', 'check', 'light', 'hard', 'good', 'nice', 'final', 'band', 'realli', 'help', 'connect', 'solid', 'not', 'give', 'could', 'better', 'charg', 'everyday', 'might', 'someth', 'android', 'marshmallow', 'rememb', 'pretti', 'long', 'batteri', 'life', 'lollipop', 'updat', 'mm', 'batteri', 'life', 'signific', 'reduc', 'charg', 'everyday', 'everi', 'even', 'day', 'lollipop', 'funni', 'never', 'seen', 'someon', 'soni', 'phone', 'usa', 'time', 'someon', 'ask', 'brand', 'phone', 'look', 'surpris', 'tell', 'soni', 'phone'], ['second', 'soni', 'problem', 'figur', 'could', 'phone', 'decid', 'give', 'soni', 'anoth', 'shot', 'main', 'camera', 'howev', 'sens', 'samsung', 'beat', 'song', 'butt', 'make', 'waterproof', 'soni', 'not', 'anymor', 'got', 'also', 'snap', 'pictur', 'dark', 'feel', 'samsung', 'next', 'phone', 'trend', 'continu', 'also', 'accessori', 'wide', 'avail'], ['bought', 'phone', 'one', 'month', 'ago', 'birthday', 'gift', 'sister', 'phone', 'not', 'work', 'not', 'even', 'one', 'time', 'phone', 'not', 'turn'], ['poor', 'batteri', 'life', 'fantasi', 'new', 'soni', 'cellphon', 'lost', 'batteri', 'life', 'overnight', 'idl', 'time', 'easi', 'lost', 'batteri', 'life', 'hour', 'disabl', 'app', 'batteri', 'life', 'littl', 'bit', 'better', 'still', 'call', 'smart', 'phone', 'without', 'app', 'order', 'save', 'batteri', 'life'], ['happi', 'purchas'], ['i', 'sorri', 'item', 'reciev', 'not', 'exact', 'model', 'instead', 'xperia', 'x', 'compact'], ['better'], ['love', 'phone', 'much', 'not', 'high', 'end', 'powerhous', 'cpu', 'capabl', 'run', 'everi', 'day', 'display', 'look', 'amaz', 'edg', 'edg', 'design', 'plain', 'sexi', 'camera', 'pretti', 'decent', 'job', 'well', 'got', 'phone', 'plus', 'gb', 'card', 'grand', 'total', 'plus', 'ship', 'fair', 'quick', 'deal', 'not', 'beat', 'hope', 'soni', 'continu', 'deal', 'futur', 'handset'], ['love', 'buy', 'sister', 'want', 'get', 'anoth', 'one'], ['better'], ['hello', 'soni', 'fan', 'order', 'soni', 'xperia', 'xa', 'ultra', 'let', 'tell', 'amaz', 'problem', 'phone', 'larg', 'use', 'everyday', 'driver', 'upgrad', 'galaxi', 'note', 'time', 'would', 'ok', 'ultra', 'not', 'wide', 'instead', 'order', 'xperia', 'xa', 'ultra', 'n', 'love', 'guess', 'phone', 'deserv', 'star', 'instead', 'luck', 'yaa'], ['love', 'phone', 'excel', 'price', 'downfal', 'lte', 'network', 'get', 'h', 'basic', 'phone', 'work', 'like', 'charm', 'otherwis', 'play', 'game', 'realli', 'well', 'even', 'intens', 'one', 'like', 'race', 'sound', 'alon', 'realli', 'well', 'done', 'fenc', 'phone', 'say', 'take', 'leap', 'lte', 'part', 'littl', 'bit', 'downer', 'usag', 'far', 'speed', 'still', 'realli', 'good', 'facebook', 'youtub', 'play', 'well'], ['return', 'window', 'end', 'phone', 'mysteri', 'screen', 'discolor', 'line', 'across', 'screen', 'disappoint'], ['resolut', 'front', 'camera', 'xa', 'ultra', 'receiv', 'mp', 'instead', 'mp', 'pleas', 'see', 'photo', 'attach', 'i', 'would', 'like', 'know', 'defect', 'sinc', 'advertis', 'mp', 'front', 'camera', 'anyon', 'els', 'xa', 'ultra', 'mp', 'front', 'camera', 'resolut', 'besid', 'like', 'display', 'although', 'lowest', 'bright', 'brighter', 'i', 'use', 'come', 'galaxi', 'flash', 'front', 'camera', 'nice', 'i', 'would', 'miss', 'would', 'not', 'stare', 'toward', 'front', 'camera', 'flash', 'long', 'sinc', 'bright', 'eye', 'batteri', 'hrs', 'min', 'time', 'batteri', 'not', 'use', 'button', 'right', 'side', 'camera', 'posit', 'sinc', 'palm', 'kept', 'bump', 'volum', 'camera', 'button', 'less', 'problem', 'touch', 'camera', 'button', 'camera', 'would', 'not', 'activ', 'unless', 'firm', 'depress', 'howev', 'slight', 'touch', 'volum', 'button', 'would', 'volum', 'adjust', 'unintent', 'either', 'way', 'not', 'like', 'button', 'way', 'like', 'definit', 'compromis', 'phone'], ['better'], ['review', 'compar', 'phone', 'htc', 'desir', 'eye', 'android', 'got', 'phone', 'soni', 'microsd', 'deal', 'ish', 'tax', 'free', 'ship', 'amazon', 'told', 'i', 'would', 'get', 'liter', 'came', 'next', 'day', 'hand', 'yes', 'extrem', 'bigger', 'htc', 'whole', 'inch', 'keyboard', 'felt', 'much', 'better', 'xperia', 'xa', 'ultra', 'finger', 'space', 'press', 'right', 'key', 'qualiti', 'wise', 'not', 'impress', 'htc', 'right', 'next', 'xperia', 'fool', 'htc', 'brighter', 'clear', 'color', 'screen', 'even', 'stock', 'xperia', 'wallpap', 'oh', 'boy', 'sad', 'minut', 'open', 'color', 'wash', 'normal', 'sunlit', 'room', 'way', 'save', 'prefer', 'option', 'top', 'superior', 'auto', 'biggest', 'differ', 'htc', 'stock', 'camera', 'selfi', 'front', 'camera', 'way', 'beautifi', 'would', 'download', 'separ', 'app', 'front', 'camera', 'even', 'clear', 'focus', 'htc', 'superior', 'deal', 'breaker', 'camera', 'shutter', 'speed', 'camera', 'start', 'speed', 'pictur', 'process', 'captur', 'slower', 'xperia', 'open', 'app', 'wifi', 'network', 'open', 'app', 'data', 'plan', 'download', 'speed', 'wifi', 'data', 'wise', 'start', 'power', 'slower', 'though', 'use', 'htc', 'sens', 'home', 'layout', 'soni', 'ui', 'not', 'hard', 'navig', 'found', 'everyth', 'need', 'quick', 'fast', 'read', 'mean', 'soni', 'one', 'stuck', 'notif', 'drop', 'menu', 'vanilla', 'android', 'nice', 'differ', 'look', 'htc', 'could', 'fit', 'option', 'set', 'drop', 'extra', 'row', 'bottom', 'option', 'rather', 'would', 'think', 'fit', 'bigger', 'screen', 'soni', 'not', 'program', 'util', 'way', 'softwar', 'updat', 'straight', 'box', 'though', 'first', 'quick', 'updat', 'second', 'took', 'littl', 'longer', 'okay', 'slight', 'overheat', 'first', 'start', 'set', 'normal', 'phone', 'concern', 'heat', 'top', 'right', 'corner', 'camera', 'an', 'not', 'hand', 'usual', 'hold', 'phone', 'overheat', 'would', 'know', 'gyroscop', 'not', 'believ', 'one', 'answer', 'bestbuy', 'product', 'page', 'mean', 'pokemon', 'go', 'suffer', 'htc', 'gyro', 'shrug', 'not', 'come', 'adapt', 'storag', 'enabl', 'would', 'program', 'htc', 'requir', 'fast', 'enough', 'sd', 'minimum', 'not', 'cheap', 'least', 'like', 'give', 'hiccup', 'extrem', 'easi', 'feel', 'pleasant', 'strong', 'enough', 'feel', 'not', 'strong', 'phone', 'move', 'tabl', 'bottom', 'still', 'heard', 'htc', 'front', 'face', 'speaker', 'not', 'compar', 'effect', 'sinc', 'front', 'face', 'alreadi', 'not', 'realli', 'test', 'anyth', 'batteri', 'life', 'gps', 'phone', 'clariti', 'pleas', 'ask', 'question', 'probabl', 'abl', 'tell', 'direct', 'short', 'time', 'return'], ['realli', 'like', 'inki', 'except', 'batteri', 'run', 'quick', 'good'], ['thank', 'item', 'great'], ['get', 'cellfon', 'notic', 'box', 'not', 'headphon', 'bought', 'two', 'xperia', 'xz', 'not', 'headphon', 'clearer', 'fingerprint', 'sensor', 'not', 'work', 'version'], ['phone', 'not', 'work', 'sim', 'card', 'contact', 'soni', 'offici', 'told', 'not', 'know', 'carrier', 'compat', 'xperia', 'ask', 'contact', 'seller', 'accord', 'amazon', 'repres', 'got', 'bad', 'phone', 'not', 'inventori', 'get', 'refund', 'not', 'know', 'i', 'one', 'experienc', 'issu', 'star', 'good', 'look'], ['good', 'phone', 'exterior', 'stylish', 'eye', 'catch', 'materi', 'perform', 'wise', 'smooth', 'fast', 'not', 'know', 'detail', 'win', 'loos', 'iphon', 'samsung', 'overal', 'exterior', 'perform', 'combo', 'win', 'total', 'battl', 'differ', 'everyday', 'cell', 'phone', 'see', 'everi', 'hand', 'got', 'awesom', 'deal', 'cyber', 'monday', 'make', 'valu', 'good'], ['beauti', 'design', 'feel', 'expens', 'good', 'hand', 'not', 'big', 'not', 'small', 'cours', 'relat', 'differ', 'size', 'screen', 'color', 'rich', 'vibrant', 'use', 'view', 'pic', 'watch', 'flew', 'threw', 'setup', 'instal', 'last', 'android', 'backup', 'record', 'time', 'also', 'updat', 'nougat', 'set', 'first', 'time', 'latest', 'android', 'os', 'right', 'start', 'great', 'bonus', 'yes', 'intern', 'version', 'intern', 'memori', 'vs', 'us', 'microsd', 'expand', 'memori', 'not', 'realli', 'issu', 'plus', 'not', 'us', 'carrier', 'provid', 'full', 'bandwidth', 'support', 'intern', 'version', 'might', 'not', 'get', 'lte', 'research', 'buy', 'base', 'spec', 'right', 'compar', 'phone', 'market', 'new', 'googl', 'pixel', 'alreadi', 'xz', 'watch', 'pixel', 'announc', 'realli', 'like', 'final', 'also', 'concern', 'first', 'gen', 'tech', 'googl', 'amaz', 'compani', 'i', 'burn', 'make', 'point', 'never', 'buy', 'first', 'new', 'tech', 'releas', 'expens', 'get', 'big', 'model', 'insur', 'go', 'sent', 'back', 'buck', 'ask', 'lot', 'smartphon', 'even', 'one', 'googl', 'made', 'look', 'two', 'stuck', 'xz', 'could', 'not', 'batteri', 'life', 'realli', 'good', 'use', 'day', 'without', 'charg', 'still', 'juic', 'left', 'mine', 'came', 'soni', 'rapid', 'charg', 'bought', 'anker', 'cabl', 'bought', 'amazon', 'cours', 'charg', 'quick', 'think', 'minut', 'went', 'batteri', 'life', 'not', 'tech', 'profession', 'mean', 'i', 'averag', 'consum', 'tech', 'savvi', 'valu', 'dollar', 'go', 'qualiti', 'product', 'i', 'get', 'least', 'year', 'solid', 'use', 'yes', 'android', 'phone', 'market', 'technic', 'spec', 'not', 'everyth', 'need', 'get', 'crap', 'batteri', 'life', 'bigger', 'processor', 'better', 'screen', 'finger', 'print', 'scanner', 'have', 'need', 'juic', 'run', 'tack', 'harder', 'phone', 'work', 'hotter', 'run', 'crappier', 'batteri', 'life', 'i', 'happi', 'soni', 'xz', 'take', 'advantag', 'everyth', 'want', 'premium', 'phone', 'spec', 'work', 'beauti', 'design', 'made', 'work', 'hard', 'without', 'one', 'best', 'android', 'phone', 'i', 'ever', 'use', 'i', 'use', 'major', 'samsung', 'motorola', 'htc', 'none', 'compar', 'hope', 'sell', 'well', 'soni', 'invest', 'us', 'market', 'wait', 'android', 'phone', 'like', 'xz', 'year'], ['not', 'purchas', 'soni', 'xperia', 'sinc', 'origin', 'z', 'though', 'long', 'touch', 'sound', 'effect', 'alway', 'someth', 'held', 'back', 'model', 'tech', 'review', 'alway', 'harsh', 'xperia', 'let', 'tell', 'soni', 'top', 'game', 'xz', 'phone', 'feel', 'quit', 'like', 'xperia', 'one', 'feel', 'absolut', 'best', 'far', 'forest', 'blue', 'version', 'chameleon', 'effect', 'look', 'black', 'one', 'minut', 'blue', 'purpl', 'next', 'matt', 'metal', 'finish', 'back', 'loop', 'design', 'give', 'unparallel', 'luxuri', 'finish', 'size', 'perfect', 'whole', 'thing', 'surpris', 'lightweight', 'camera', 'take', 'fantast', 'photo', 'daylight', 'low', 'light', 'ar', 'effect', 'blast', 'play', 'perform', 'butteri', 'smooth', 'even', 'nougat', 'updat', 'not', 'worri', 'enough', 'lack', 'fingerprint', 'sensor', 'flash', 'european', 'softwar', 'mess', 'warranti', 'perfect', 'exact', 'way', 'feel', 'great', 'back', 'xperia', 'famili'], ['alway', 'soni', 'fan', 'boy', 'mani', 'would', 'probabl', 'say', 'never', 'issu', 'soni', 'cellphon', 'use', 'three', 'year', 'probabl', 'drop', 'charg', 'everi', 'night', 'kept', 'work', 'like', 'stallion', 'xz', 'i', 'happi', 'not', 'worri', 'low', 'memori', 'water', 'dust', 'proof', 'drop', 'catch', 'fire', 'headphon', 'jack', 'etc', 'soni', 'alway', 'ahead', 'game', 'sinc', 'not', 'popular', 'state', 'guess', 'not', 'mani', 'buy', 'go', 'switch', 'samsung', 'get', 'note', 'know', 'happen', 'also', 'think', 'appl', 'guy', 'bit', 'late', 'mani', 'thing', 'not', 'freedom', 'like', 'android'], ['phone', 'way', 'better', 'review', 'websit', 'give', 'credit', 'intern', 'version', 'unlik', 'version', 'give', 'fingerprint', 'sensor', 'capabl', 'high', 'recommend', 'version', 'take', 'risk', 'though', 'soni', 'probabl', 'not', 'honor', 'warranti', 'repair', 'need', 'one', 'insid', 'conveni', 'fingerprint', 'sensor', 'invalu', 'worth', 'event', 'phone', 'top', 'end', 'term', 'size', 'compar', 'screen', 'squar', 'corner', 'take', 'get', 'use', 'howev', 'materi', 'fit', 'finish', 'top', 'tier', 'i', 'lot', 'phone', 'android', 'io', 'compar', 'screen', 'blend', 'flawless', 'bodi', 'due', 'waterproof', 'capabl', 'phone', 'case', 'definit', 'not', 'fingerprint', 'magnet', 'screen', 'color', 'gamut', 'closer', 'authent', 'true', 'color', 'previous', 'soni', 'phone', 'well', 'mani', 'phone', 'found', 'realist', 'galaxi', 'absolut', 'beauti', 'also', 'like', 'right', 'amount', 'bright', 'display', 'not', 'dim', 'not', 'bright', 'zte', 'axon', 'alway', 'dim', 'requir', 'brighten', 'display', 'make', 'readabl', 'pleas', 'eye', 'not', 'phone', 'soni', 'adapt', 'bright', 'featur', 'work', 'great', 'think', 'soni', 'hit', 'mark', 'describ', 'phone', 'speed', 'oper', 'fluid', 'paus', 'hiccup', 'snapdragon', 'processor', 'android', 'marshmallow', 'right', 'recip', 'phone', 'back', 'phone', 'get', 'mild', 'warm', 'phone', 'put', 'heavi', 'process', 'task', 'probabl', 'slight', 'less', 'mani', 'premium', 'phone', 'like', 'camera', 'well', 'although', 'like', 'mani', 'review', 'not', 'calib', 'iphon', 'also', 'camera', 'outstand', 'soni', 'differ', 'color', 'represent', 'photo', 'not', 'natur', 'like', 'skin', 'tone', 'exampl', 'iphon', 'produc', 'realist', 'skin', 'color', 'howev', 'soni', 'still', 'good', 'camera', 'better', 'use', 'phone', 'work', 'flawless', 'consist', 'get', 'lte', 'speed', 'everywher', 'take', 'away', 'phone', 'would', 'squar', 'corner', 'take', 'get', 'use', 'fact', 'version', 'not', 'fingerprint', 'sensor', 'capabl', 'soni', 'come', 'need', 'fix', 'pleas', 'pay', 'need', 'pay', 'necessari', 'patent', 'get', 'done', 'potenti', 'realli', 'sell', 'phone', 'otherwis', 'realli', 'great', 'phone', 'high', 'recommend'], ['xperia', 'z', 'line', 'past', 'xz', 'phone', 'fast', 'feel', 'better', 'android', 'phone', 'market', 'recommend', 'case', 'day', 'phone', 'decid', 'sell', 'old', 'galaxi', 'lag', 'run', 'slower', 'xz', 'camera', 'good', 'recommend', 'run', 'manual', 'surpris', 'lte', 'speed', 'run', 'faster', 'galaxi', 'possibl', 'antenna', 'soni', 'better', 'recommend', 'buy', 'intern', 'version', 'finger', 'print', 'work', 'fine', 'still', 'get', 'year', 'warranti', 'soni', 'need', 'ship', 'taiwan'], ['purchas', 'phone', 'qualiti', 'deal', 'shop', 'center', 'purchas', 'phone', 'ship', 'next', 'day', 'qualiti', 'deal', 'shop', 'center', 'taichung', 'taiwan', 'dhl', 'express', 'mail', 'addit', 'cost', 'receiv', 'phone', 'author', 'soni', 'taiwan', 'store', 'also', 'includ', 'mean', 'get', 'one', 'year', 'warranti', 'soni', 'mobil', 'taiwan', 'case', 'make', 'differ', 'one', 'biggest', 'market', 'soni', 'mobil', 'soni', 'usual', 'pack', 'extra', 'featur', 'phone', 'releas', 'taiwan', 'compar', 'us', 'one', 'main', 'reason', 'decid', 'get', 'one', 'taiwan', 'xz', 'box', 'seal', 'shown', 'soni', 'phone', 'dual', 'sim', 'gb', 'intern', 'storag', 'us', 'version', 'gb', 'storag', 'includ', 'int', 'soni', 'mobil', 'soni', 'soni', 'usb', 'soni', 'usb', 'type', 'c', 'cablesinc', 'taiwan', 'version', 'xz', 'fingerprint', 'scanner', 'enabl', 'right', 'box', 'need', 'root', 'like', 'us', 'version', 'sim', 'card', 'work', 'well', 'easili', 'control', 'via', 'set', 'use', 'nano', 'sim', 'sandisk', 'micro', 'sd', 'card', 'boast', 'total', 'storag', 'almost', 'speed', 'test', 'network', 'yield', 'around', 'mbps', 'near', 'screen', 'captur', 'equival', 'us', 'countri', 'use', 'indic', 'lte', 'os', 'close', 'vanilla', 'android', 'current', 'xz', 'android', 'solid', 'choic', 'look', 'differ', 'choic', 'compar', 'normal', 'samsung', 'lg', 'htc', 'even', 'iphon', 'plus', 'io'], ['perfect', 'size', 'make', 'not', 'miss', 'tablet', 'smaller', 'phone', 'sexi', 'camera', 'crisp', 'screen', 'snappi', 'waterproof', 'els', 'want', 'perfect', 'phone'], ['everyth', 'ok', 'far', 'water', 'resist', 'great', 'luvin', 'got', 'today', 'batteri', 'not', 'take', 'long', 'die'], ['much', 'research', 'tri', 'find', 'phone', 'eventu', 'chose', 'one', 'due', 'afford', 'price', 'decent', 'review', 'realli', 'wish', 'kept', 'shop', 'ador', 'htc', 'microphon', 'went', 'could', 'not', 'use', 'without', 'speaker', 'headset', 'realli', 'regret', 'buy', 'phone', 'wish', 'would', 'kept', 'use', 'headset', 'old', 'one', 'phone', 'data', 'function', 'nice', 'especi', 'wifi', 'atroci', 'signal', 'even', 'interst', 'everyon', 'els', 'car', 'full', 'bar', 'sometim', 'not', 'giant', 'disappoint', 'even', 'sit', 'next', 'repeat', 'not', 'get', 'anyth', 'time', 'hous', 'would', 'not', 'buy', 'reason'], ['screen', 'blackout', 'use', 'disrupt', 'oper'], ['clean', 'design', 'shape', 'high', 'resolut', 'screen', 'qualiti', 'sound', 'optic', 'len', 'camera', 'qualiti', 'waterproof', 'best', 'smartphon', 'applic', 'could', 'camera'], ['not', 'think', 'phone', 'brand', 'new', 'new', 'one', 'unlucki', 'one', 'get', 'bad', 'phone', 'heat', 'littl', 'use', 'discharg', 'quick', 'not', 'satisfi', 'consid', 'bad', 'review', 'not', 'gotten', 'soni', 'xperia'], ['sharp', 'devic', 'respons', 'even', 'soni', 'skin', 'softwar', 'clear', 'audio', 'talk', 'use', 'indonesian', 'network', 'fast', 'download', 'wifi', 'thought', 'would', 'uncomfort', 'hold', 'due', 'shape', 'bit', 'devic', 'fit', 'nice', 'hand', 'listen', 'music', 'shower', 'awesom', 'clear', 'dispit', 'review', 'state', 'sound', 'muffl', 'expect', 'seal', 'devic', 'impress', 'screen', 'respons', 'overal', 'function', 'phone', 'kudo', 'soni'], ['great', 'phone', 'beauti', 'design', 'perfect', 'function', 'nice', 'color', 'purpl'], ['bought', 'xperia', 'z', 'model', 'week', 'absolut', 'love', 'bought', 'met', 'criteria', 'water', 'proof', 'i', 'take', 'word', 'bad', 'experi', 'motorola', 'razr', 'suppos', 'waterproof', 'well', 'turn', 'not', 'water', 'proof', 'said', 'move', 'also', 'want', 'quad', 'core', 'decent', 'amount', 'ram', 'soni', 'deliv', 'well', 'updat', 'mine', 'soon', 'got', 'snappi', 'lag', 'also', 'want', 'sd', 'slot', 'could', 'transfer', 'card', 'old', 'samsung', 'along', 'data', 'plus', 'want', 'android', 'phone', 'ipad', 'realli', 'like', 'appl', 'product', 'find', 'itun', 'troubl', 'worth', 'run', 'window', 'desktop', 'like', 'window', 'not', 'phone', 'window', 'rt', 'long', 'way', 'go', 'readi', 'prime', 'time', 'android', 'viabl', 'choic', 'smart', 'also', 'want', 'decent', 'camera', 'flash', 'soni', 'deliv', 'well', 'take', 'pretti', 'decent', 'pictur', 'not', 'perfect', 'opinion', 'iphon', 'camera', 'user', 'friend', 'take', 'slight', 'better', 'pictur', 'thing', 'soni', 'camera', 'play', 'set', 'get', 'nice', 'pictur', 'superior', 'auto', 'featur', 'suppos', 'take', 'nice', 'pictur', 'without', 'manual', 'set', 'seem', 'come', 'better', 'set', 'manual', 'daylight', 'pictur', 'perfect', 'low', 'light', 'thing', 'get', 'tricki', 'lot', 'camera', 'softwar', 'option', 'phone', 'not', 'find', 'smart', 'phone', 'will', 'play', 'differ', 'filter', 'focus', 'option', 'get', 'nice', 'low', 'light', 'pictur', 'find', 'singl', 'auto', 'focus', 'backlight', 'correct', 'seem', 'produc', 'best', 'low', 'light', 'pictur', 'not', 'quit', 'replac', 'pocket', 'camera', 'definit', 'not', 'slr', 'camera', 'either', 'smart', 'phone', 'camera', 'also', 'want', 'high', 'speed', 'mobil', 'data', 'way', 'better', 'old', 'samsung', 'would', 'nice', 'would', 'includ', 'lte', 'radio', 'not', 'go', 'happen', 'want', 'us', 'market', 'xperia', 'z', 'lte', 'radio', 'get', 'mobil', 'get', 'mobil', 'logo', 'back', 'anoth', 'mobil', 'logo', 'lock', 'screen', 'use', 'custom', 'boot', 'loader', 'i', 'would', 'rather', 'live', 'without', 'lte', 'radio', 'stay', 'unlock', 'model', 'way', 'not', 'buy', 'model', 'plan', 'use', 'us', 'design', 'use', 'oversea', 'not', 'give', 'lte', 'band', 'us', 'give', 'old', 'edg', 'network', 'like', 'go', 'back', 'dial', 'thing', 'want', 'nfc', 'chip', 'actual', 'biggest', 'gripe', 'soni', 'nfc', 'chip', 'support', 'android', 'beam', 'due', 'secur', 'element', 'block', 'work', 'googl', 'wallet', 'tap', 'pay', 'work', 'around', 'like', 'root', 'phone', 'use', 'root', 'explor', 'chang', 'devic', 'name', 'someth', 'like', 'nexus', 'galaxi', 'not', 'root', 'phone', 'abl', 'pay', 'cup', 'coffe', 'phone', 'current', 'solut', 'use', 'googl', 'wallet', 'debit', 'card', 'also', 'i', 'read', 'kit', 'kat', 'updat', 'due', 'month', 'suppos', 'fix', 'googl', 'wallet', 'requir', 'unlock', 'want', 'tether', 'built', 'nativ', 'without', 'root', 'app', 'also', 'sip', 'built', 'nativ', 'work', 'perfect', 'app', 'requir', 'need', 'gps', 'cours', 'work', 'well', 'one', 'main', 'requir', 'good', 'sound', 'soni', 'hit', 'nail', 'head', 'sound', 'qualiti', 'love', 'walkman', 'app', 'also', 'built', 'fm', 'radio', 'nice', 'best', 'featur', 'phone', 'chipset', 'control', 'widget', 'nice', 'not', 'go', 'set', 'control', 'wif', 'bluetooth', 'mobil', 'data', 'nfc', 'backlight', 'etc', 'control', 'widget', 'use', 'batteri', 'life', 'accept', 'complaint', 'also', 'want', 'screen', 'captur', 'built', 'nativ', 'android', 'work', 'great', 'press', 'power', 'button', 'volum', 'button', 'one', 'probabl', 'biggest', 'requir', 'phone', 'work', 'well', 'realli', 'first', 'call', 'made', 'friend', 'jim', 'said', 'call', 'sound', 'like', 'next', 'room', 'clear', 'call', 'great', 'cellular', 'recept', 'even', 'area', 'weak', 'signal', 'phone', 'would', 'drop', 'call', 'xperia', 'thing', 'lack', 'time', 'built', 'emoji', 'keyboard', 'text', 'friend', 'iphon', 'come', 'whatsapp', 'pre', 'instal', 'emoji', 'keyboard', 'work', 'great', 'howev', 'understand', 'kit', 'kat', 'updat', 'final', 'add', 'emoji', 'keyboard', 'well', 'hope', 'resolv', 'realli', 'like', 'phone', 'thin', 'light', 'also', 'like', 'not', 'phone', 'everyon', 'els', 'size', 'phone', 'seem', 'phablet', 'categori', 'phone', 'categori', 'still', 'fit', 'pocket', 'sinc', 'got', 'not', 'carri', 'ipad', 'around', 'work', 'anymor', 'screen', 'size', 'big', 'enough', 'actual', 'read', 'email', 'view', 'web', 'page', 'way', 'pros', 'phone', 'con', 'would', 'recommend', 'anyon', 'look', 'qualiti', 'unlock', 'gsm', 'smart', 'phone', 'reason', 'price', 'hard', 'core', 'tech', 'junki', 'want', 'latest', 'updat', 'soon', 'come', 'lte', 'radio', 'unlock', 'phone', 'mayb', 'buy', 'nexus', 'skin', 'unlock', 'android', 'phone', 'xperia', 'best', 'best'], ['excel'], ['simpli', 'good', 'design', 'smart', 'phone', 'batteri', 'good', 'lcd', 'screen', 'weak', 'think'], ['phone', 'extrem', 'nice', 'display', 'gorgeous', 'not', 'mention', 'pictur', 'camera', 'produc', 'high', 'recommend', 'phone', 'one', 'look', 'high', 'qualiti', 'phone'], ['thank', 'much', 'soni', 'amaz'], ['lóve', 'better', 'iphon', 'galaxia', 'manía'], ['phone', 'month', 'straighttalk', 'bring', 'phone', 'plan', 'everyth', 'work', 'amaz', 'problem', 'not', 'bother', 'work', 'amaz', 'pay', 'month', 'unlimit', 'everyth', 'phone', 'like', 'picki', 'littl', 'bit', 'faster', 'speed', 'phone', 'great', 'fenc', 'buy', 'buy', 'worth', 'pros', 'straight', 'talk', 'bring', 'phone', 'unlimit', 'everyth', 'plan', 'work', 'like', 'charm', 'fast', 'speed', 'proof', 'beer', 'proof', 'control', 'psp', 'emul', 'hd', 'graphic', 'set', 'lag', 'amaz', 'phone', 'look', 'crystal', 'clear', 'sometim', 'watch', 'hulu', 'netflix', 'phone', 'instead', 'tv', 'like', 'premium', 'phone', 'not', 'someth', 'plastic', 'rom', 'amaz', 'home', 'not', 'big', 'deal', 'first', 'put', 'micro', 'sd', 'card', 'delet', 'everyth', 'without', 'promt', 'format', 'get', 'music', 'widget', 'stop', 'work', 'reboot', 'phone', 'happen', 'everi', 'one', 'two', 'galaxi', 'sound', 'qualiti', 'music', 'output', 'ehh', 'still', 'not', 'bad'], ['horribl', 'order', 'phone', 'got', 'knockoff', 'complet', 'diffrent', 'name'], ['small', 'hand', 'day', 'cell', 'phone', 'big', 'screen', 'heavi', 'weight', 'except', 'iphon', 'prefer', 'android', 'order', 'cell', 'phone', 'actual', 'first', 'sudden', 'broken', 'immedi', 'refund', 'first', 'reorder', 'second', 'evid', 'much', 'love', 'phone'], ['great', 'product'], ['phone', 'great', 'great', 'perform', 'look', 'nice', 'etc', 'problem', 'qualiti', 'construct', 'take', 'excel', 'care', 'electron', 'phone', 'not', 'except', 'bought', 'protect', 'case', 'never', 'drop', 'hit', 'sat', 'put', 'pressur', 'insid', 'pocket', 'abus', 'way', 'yet', 'month', 'bought', 'headphon', 'jack', 'plug', 'start', 'get', 'wide', 'reason', 'soon', 'stop', 'work', 'bought', 'bluetooth', 'headset', 'i', 'use', 'ever', 'wors', 'came', 'month', 'ago', 'month', 'purchas', 'full', 'vertic', 'sector', 'digit', 'stop', 'work', 'nowher', 'screen', 'perfect', 'condit', 'whatev', 'reason', 'touchscreen', 'underneath', 'not', 'work', 'proper', 'anymor', 'attach', 'pictur', 'hardwar', 'test', 'see', 'size', 'sector', 'also', 'pictur', 'phone', 'see', 'damag', 'also', 'found', 'number', 'peopl', 'complain', 'similar', 'problem', 'tech', 'support', 'blog', 'display', 'behav', 'errat', 'time', 'find', 'ridicul', 'see', 'everyon', 'around', 'seem', 'samsung', 'crack', 'screen', 'nonetheless', 'detect', 'finger', 'problem', 'disappoint', 'say', 'second', 'soni', 'phone', 'i', 'throughout', 'past', 'decad', 'malfunct', 'within', 'month', 'purchas', 'despit', 'care', 'particular', 'case', 'problem', 'solv', 'buy', 'new', 'screen', 'cost', 'around', 'caveat', 'phone', 'longer', 'waterproof'], ['phone', 'far', 'brittl', 'one', 'drop', 'feet', 'crack', 'back', 'anoth', 'small', 'fall', 'crack', 'screen', 'made', 'useless', 'sever', 'month', 'repair', 'phone', 'fell', 'got', 'small', 'crack', 'screen', 'render', 'touchscreen', 'not', 'expect', 'rug', 'phone', 'expect', 'handl', 'everyday', 'wear', 'tear', 'includ', 'surviv', 'modest', 'fall', 'slip', 'hand'], ['front', 'glass', 'not', 'glu'], ['use', 'month', 'work', 'well', 'prefer', 'small', 'size', 'phone', 'fit', 'hand', 'long', 'batteri', 'life', 'decent', 'camera', 'minor', 'issu', 'screen', 'not', 'turn', 'restart', 'resolv', 'right', 'face', 'data', 'connect', 'issu', 'usual', 'restart', 'data', 'still', 'unclear', 'happen', 'use', 'batteri', 'last', 'day', 'one', 'full', 'charg', 'regular', 'usag', 'use', 'wifi', 'near', 'entir', 'day', 'low', 'bright', 'sleek', 'feel', 'hold', 'hand', 'although', 'use', 'case', 'run', 'low', 'memori', 'lot', 'pictur', 'heavi', 'app', 'like', 'spotifi', 'facebook', 'messeng'], ['arriv', 'perfect', 'condit', 'ok', 'not', 'support', 'us', 'carrier', 'run', 'fine', 'lte', 'not', 'support', 'phone', 'call', 'explain', 'support', 'shoot', 'foot', 'overus', 'data', 'network', 'email', 'brows', 'downsid', 'compact', 'show', 'unknown', 'screen', 'fantast', 'not', 'let', 'deter', 'screen', 'size', 'clear', 'youtub', 'play', 'great', 'stereo', 'quiet', 'speaker', 'phone', 'clariti', 'excel', 'loud', 'camera', 'great', 'soni', 'built', 'email', 'good', 'enough', 'not', 'need', 'itś', 'calendar', 'remov', 'way', 'set', 'german', 'easili', 'switch', 'english', 'mobil', 'network', 'switch', 'euinternet', 'type', 'set', 'anoth', 'phone'], ['great', 'phone'], ['work', 'expect', 'use', 'japan', 'south', 'east', 'asia', 'indonesia', 'phone', 'work', 'perfect', 'deliveri', 'time', 'christma'], ['excelent'], ['deliv', 'bust', 'speaker'], ['phone', 'not', 'work', 'dindt', 'charg', 'not', 'turn', 'onth', 'phone', 'not', 'mani', 'piec', 'arm', 'adhes', 'tapethi', 'fraud'], ['good'], ['excel'], ['perfect', 'i', 'fulli', 'satisfi'], ['i', 'love', 'new', 'xperia', 'alreadi', 'own', 'decid', 'upgrad', 'best', 'decis', 'ever', 'seller', 'nice', 'phone', 'arriv', 'time', 'total', 'brand', 'new'], ['phone', 'great', 'charger', 'not', 'use', 'us'], ['excel', 'product', 'happi', 'purchas'], ['good'], ['excel'], ['good', 'phone'], ['good', 'phone'], ['great', 'phone', 'problem', 'i', 'thus', 'far', 'four', 'month', 'use', 'sygic', 'navig', 'refus', 'work', 'phone', 'previous', 'purchas', 'use', 'often', 'realiz', 'problem', 'like', 'end', 'sygic', 'howev', 'app', 'troubl', 'also', 'issu', 'i', 'sygic', 'year', 'use'], ['way', 'better', 'iphon'], ['phone', 'authent', 'not', 'carrier', 'network', 'logo', 'anywher', 'pure', 'standard', 'xperia', 'would', 'find', 'soni', 'store', 'phone', 'store', 'carrier', 'soni', 'one', 'thing', 'though', 'think', 'made', 'region', 'contain', 'sever', 'chines', 'app', 'coupl', 'function', 'chines', 'neverheless', 'phone', 'unlock', 'like', 'work', 'anywher', 'chines', 'function', 'natur', 'automat', 'chang', 'prefer', 'languag', 'put', 'sim', 'phone', 'work', 'network', 'provid', 'chines', 'app', 'phone', 'slim', 'nice', 'solid', 'look', 'wide', 'screen', 'great', 'watch', 'lot', 'good', 'con', 'found', 'audio', 'volum', 'love', 'listen', 'music', 'lot', 'could', 'big', 'downsid', 'volum', 'not', 'go', 'high', 'function', 'freez', 'batteri', 'phone', 'use', 'high', 'play', 'video', 'game', 'app', 'etc', 'backsid', 'phone', 'heat', 'take', 'batteri', 'charg', 'need', 'camera', 'app', 'take', 'realli', 'good', 'pictur', 'standard', 'camera', 'not', 'take', 'great', 'photo', 'even', 'phone', 'mp'], ['possibl', 'phone', 'drop', 'height', 'less', 'broken', 'touch', 'mica', 'not', 'get', 'venezuela'], ['receiv', 'instead', 'say', 'phone', 'perfect', 'expect', 'not', 'one', 'want', 'dealer', 'said', 'settl', 'refund', 'paid', 'got', 'issu', 'like', 'thr', 'hotspot', 'not', 'work', 'cos', 'connect', 'verizon', 'could', 'not', 'updat', 'lollipop', 'although', 'soni', 'releas', 'month', 'ago', 'z', 'seri', 'not', 'connect', 'pc', 'companion', 'verizon', 'connect', 'overal', 'wish', 'order', 'still', 'not', 'bad'], ['i', 'realli', 'piss', 'right', 'got', 'phone', 'today', 'not', 'work', 'screen', 'glitch', 'suppos', 'gift', 'wife', 'want', 'replac', 'money', 'back'], ['eleg', 'phone', 'not', 'like', 'camera', 'button', 'locat', 'i', 'constant', 'press', 'accid'], ['tl', 'dr', 'buy', 'one', 'understand', 'shortcom', 'apart', 'general', 'heat', 'unreli', 'focus', 'great', 'allround', 'make', 'sens', 'world', 'pick', 'last', 'year', 'flagship', 'reput', 'brand', 'like', 'soni', 'save', 'near', 'plan', 'buy', 'today', 'flagship', 'lost', 'phone', 'car', 'dishonest', 'driver', 'not', 'honor', 'request', 'get', 'phone', 'back', 'look', 'phone', 'good', 'perform', 'screen', 'camera', 'choos', 'nextbit', 'robin', 'nexus', 'oneplus', 'moto', 'g', 'phone', 'silent', 'admir', 'soni', 'product', 'sinc', 'childhood', 'make', 'mistak', 'soni', 'arsenal', 'camera', 'bag', 'slip', 'deal', 'amazon', 'immedi', 'order', 'one', 'knew', 'shortcom', 'phone', 'come', 'batch', 'product', 'let', 'snapdragon', 'processor', 'still', 'took', 'chanc', 'price', 'offer', 'impress', 'unboxingth', 'phone', 'solidth', 'phone', 'look', 'beauti', 'glossi', 'preinstal', 'screen', 'protectorth', 'copper', 'color', 'mitig', 'smudg', 'dust', 'box', 'came', 'travel', 'adaptor', 'us', 'set', 'headphon', 'mic', 'not', 'speak', 'origin', 'one', 'counter', 'fake', 'charg', 'cabl', 'warranti', 'initi', 'setupsinc', 'intern', 'version', 'came', 'chines', 'languag', 'default', 'not', 'take', 'much', 'time', 'set', 'back', 'phone', 'get', 'warm', 'initi', 'setup', 'phone', 'includ', 'iphon', 'tend', 'get', 'warmer', 'bunch', 'updat', 'soni', 'wait', 'instal', 'updat', 'setup', 'took', 'almost', 'hour', 'restart', 'phone', 'phone', 'felt', 'less', 'hot', 'snappieraft', 'day', 'useth', 'phone', 'run', 'marshmallow', 'still', 'tend', 'get', 'warmer', 'back', 'even', 'normal', 'brows', 'use', 'without', 'case', 'feel', 'uncomfort', 'heat', 'good', 'part', 'get', 'cooler', 'app', 'work', 'flawlesslyther', 'one', 'instanc', 'random', 'reboot', 'watch', 'video', 'facebook', 'facebook', 'new', 'app', 'histori', 'littl', 'mischiev', 'resourc', 'phone', 'surpris', 'cool', 'default', 'email', 'app', 'calendar', 'app', 'tune', 'modern', 'usefulth', 'soni', 'lifelog', 'app', 'stellar', 'fitnessth', 'devic', 'music', 'player', 'decent', 'sound', 'qualiti', 'also', 'good', 'headphon', 'not', 'also', 'come', 'fm', 'radio', 'quit', 'surpris', 'day', 'flagship', 'general', 'avoid', 'thembatteri', 'performanceth', 'batteri', 'perform', 'not', 'stellar', 'get', 'day', 'easilyth', 'charg', 'time', 'bundl', 'adapt', 'slowphon', 'not', 'feel', 'warm', 'chargingperformanceperform', 'never', 'issu', 'perform', 'even', 'cpu', 'get', 'throttl', 'get', 'ram', 'adequ', 'normal', 'person', 'day', 'day', 'not', 'disappoint', 'perform', 'qualiti', 'wifi', 'recept', 'good', 'issu', 'till', 'easili', 'visibl', 'sunlightb', 'lcd', 'screen', 'not', 'wow', 'immedi', 'start', 'appreci', 'time', 'subtl', 'natur', 'neutral', 'color', 'temperatureturn', 'engin', 'display', 'set', 'save', 'batteri', 'not', 'find', 'much', 'one', 'not', 'reliabl', 'iphon', 'samsung', 'work', 'proper', 'get', 'great', 'need', 'patient', 'understand', 'shortcom', 'learn', 'use', 'produc', 'great', 'detail', 'shot', 'manual', 'mode', 'limit', 'may', 'not', 'pleas', 'enthusiastsverdictknow', 'shortcom', 'understand', 'price', 'offer', 'not', 'dissapointedi', 'use', 'phone', 'round', 'edg', 'ultra', 'slim', 'nano', 'temper', 'glass', 'screen', 'protector', 'soni', 'xperia', 'plus', 'not', 'resist', 'soni', 'xperia', 'xperia', 'case', 'ringk', 'fusion', 'new', 'dust', 'cap', 'drop', 'protect', 'free', 'screen', 'protector', 'back', 'film', 'smoke', 'black', 'premium', 'crystal', 'clear', 'back', 'shock', 'absorpt', 'bumper', 'hard', 'case', 'soni', 'xperia', 'plus', 'not', 'compact', 'dual', 'tablet', 'packag'], ['good', 'phone', 'recommend', 'phone', 'peopl', 'desir', 'dual', 'simpli', 'phone', 'excel', 'camera'], ['good', 'product'], ['bought', 'without', 'check', 'differ', 'forum', 'wife', 'own', 'perfect', 'soon', 'turn', 'phone', 'start', 'heat', 'supriz', 'absout', 'uncomfort', 'top', 'level', 'devic', 'research', 'discov', 'overheat', 'critic', 'issu', 'soni', 'overheat', 'much', 'camera', 'not', 'stabl', 'turn', 'min', 'video', 'record', 'serious', 'product', 'keep', 'devic', 'hand', 'not', 'comfort', 'becom', 'hot', 'everytim', 'load', 'middl', 'perfect', 'phone', 'call', 'speed', 'compon', 'not', 'use', 'overheat', 'soni', 'phone', 'futur'], ['ok'], ['far', 'good', 'simpl', 'updat', 'previous', 'inform', 'contact', 'camera', 'excel'], ['everyth', 'ok', 'deliveri', 'devic', 'lot', 'util', 'true', 'devic', 'get', 'hot', 'not', 'make', 'huge', 'differ'], ['not', 'open', 'yet', 'cuz', 'agift'], ['worst', 'cellphon', 'bought', 'week', 'problem', 'without', 'solut', 'i', 'tri', 'fix', 'unsuccess', 'carri', 'support', 'center', 'said', 'need', 'chang', 'mother', 'board', 'not', 'worth'], ['love'], ['love', 'new', 'phone', 'defect', 'get', 'realli', 'hot', 'use', 'gps', 'not', 'know', 'solv', 'problem'], ['excel', 'phone', 'bad', 'thing', 'heat', 'much'], ['realli', 'good', 'i', 'love', 'soni'], ['nice', 'phone', 'small', 'problem', 'charg', 'batteri', 'everi', 'day', 'life', 'batteri', 'goe', 'quick', 'someon', 'buy', 'extra', 'charger'], ['think', 'one', 'best', 'cel', 'ever'], ['perfect', 'product', 'fast', 'perfect', 'seller'], ['get', 'littl', 'hot', 'use'], ['excel', 'product', 'qualiti', 'not', 'support', 'arab', 'languag'], ['work', 'realli', 'well'], ['not', 'buy', 'part', 'lucki', 'group', 'not', 'face', 'overh', 'realli', 'good', 'phone', 'not', 'say', 'got', 'expens', 'toaster', 'overheat', 'lot', 'batteri', 'last', 'noth', 'lag', 'sometim', 'due', 'processor', 'overheat', 'record', 'video', 'coupl', 'minut', 'even', 'less', 'take', 'pocket', 'burn', 'leg', 'i', 'not', 'exagger', 'map', 'spotifi', 'nice', 'way', 'kill', 'brand', 'new', 'phone', 'mayb', 'say', 'everybodi', 'could', 'get', 'better', 'pictur', 'issu', 'overheat', 'even', 'run', 'whatsapp', 'chrome', 'not', 'first', 'xperia', 'z', 'phone', 'seri', 'well', 'one', 'disappoint'], ['great', 'phone', 'updat', 'not', 'heat', 'bad', 'batteri', 'last', 'lot', 'longer', 'alway', 'buy', 'soni', 'phone', 'use', 'one', 'sure'], ['soni', 'great', 'phone', 'day', 'batteri', 'time', 'larg', 'qualiti', 'screen', 'camera', 'photo', 'fine'], ['good', 'becom', 'hot', 'play', 'process', 'imag', 'problem', 'model'], ['yes', 'love'], ['great', 'phone', 'still', 'overheat', 'time', 'time', 'especi', 'use', 'camera', 'nice'], ['ok', 'good'], ['ii', 'like', 'product', 'overheat', 'certain', 'time', 'use', 'batteri', 'strong', 'claim', 'go', 'like', 'samsung', 'qualiti', 'pictur', 'great', 'end', 'smartphon', 'qi', 'enabl', 'wireless', 'charg', 'xperia', 'not', 'market', 'recent', 'disappoint'], ['want', 'experia', 'time', 'saw', 'decid', 'get', 'live', 'thought'], ['work', 'realli', 'well'], ['seem', 'come', 'littl', 'hot', 'use', 'even', 'differ', 'friend', 'use', 'iphon'], ['get', 'hot', 'vibrat', 'speaker', 'back'], ['serious', 'issu', 'overh', 'problem', 'mine', 'firmwar', 'updat', 'still', 'continu', 'problem', 'realli', 'good', 'look', 'phone', 'problem', 'major', 'turndown', 'better', 'go', 'iphon', 'samsung', 'lg', 'not', 'present', 'problem', 'unfortun', 'sent', 'phone', 'one', 'friend', 'us', 'bring', 'guatemala', 'difficult', 'return', 'despit', 'warranti', 'buy', 'amazon', 'wast', 'soni', 'disappoint'], ['not', 'come', 'usb', 'charg', 'latch', 'make', 'neither', 'dust', 'waterproof', 'sham'], ['awesom', 'cell', 'phone', 'say', 'cell', 'phone', 'soni', 'xperia', 'not'], ['two', 'week', 'problem', 'phone', 'purchas', 'phone', 'verizon', 'version', 'advis', 'dimens', 'differ', 'xperia', 'thus', 'phone', 'not', 'fit', 'car', 'mount', 'design'], ['confess', 'good', 'chanc', 'review', 'phone', 'prior', 'buy', 'wife', 'final', 'last', 'winter', 'agre', 'smart', 'phone', 'kayak', 'water', 'great', 'deal', 'plus', 'sailor', 'want', 'secur', 'least', 'water', 'resist', 'fell', 'love', 'phone', 'teach', 'use', 'also', 'learn', 'great', 'deal', 'phone', 'get', 'unstabl', 'damnest', 'thing', 'blue', 'like', 'play', 'music', 'channel', 'could', 'not', 'even', 'find', 'wors', 'lake', 'superior', 'order', 'one', 'compani', 'least', 'provid', 'limit', 'warrente', 'refubish', 'phone', 'phone', 'flawless', 'yes', 'also', 'water', 'great', 'deal', 'love', 'phone'], ['loyal', 'soni', 'xperia', 'user', 'want', 'upgrad', 'xperia', 'crash', 'repeat', 'startup', 'process', 'continu', 'minim', 'use', 'even', 'tri', 'open', 'main', 'menu', 'screen', 'factori', 'reset', 'not', 'fix', 'anyth', 'return', 'within', 'day', 'i', 'wait', 'next', 'model', 'see', 'iron', 'kink'], ['bad', 'signal', 'screen', 'froze', 'day', 'restart', 'act', 'stupid', 'nice', 'camera', 'shoddi', 'phone'], ['soni', 'cell', 'phone', 'year', 'nice', 'phone', 'happi', 'purchas'], ['love', 'phone', 'far', 'howev', 'recept', 'not', 'great', 'certain', 'area', 'camera', 'phenomen', 'phone'], ['start', 'amaz', 'devic', 'unfortun', 'not', 'end', 'well', 'not', 'go', 'list', 'amaz', 'phone', 'pros', 'hardwar', 'spec', 'alreadi', 'problem', 'phone', 'start', 'slow', 'time', 'began', 'overh', 'becom', 'unrespons', 'app', 'crash', 'separ', 'issu', 'random', 'reboot', 'unrel', 'overh', 'honest', 'realli', 'like', 'devic', 'practic', 'overh', 'supercar', 'noth', 'remov', 'star', 'overh', 'softwar', 'issu', 'sever', 'enough', 'return', 'devic'], ['thing', 'get', 'hot', 'smart', 'watch', 'due', 'ultra', 'sensit', 'touch', 'screen', 'turn', 'pocket', 'lot', 'two', 'day', 'batteri', 'life', 'total', 'joke', 'i', 'lucki', 'get', 'full', 'day', 'realli', 'love', 'phone', 'camera', 'great', 'batteri', 'not', 'great', 'say', 'side', 'note', 'fingerprint', 'scanner', 'accur'], ['phone', 'awesom', 'like', 'much', 'besid', 'fact', 'fit', 'pocket', 'fast', 'full', 'surpris', 'camera', 'wonder', 'phone', 'look'], ['ok'], ['week', 'issu', 'far', 'white', 'color', 'look', 'great', 'good', 'form', 'factor', 'phone', 'get', 'hot', 'becom', 'uncomfort', 'hold', 'def', 'recommend', 'case', 'phone', 'also', 'bit', 'thick', 'though', 'suppos', 'necessari', 'due', 'waterproof', 'materi', 'hardwar', 'necess', 'make', 'par', 'typic', 'sim', 'sd', 'card', 'slot', 'easili', 'access', 'fingerprint', 'sensor', 'work', 'great', 'super', 'conveni', 'batteri', 'life', 'last', 'full', 'day', 'not', 'see', 'go', 'past', 'full', 'day', 'normal', 'usag', 'i', 'typic', 'wifi', 'soni', 'also', 'releas', 'frequent', 'softwar', 'updat', 'amaz', 'compar', 'manufactur', 'like', 'samsung', 'htc', 'take', 'forev', 'come', 'updat', 'recent', 'updat', 'allow', 'camera', 'launch', 'much', 'faster'], ['bought', 'soni', 'xperia', 'compact', 'far', 'terrif', 'phone', 'love', 'phone', 'much', 'long', 'batteri', 'life', 'android', 'marshmellow', 'good', 'camera', 'let', 'tell', 'number', 'reason', 'hate', 'phone', 'fingerprint', 'lock', 'friend', 'saw', 'privat', 'pictur', 'girlfriend', 'harass', 'suppos', 'fingerprint', 'friend', 'access', 'itsecond', 'got', 'car', 'rekt', 'beach', 'phone', 'dead', 'not', 'charg', 'car', 'tri', 'use', 'multipl', 'chargersthird', 'get', 'made', 'fun', 'phone', 'appar', 'look', 'old'], ['good', 'phone', 'littl', 'small', 'camera', 'littl', 'slow', 'wake', 'thing', 'like', 'batteri', 'life', 'general', 'perform', 'great', 'though', 'need', 'someth', 'small', 'power', 'not', 'go', 'wrong'], ['not', 'serious', 'time', 'deliveri', 'devic', 'ok', 'use', 'mex', 'telcel', 'us'], ['love'], ['i', 'samsung', 'galaxi', 'understand', 'peopl', 'like', 'big', 'phone', 'howev', 'not', 'prefer', 'came', 'start', 'look', 'someth', 'els', 'found', 'soni', 'xperia', 'z', 'compact', 'phone', 'origin', 'want', 'elsewher', 'right', 'buy', 'compact', 'came', 'not', 'avail', 'us', 'via', 'normal', 'retail', 'abl', 'get', 'warranti', 'via', 'squaretrad', 'made', 'brainer', 'i', 'month', 'i', 'still', 'love'], ['great', 'phone', 'fast', 'smoth', 'conveni', 'size'], ['not', 'buy', 'productno', 'doubt', 'innov', 'design', 'power', 'suffer', 'two', 'major', 'buggi', 'softwar', 'soni', 'mobil', 'crappi', 'job', 'implement', 'android', 'platform', 'devic', 'camera', 'app', 'crash', 'time', 'look', 'like', 'softwar', 'not', 'use', 'hardwar', 'proper', 'ultim', 'provid', 'sub', 'optim', 'perform', 'devic', 'class', 'especi', 'camera', 'lag', 'result', 'qualiti', 'despit', 'high', 'heat', 'bought', 'phone', 'read', 'mani', 'review', 'say', 'snapdragon', 'insid', 'hotter', 'notic', 'captur', 'video', 'would', 'not', 'care', 'less', 'truth', 'devic', 'alway', 'hot', 'even', 'standbi', 'even', 'simpl', 'oper', 'like', 'text', 'brows', 'pictur', 'batteri', 'seem', 'drain', 'relat', 'quick', 'read', 'review', 'look', 'like', 'soni', 'serious', 'problem', 'qa', 'shame', 'technolog', 'giant', 'soni', 'ship', 'beta', 'go', 'gx', 'edg', 'lighter', 'power', 'assur', 'qualiti', 'updat', 'devic', 'receiv', 'along', 'way'], ['fellow', 'soni', 'xperia', 'compact', 'move', 'compact', 'definit', 'better', 'phone', 'lcd', 'screen', 'definit', 'improv', 'speaker', 'definit', 'louder', 'fingerprint', 'sensor', 'work', 'perfect', 'gigabyt', 'intern', 'memori', 'also', 'plus', 'due', 'app', 'may', 'want', 'need', 'camera', 'definit', 'take', 'better', 'pictur', 'would', 'not', 'say', 'faster', 'speed', 'take', 'pictur'], ['week', 'issu', 'far', 'white', 'color', 'look', 'great', 'good', 'form', 'factor', 'phone', 'get', 'hot', 'becom', 'uncomfort', 'hold', 'def', 'recommend', 'case', 'phone', 'also', 'bit', 'thick', 'though', 'suppos', 'necessari', 'due', 'waterproof', 'materi', 'hardwar', 'necess', 'make', 'par', 'typic', 'sim', 'sd', 'card', 'slot', 'easili', 'access', 'fingerprint', 'sensor', 'work', 'great', 'super', 'conveni', 'batteri', 'life', 'last', 'full', 'day', 'not', 'see', 'go', 'past', 'full', 'day', 'normal', 'usag', 'i', 'typic', 'wifi', 'soni', 'also', 'releas', 'frequent', 'softwar', 'updat', 'amaz', 'compar', 'manufactur', 'like', 'samsung', 'htc', 'take', 'forev', 'come', 'updat', 'recent', 'updat', 'allow', 'camera', 'launch', 'much', 'faster'], ['sweet', 'like', 'packag', 'fit', 'perfect', 'one', 'word', 'qualiti', 'not', 'seem', 'put', 'phone', 'perfect'], ['cousin', 'love'], ['phone', 'compact', 'respons', 'two', 'real', 'issu', 'realli', 'middl', 'phone', 'call', 'second', 'paus', 'hear', 'nois', 'parti', 'not', 'hear', 'correct', 'thing', 'minut', 'two', 'call', 'need', 'disconnect', 'call', 'numer', 'time', 'long', 'camera', 'noth', 'great', 'old', 'samsung', 'better', 'camera', 'especi', 'low', 'light', 'condit', 'take', 'graini', 'experi', 'disappoint', 'soni'], ['not', 'actual', 'black', 'gunmet', 'grey', 'origin', 'settl', 'black', 'none', 'color', 'appeal', 'glad', 'color', 'gunmet', 'grey', 'look', 'wonder', 'phone', 'beyond', 'competit', 'phone', 'smaller', 'smart', 'phone', 'day', 'anyth', 'everyth', 'want', 'even', 'one', 'fastest', 'not', 'fastest', 'processor', 'onboard', 'issu', 'get', 'littl', 'hot', 'use', 'extend', 'amount', 'time', 'anyth', 'extrem', 'wonder', 'phone', 'though', 'made', 'sure', 'order', 'plenti', 'temper', 'glass', 'protector', 'front', 'back', 'ensur', 'keep', 'littl', 'gem', 'safe', 'would', 'high', 'recommend'], ['order', 'phone', 'wife', 'use', 'iphon', 'phone', 'arriv', 'day', 'faster', 'expect', 'box', 'seal', 'confid', 'new', 'advertis', 'box', 'batteri', 'start', 'setup', 'process', 'connect', 'home', 'wifi', 'network', 'phone', 'told', 'need', 'perform', 'softwar', 'upgrad', 'said', 'yes', 'process', 'took', 'minut', 'took', 'phone', 'nearbi', 'store', 'instal', 'card', 'minut', 'process', 'complet', 'without', 'issu', 'connect', 'network', 'home', 'state', 'ny', 'far', 'i', 'happi', 'phone'], ['love', 'phone', 'littl', 'worri', 'overh', 'report', 'phone', 'run', 'cool', 'even', 'min', 'fhd', 'record', 'last', 'beach', 'day'], ['best', 'phone', 'ever', 'main', 'featur', 'look', 'new', 'phone', 'small', 'size', 'batteri', 'life', 'think', 'get', 'better', 'compact', 'previous', 'phone', 'droid', 'mini', 'smallest', 'android', 'phone', 'avail', 'verizon', 'hesit', 'switch', 'verizon', 'decad', 'problem', 'far', 'compact', 'perform', 'great', 'feel', 'great', 'much', 'better', 'plasticki', 'droid', 'mini', 'term', 'batteri', 'life', 'would', 'take', 'mini', 'charger', 'usag', 'would', 'dead', 'routin', 'compact', 'alway', 'show', 'batteri', 'remain'], ['fellow', 'soni', 'xperia', 'compact', 'move', 'compact', 'definit', 'better', 'phone', 'lcd', 'screen', 'definit', 'improv', 'speaker', 'definit', 'louder', 'fingerprint', 'sensor', 'work', 'perfect', 'gigabyt', 'intern', 'memori', 'also', 'plus', 'due', 'app', 'may', 'want', 'need', 'camera', 'definit', 'take', 'better', 'pictur', 'would', 'not', 'say', 'faster', 'speed', 'take', 'pictur'], ['good'], ['edit', 'origin', 'evalu', 'phone', 'remain', 'would', 'encourag', 'peopl', 'look', 'htc', 'one', 'address', 'us', 'compat', 'aspect', 'still', 'pocket', 'not', 'compact', 'mean', 'soni', 'still', 'name', 'game', 'still', 'manag', 'read', 'review', 'https', 'everi', 'phone', 'imagin', 'soni', 'xperia', 'compact', 'line', 'continu', 'impress', 'recent', 'nexus', 'nexus', 'size', 'much', 'yes', 'realli', 'want', 'marshmallow', 'wait', 'extra', 'week', 'ask', 'question', 'buy', 'troubl', 'get', 'clear', 'inform', 'due', 'technic', 'natur', 'want', 'clarifi', 'phone', 'almost', 'fulli', 'compat', 'usa', 'confirm', 'band', 'extend', 'rang', 'lte', 'work', 'confirm', 'lte', 'discoveri', 'howev', 'hd', 'voic', 'volt', 'wifi', 'call', 'well', 'worth', 'phenomen', 'batteri', 'life', 'like', 'get', 'better', 'marshmallow', 'compact', 'form', 'factor', 'water', 'resist', 'nice', 'backup', 'wifi', 'call', 'issu', 'use', 'someth', 'like', 'hangout', 'phone', 'call', 'backup', 'cours', 'not', 'conveni', 'work', 'hd', 'voic', 'compat', 'yes', 'tell', 'differ', 'wish', 'not', 'huge', 'volt', 'one', 'get', 'not', 'know', 'mean', 'phone', 'drop', 'data', 'make', 'phone', 'call', 'not', 'end', 'world', 'may', 'notic', 'differ', 'navig', 'tether', 'pc', 'tri', 'navig', 'etc', 'could', 'get', 'around', 'use', 'dialer', 'hangout', 'sinc', 'voip', 'call', 'peopl', 'may', 'overkil', 'suspect', 'though', 'peopl', 'buy', 'phone', 'pretti', 'familiar', 'thing', 'sinc', 'phone', 'not', 'advertis', 'us', 'lack', 'voic', 'reason', 'knock', 'phone', 'come', 'intern', 'charger', 'adapt', 'compat', 'quickcharg', 'technolog', 'charg', 'rapid', 'exampl', 'swiftran', 'quick', 'charg', 'dual', 'port', 'usb', 'car', 'chargerth', 'camera', 'phone', 'pretti', 'good', 'not', 'best', 'fine', 'use', 'phone', 'soni', 'xperia', 'compact', 'mini', 'temper', 'glass', 'screen', 'protector', 'superslim', 'round', 'hard', 'retail', 'packag', 'soni', 'xperia', 'compact', 'mini', 'flexislim', 'case', 'soni', 'xperia', 'compact', 'smartphon', 'model', 'smallest', 'version', 'xperia', 'mini', 'super', 'slim', 'protect', 'phone', 'cover', 'semi', 'transpar', 'white', 'import', 'protect', 'devic', 'not', 'go', 'overboard', 'bulki', 'combin', 'two', 'perfect', 'review', 'independ', 'includ', 'one', 'pictur', 'phone', 'glass', 'case', 'awesom', 'phone', 'peopl', 'not', 'concern', 'buy', 'direct', 'carrier', 'not', 'want', 'huge', 'phone'], ['great', 'handset', 'good', 'size', 'take', 'best', 'photo', 'ever', 'run', 'everi', 'app', 'sun', 'realli', 'appreci', 'remov', 'memori', 'card'], ['pros', 'good', 'display', 'even', 'hd', 'resolut', 'still', 'deliv', 'vivid', 'beauti', 'good', 'hardwar', 'spec', 'snapdragon', 'gb', 'storag', 'gb', 'ram', 'good', 'design', 'build', 'place', 'finger', 'print', 'sensor', 'power', 'button', 'sensor', 'respons', 'perfect', 'size', 'perfect', 'want', 'small', 'phone', 'handl', 'one', 'support', 'sd', 'card', 'one', 'featur', 'recent', 'flagship', 'phone', 'good', 'connect', 'phone', 'network', 'support', 'lte', 'hspa', 'gsm', 'wifi', 'signal', 'support', 'ghz', 'sound', 'qualiti', 'not', 'one', 'camera', 'not', 'perfect', 'special', 'auto', 'home', 'screen', 'littl', 'bit', 'could', 'much', 'better', 'gb', 'ram'], ['i', 'complain', 'kind', 'like', 'design', 'better', 'matt', 'finish', 'kind', 'bulki', 'fingerprint', 'scanner', 'realli', 'respons', 'work', 'time', 'batteri', 'life', 'feel', 'bit', 'shorter', 'still', 'manag', 'go', 'atleast', 'day', 'half'], ['phone', 'year', 'good', 'phone', 'good', 'batteri', 'get', 'near', 'two', 'day', 'charg', 'never', 'low', 'batteri', 'anxieti', 'soni', 'done', 'ok', 'job', 'updat', 'marshmallow', 'nice', 'i', 'look', 'forward', 'nougat', 'camera', 'great', 'camera', 'strap', 'honest', 'favorit', 'part', 'easi', 'get', 'phone', 'pocket', 'never', 'worri', 'drop', 'dislik', 'minor', 'softwar', 'issu', 'like', 'recent', 'app', 'show', 'time', 'time', 'auto', 'rotat', 'not', 'work', 'sometim', 'take', 'second', 'detect', 'aux', 'car', 'jack', 'hope', 'get', 'anoth', 'year', 'devic', 'still', 'exact', 'want', 'phone', 'soni', 'xperia', 'x', 'compact', 'not', 'even', 'upgrad'], ['i', 'phone', 'week', 'first', 'impress', 'phone', 'superb', 'everyth', 'hope', 'would', 'call', 'qualiti', 'excel', 'fast', 'camera', 'take', 'beauti', 'pictur', 'tho', 'review', 'point', 'perform', 'good', 'not', 'stellar', 'littl', 'painter', 'batteri', 'last', 'day', 'advertis', 'tho', 'i', 'sure', 'mileag', 'may', 'vari', 'appli', 'not', 'game', 'not', 'watch', 'take', 'lot', 'video', 'screen', 'excel', 'not', 'quit', 'good', 'amol', 'view', 'angl', 'not', 'quit', 'good', 'version', 'black', 'not', 'match', 'amol', 'black', 'turn', 'adapt', 'bright', 'screen', 'tho', 'cost', 'batteri', 'life', 'conveni', 'end', 'turn', 'adapt', 'bright', 'back', 'color', 'reproduct', 'seem', 'better', 'previous', 'phone', 'amol', 'display', 'samsung', 'flagship', 'make', 'better', 'photographi', 'come', 'bloatwar', 'uninstal', 'deactiv', 'overal', 'first', 'week', 'satisfi'], ['good', 'phone', 'less', 'money'], ['i', 'look', 'small', 'phone', 'good', 'spec', 'exact', 'look', 'zero', 'option', 'want', 'phone', 'small', 'decent', 'spec', 'storag', 'android', 'marshmallow', 'big', 'hand', 'interfac', 'smooth', 'easi', 'use', 'not', 'small', 'screen', 'would', 'consid', 'normal', 'size', 'screen', 'five', 'year', 'ago', 'solid', 'feel', 'get', 'good', 'signal', 'strength', 'compar', 'wife', 'iphon', 'good', 'batteri', 'life', 'moder', 'use', 'daytim', 'charg', 'usual', 'batteri', 'end', 'day', 'speaker', 'sound', 'decent', 'listen', 'music', 'not', 'superb', 'much', 'better', 'lot', 'phone', 'tablet', 'i', 'use', 'usabl', 'watch', 'show', 'movi', 'use', 'built', 'temperatur', 'fix', 'came', 'mail', 'lollipop', 'instal', 'setup', 'process', 'felt', 'quit', 'hot', 'howev', 'immedi', 'softwar', 'upgrad', 'three', 'updat', 'row', 'first', 'upgrad', 'marshmallow', 'two', 'increment', 'upgrad', 'bug', 'fix', 'upgrad', 'never', 'gotten', 'hot', 'littl', 'warm', 'compar', 'phone', 'i', 'ever', 'uninstal', 'disabl', 'soni', 'bloatwar', 'pretti', 'easili', 'except', 'app', 'tell', 'random', 'celebr', 'birthday', 'crap', 'like', 'notif', 'got', 'shut', 'go', 'away', 'disabl', 'data', 'camera', 'amaz', 'camera', 'button', 'love', 'press', 'like', 'real', 'camera', 'soft', 'press', 'focus', 'hard', 'press', 'snap', 'photo', 'wish', 'len', 'not', 'right', 'corner', 'though', 'i', 'alway', 'stick', 'finger', 'front', 'primari', 'complaint', 'wish', 'hardwar', 'button', 'bar', 'bottom', 'button', 'back', 'home', 'etc', 'not', 'take', 'screen', 'real', 'estat', 'guess', 'minor', 'complaint', 'though', 'i', 'get', 'use', 'hide', 'video', 'want', 'use', 'otg', 'devic', 'not', 'automat', 'pull', 'hit', 'button', 'attach', 'otg', 'stuff', 'littl', 'annoy', 'plug', 'wire', 'stuff', 'mirco', 'usb', 'plug', 'not', 'realli', 'expect', 'fast', 'conveni', 'anyway'], ['wow', 'great', 'phone', 'i', 'never', 'seen', 'stun', 'video', 'qualiti', 'phone', 'fyi', 'work', 'phone', 'iphon', 'got', 'husband', 'unlock', 'use', 'tmobil', 'sound', 'clear', 'issu', 'recept', 'great', 'everyth', 'camera', 'qualiti', 'better', 'phone', 'i', 'seen', 'complaint', 'phone', 'size', 'perfect', 'seem', 'like', 'everi', 'phone', 'compani', 'get', 'bigger', 'not', 'even', 'fit', 'pocket', 'one', 'thing', 'note', 'not', 'realiz', 'use', 'nano', 'sim', 'card', 'one', 'quick', 'trip', 'tmobil', 'upgrad', 'old', 'sim', 'card', 'come', 'choos', 'opinion', 'best', 'phone', 'market', 'bad', 'not', 'pick', 'us', 'i', 'happi', 'sell', 'unlock', 'us', 'state'], ['earth', 'begin', 'screen', 'fragil', 'accident', 'set', 'bottl', 'crack', 'screen', 'purchas', 'phone', 'waterproof', 'watch', 'video', 'youtub', 'kid', 'drop', 'hammer', 'whatnot', 'ladder', 'onto', 'phone', 'underneath', 'inch', 'water', 'belief', 'not', 'waterproof', 'near', 'gorilla', 'corn', 'glass', 'strong', 'simpli', 'not', 'true', 'worst', 'part', 'break', 'screen', 'never', 'soni', 'not', 'touch', 'screen', 'break', 'warranti', 'spec', 'addit', 'even', 'get', 'screen', 'fix', 'took', 'two', 'month', 'waterproof', 'instal', 'factori', 'special', 'repair', 'shop', 'get', 'instal', 'repeat', 'bottom', 'line', 'good', 'luck', 'otherwis', 'like', 'phone', 'fast', 'much', 'bloatwar', 'total'], ['good', 'smartphon'], ['forewarn', 'phone', 'nice', 'heat', 'instal', 'app', 'brows', 'site', 'feel', 'back', 'get', 'uncomfort', 'hot', 'not', 'scorch', 'still', 'hold', 'nexus', 'instead', 'littl', 'bigger', 'sure', 'i', 'go', 'better', 'buy'], ['viabl', 'option', 'replac', 'age', 'moto', 'x', 'edit', 'refus', 'upsiz', 'anyth', 'bigger', 'screen', 'want', 'abl', 'hold', 'phone', 'text', 'one', 'hand', 'older', 'iphon', 'moto', 'e', 'noth', 'els', 'fit', 'form', 'compact', 'came', 'android', 'receiv', 'marshmallow', 'upgrad', 'week', 'color', 'not', 'black', 'believ', 'call', 'gun', 'metal', 'gray', 'fit', 'finish', 'excel', 'though', 'back', 'phone', 'hard', 'slick', 'plastic', 'feel', 'also', 'purchas', 'slipperi', 'feel', 'mind', 'use', 'belt', 'case', 'reach', 'one', 'hand', 'grab', 'phone', 'use', 'use', 'grippi', 'feel', 'rubber', 'back', 'moto', 'x', 'own', 'almost', 'great', 'not', 'import', 'not', 'take', 'long', 'adjust', 'placement', 'volum', 'phone', 'oper', 'flawlessi', 'long', 'snappi', 'perform', 'not', 'play', 'game', 'use', 'soni', 'app', 'not', 'remov', 'near', 'bad', 'samsung', 'phone'], ['soni', 'xperia', 'compact', 'small', 'size', 'smartphon', 'true', 'premium', 'spec', 'way', 'beyond', 'competit', 'i', 'not', 'go', 'go', 'phone', 'featur', 'review', 'well', 'discuss', 'mani', 'public', 'want', 'comment', 'featur', 'phone', 'critis', 'unfair', 'opinion', 'first', 'price', 'critic', 'say', 'expens', 'give', 'break', 'phone', 'cost', 'plus', 'sd', 'card', 'compar', 'iphon', 'samsung', 'galaxi', 'respect', 'realiz', 'soni', 'phone', 'bargain', 'compar', 'appl', 'appl', 'soni', 'phone', 'sure', 'par', 'featur', 'qualiti', 'wise', 'appl', 'samsung', 'second', 'point', 'critic', 'lack', 'hd', 'screen', 'give', 'break', 'screen', 'never', 'notic', 'differ', 'resolut', 'matter', 'good', 'eyesight', 'final', 'lack', 'fingerprint', 'sensor', 'us', 'version', 'avail', 'intern', 'version', 'opinion', 'mani', 'expert', 'field', 'fingerprint', 'technolog', 'not', 'matur', 'enough', 'especi', 'secur', 'reliabl', 'wise', 'import', 'take', 'virtual', 'time', 'unlock', 'phone', 'digit', 'code', 'fingerprint', 'scanner', 'test', 'mani', 'time', 'wife', 'iphon', 'get', 'get', 'intern', 'model', 'not', 'thank', 'soni', 'awesom', 'phone'], ['love'], ['love', 'soni', 'offer', 'varieti', 'size', 'devic', 'suit', 'everyon', 'need', 'sleek', 'great', 'batteri', 'love', 'color', 'option', 'custom'], ['good'], ['good'], ['i', 'upgrad', 'xperia', 'besid', 'finnicki', 'softwar', 'soni', 'provid', 'transfer', 'info', 'not', 'work', 'actual', 'phone', 'otherwis', 'outstand', 'crisp', 'clear', 'display', 'fantast', 'camera', 'complaint', 'love'], ['not', 'come'], ['phone', 'use', 'turn', 'one', 'user', 'creat', 'orient', 'languag', 'least', 'batteri', 'use', 'damag', 'not', 'last', 'hour', 'even', 'without', 'constant', 'activ', 'suppos', 'last', 'much', 'time', 'per', 'previous', 'experi', 'soni', 'smartphon', 'total', 'dissapoint'], ['love', 'soni', 'smartphon', 'love', 'even'], ['phone', 'crap', 'batteri', 'dead', 'not', 'charg', 'complet', 'die', 'would', 'take', 'long', 'charg', 'batteri', 'complet', 'dead', 'not', 'charg', 'waist', 'money', 'mad'], ['good', 'waterproof', 'phone', 'excel', 'camera', 'drawback', 'take', 'video', 'phone', 'heat', 'much'], ['disappoint', 'receiv', 'phone', 'not', 'inexpens', 'visibl', 'use', 'phone', 'back', 'scratch', 'box', 'not', 'look', 'new', 'film', 'face', 'phone', 'remov', 'return', 'full', 'credit'], ['got', 'without', 'damag', 'week', 'overal', 'nice', 'phone', 'not', 'problem', 'nice', 'design', 'well', 'like', 'soni'], ['excel', 'devic', 'not', 'regret', 'bought', 'soni', 'not', 'disappoint', 'alway'], ['cellphon', 'drop', 'water', 'suppos', 'waterproof', 'minut', 'display', 'stop', 'work'], [], ['upgrad', 'xperia', 'z', 'xperia', 'phone', 'massiv'], ['everyth', 'excel', 'display', 'awesom', 'extraordinari', 'camera', 'sometim', 'get', 'overh', 'app', 'stay', 'background', 'disappoint', 'qualiti', 'handsfre', 'come', 'phone', 'poor', 'qualiti', 'handsfre', 'given', 'soni'], ['good'], ['comment'], ['phone', 'realli', 'amaz', 'purchas', 'phone', 'trough', 'qualiti', 'deal', 'shop', 'center', 'surpris', 'phone', 'came', 'quick', 'charger', 'amaz', 'headphon', 'like', 'ever', 'soni', 'make', 'best', 'smartphon', 'camera', 'realli', 'amaz', 'i', 'impress', 'qualiti', 'superior', 'other', 'high', 'end', 'phone', 'phone', 'simpli', 'beauti', 'look', 'premium', 'fingerprint', 'scanner', 'work', 'realli', 'amaz', 'much', 'better', 'iphon', 'galaxi', 'screen', 'gorgeous', 'not', 'explain', 'word', 'stereo', 'speaker', 'sound', 'clear', 'super', 'cool', 'old', 'xperia', 'sound', 'littl', 'louder', 'premium', 'led', 'light', 'situat', 'corner', 'phone', 'small', 'led', 'light', 'old', 'look', 'lot', 'better', 'posit', 'superior', 'speaker', 'much', 'larger', 'batteri', 'life', 'amaz', 'quick', 'charger', 'work', 'excel', 'phone', 'charg', 'complet', 'hour', 'approxim'], ['phone', 'work', 'great', 'year', 'antenna', 'broke', 'could', 'not', 'get', 'signal', 'cellular', 'network', 'anymor'], ['bought', 'premium', 'wireless', 'circl', 'singapor', 'version', 'want', 'know', 'work', 'well', 'sign', 'dud', 'like', 'china', 'fingerprint', 'scanner', 'good', 'fast', 'sign', 'overh', 'get', 'hotter', 'normal', 'work', 'ultra', 'mobil', 'servic', 'overal', 'definit', 'like', 'better', 'i', 'sure', 'work', 'well', 'play', 'remot', 'play', 'gba', 'emul', 'like', 'camera', 'qualiti', 'realli', 'good', 'record', 'stabl', 'steadi', 'love', 'took', 'risk', 'order', 'intern', 'sinc', 'not', 'trust', 'china', 'singapor', 'well', 'regret'], ['heavi'], ['upgrad', 'iphon', 'love', 'carrier', 'att', 'problem', 'use', 'well', 'took', 'figur', 'use', 'internet', 'kept', 'say', 'offlin', 'without', 'wifi', 'environ', 'knew', 'sim', 'fine', 'use', 'iphon', 'till', 'receiv', 'xperia', 'issu', 'like', 'first', 'android', 'phone', 'ever', 'knew', 'noth', 'go', 'set', 'tap', 'see', 'internet', 'set', 'end', 'say', 'download', 'set', 'internet', 'mms', 'download', 'final', 'see', 'littl', 'recept', 'bar', 'reason', 'start', 'see', 'lte', 'right', 'next', 'bar', 'could', 'use', 'internet', 'without', 'wifi', 'hope', 'info', 'help', 'someon', 'like', 'know', 'noth', 'android', 'phone'], ['awesom', 'phone', 'lot', 'peopl', 'comment', 'use', 'love', 'back', 'use', 'mirror'], ['good', 'phone', 'trip', 'gimmicki', 'due', 'lack', 'true', 'support', 'android', 'atm', 'cyanogenmod', 'alreadi', 'develop', 'stop', 'xda', 'see', 'soni', 'repo', 'github', 'heat', 'issu', 'box', 'work', 'custom', 'kernel', 'blah', 'blah', 'whether', 'not', 'unlock', 'bootload', 'sake', 'keep', 'xrealiti', 'minim', 'import', 'soni', 'drm', 'function', 'goe', 'like', 'meh', 'unlock', 'bootload'], ['wrong', 'model', 'ok'], ['awesom', 'phone'], ['great', 'product'], ['awesom', 'phone'], ['nice', 'phone'], ['purchas', 'march', 'die', 'april', 'first', 'time', 'i', 'ever', 'bought', 'phone', 'without', 'carrier', 'subsidi', 'contract', 'oblig', 'phone', 'not', 'power', 'power', 'batteri', 'left', 'none', 'recommend', 'i', 'found', 'onlin', 'power', 'phone', 'work', 'much', 'money', 'wast'], ['phone', 'better', 'sound', 'qualiti', 'galaxi', 'edg', 'sure', 'brother', 'samsung', 'admit', 'phone', 'iphon'], ['nice'], ['incred', 'f', 'sweet', 'month', 'research', 'look', 'found', 'devic', 'meet', 'spec', 'aesthet', 'pleas', 'eye', 'built', 'strong', 'metal', 'bezel', 'chrome', 'back', 'invest', 'rhidon', 'cover', 'front', 'back', 'keep', 'leather', 'holster', 'belt', 'stay', 'away', 'rubber', 'silicon', 'cover', 'due', 'signal', 'strength', 'insul', 'erriccson', 'knock', 'park', 'one', 'best', 'display', 'ever', 'seen', 'probabl', 'coolest', 'phone', 'ever', 'pick', 'tout', 'highest', 'price', 'ever', 'paid', 'phone', 'life', 'far', 'worth', 'interest', 'tech', 'savvi', 'like', 'challeng', 'custom', 'devic', 'factori', 'restrict', 'mind', 'first', 'research', 'model', 'jump', 'utter', 'confid', 'interest', 'soni', 'thank', 'awesom', 'month', 'servic', 'thank', 'ngp', 'lower', 'price', 'elsewher', 'fast', 'ship', 'less', 'week', 'great', 'job', 'list', 'item', 'speedi', 'transact'], ['awesom', 'phone', 'everyth', 'camera', 'screen', 'great', 'everyth', 'work', 'perfect'], ['brother', 'love', 'phone', 'soni', 'xperia', 'person', 'expect', 'would', 'love'], ['phone', 'two', 'sim', 'card', 'buy', 'came', 'expens', 'model', 'singl', 'sim', 'card', 'sinc', 'model', 'better', 'perform', 'request', 'return', 'differ', 'money', 'charg', 'two', 'model', 'feel', 'cheat', 'thank'], ['first', 'ever', 'android', 'phone', 'use', 'blackberri', 'sinc', 'problem', 'learn', 'new', 'user', 'interfac', 'oper', 'system', 'i', 'would', 'problem', 'regardless', 'android', 'appl', 'phone', 'switch', 'featur', 'not', 'think', 'i', 'would', 'use', 'fingerprint', 'scanner', 'scanner', 'accur', 'troubl', 'free', 'love', 'compar', 'wife', 'note', 'feel', 'like', 'next', 'generat', 'technolog', 'not', 'tell', 'usa', 'version', 'regular', 'delet', 'option', 'big', 'mistak', 'i', 'would', 'get', 'intern', 'version', 'regardless', 'get', 'premium', 'not', 'cool', 'scanner', 'impress', 'saw', 'review', 'say', 'lte', 'not', 'work', 'not', 'display', 'display', 'rest', 'assur', 'lte', 'took', 'screenshot', 'speed', 'test', 'use', 'usa', 'also', 'gsm', 'carrier', 'phone', 'band', 'love', 'screen', 'know', 'ole', 'rage', 'day', 'love', 'lcd', 'screen', 'dim', 'low', 'dark', 'room', 'get', 'bright', 'auto', 'sensor', 'work', 'great', 'phone', 'screen', 'camera', 'great', 'come', 'blackberri', 'alway', 'use', 'subpar', 'crappi', 'camera', 'admit', 'anyth', 'would', 'improv', 'take', 'great', 'photo', 'line', 'wife', 'note', 'probabl', 'better', 'not', 'tell', 'front', 'stereo', 'speaker', 'fine', 'not', 'loud', 'one', 'two', 'louder', 'clearer', 'mani', 'not', 'love', 'water', 'look', 'beauti', 'got', 'chrome', 'sinc', 'i', 'afraid', 'carri', 'nake', 'put', 'minim', 'transpar', 'case', 'i', 'wonder', 'not', 'gone', 'gold', 'color', 'choic', 'far', 'stock', 'video', 'soni', 'look', 'great', 'anyth', 'i', 'view', 'i', 'would', 'base', 'choic', 'premium', 'base', 'prefer', 'phone', 'size', 'screen', 'size', 'rather', 'use', 'love', 'blackberri', 'like', 'carri', 'someth', 'differ', 'rare', 'day', 'us', 'like', 'phone', 'reason', 'everyon', 'either', 'appl', 'samsung', 'soni', 'someth', 'differ', 'realli', 'like', 'recommend', 'intend', 'updat', 'review', 'start', 'give', 'updat', 'work', 'long', 'term', 'initi', 'qualiti', 'outstand'], ['good', 'sister', 'love'], ['cool', 'gadget', 'beauti', 'yes', 'still', 'worth', 'hype', 'finger', 'print', 'scanner', 'power', 'key', 'fast', 'respons', 'everi', 'timebatteri', 'life', 'not', 'exact', 'keep', 'everyth', 'not', 'realli', 'achiev', 'two', 'day', 'batteri', 'life', 'enter', 'stamina', 'ultra', 'stamina', 'mode', 'realli', 'turn', 'phone', 'dumb', 'larg', 'phone', 'sinc', 'give', 'cool', 'smart', 'featur', 'reduc', 'batteri', 'consumpt', 'batteri', 'bare', 'discharg', 'inact', 'give', 'comfort', 'feel', 'not', 'loos', 'charg', 'devic', 'not', 'use'], ['felt', 'oblig', 'leav', 'feedback', 'negat', 'inaccur', 'review', 'user', 'leav', 'led', 'believ', 'phone', 'not', 'good', 'buy', 'great', 'mighti', 'samsung', 'absolut', 'hate', 'phone', 'ran', 'bit', 'sluggish', 'addit', 'box', 'batteri', 'horribl', 'come', 'soni', 'xperia', 'charg', 'day', 'return', 'paperweight', 'attempt', 'charg', 'decid', 'purchas', 'xperia', 'sinc', 'love', 'much', 'negat', 'review', 'almost', 'not', 'purchas', 'phone', 'happi', 'not', 'listen', 'negat', 'review', 'less', 'phone', 'absolut', 'amaz', 'run', 'sim', 'card', 'servic', 'great', 'overh', 'addit', 'purchas', 'solid', 'case', 'keep', 'amaz', 'phone', 'protect', 'think', 'best', 'phone', 'market', 'right', 'wish', 'peopl', 'would', 'provid', 'accur', 'feedback', 'other', 'want', 'take', 'chanc', 'also', 'amaz', 'experi', 'pleas', 'think', 'phone', 'alreadi', 'know', 'solid', 'soni', 'not', 'get', 'despair', 'negat', 'review', 'take', 'chanc', 'brand', 'know', 'get', 'phone', 'life', 'short', 'settl', 'anyth', 'treat', 'live', 'life'], ['replac', 'month', 'old', 'samsung', 'galaxi', 'note', 'mm', 'softwar', 'updat', 'set', 'need', 'use', 'sinc', 'zero', 'problem', 'zero', 'overh', 'much', 'faster', 'better', 'batteri', 'life', 'samsung', 'possibl', 'not', 'load', 'bloatwar', 'could', 'not', 'happier'], ['impress', 'qualiti', 'phone', 'xperia', 'display', 'excel', 'color', 'reproduct', 'sharp', 'excel', 'imag', 'glass', 'screen', 'feel', 'sturdi', 'softwar', 'hardwar', 'environ', 'respond', 'quick', 'smooth', 'use', 'continu', 'overh', 'continu', 'use', 'stream', 'xperia', 'well', 'put', 'togeth', 'gorilla', 'glass', 'front', 'back', 'aluminum', 'frame', 'rubber', 'bumper', 'corner', 'help', 'absorb', 'shock', 'phone', 'drop', 'camera', 'truli', 'excel', 'regard', 'batteri', 'soni', 'phone', 'not', 'see', 'big', 'differ', 'compar', 'phone', 'like', 'samsung', 'iphon', 'biggest', 'departur', 'design', 'term', 'look', 'power', 'button', 'soni', 'trademark', 'protrud', 'circl', 'around', 'year', 'replac', 'elong', 'lozeng', 'slight', 'inset', 'edg', 'prevent', 'accident', 'press', 'particular', 'recommend', 'phone', 'friend'], ['seller', 'recommend', 'compli', 'everyth'], ['felt', 'oblig', 'leav', 'feedback', 'negat', 'inaccur', 'review', 'user', 'leav', 'led', 'believ', 'phone', 'not', 'good', 'buy', 'great', 'mighti', 'samsung', 'absolut', 'hate', 'phone', 'ran', 'bit', 'sluggish', 'addit', 'box', 'batteri', 'horribl', 'come', 'soni', 'xperia', 'charg', 'day', 'return', 'paperweight', 'attempt', 'charg', 'decid', 'purchas', 'xperia', 'sinc', 'love', 'much', 'negat', 'review', 'almost', 'not', 'purchas', 'phone', 'happi', 'not', 'listen', 'negat', 'review', 'less', 'phone', 'absolut', 'amaz', 'run', 'sim', 'card', 'servic', 'great', 'overh', 'addit', 'purchas', 'solid', 'case', 'keep', 'amaz', 'phone', 'protect', 'think', 'best', 'phone', 'market', 'right', 'wish', 'peopl', 'would', 'provid', 'accur', 'feedback', 'other', 'want', 'take', 'chanc', 'also', 'amaz', 'experi', 'pleas', 'think', 'phone', 'alreadi', 'know', 'solid', 'soni', 'not', 'get', 'despair', 'negat', 'review', 'take', 'chanc', 'brand', 'know', 'get', 'phone', 'life', 'short', 'settl', 'anyth', 'treat', 'live', 'life'], ['realli', 'solid', 'nonsens', 'phone', 'user', 'interfac', 'great', 'fantast', 'got', 'latest', 'softwar', 'sound', 'qualiti', 'surpris', 'clear', 'look', 'altern', 'match', 'spec', 'soni', 'winner', 'phone', 'would', 'high', 'recommend'], ['felt', 'oblig', 'leav', 'feedback', 'negat', 'inaccur', 'review', 'user', 'leav', 'led', 'believ', 'phone', 'not', 'good', 'buy', 'great', 'mighti', 'samsung', 'absolut', 'hate', 'phone', 'ran', 'bit', 'sluggish', 'addit', 'box', 'batteri', 'horribl', 'come', 'soni', 'xperia', 'charg', 'day', 'return', 'paperweight', 'attempt', 'charg', 'decid', 'purchas', 'xperia', 'sinc', 'love', 'much', 'negat', 'review', 'almost', 'not', 'purchas', 'phone', 'happi', 'not', 'listen', 'negat', 'review', 'less', 'phone', 'absolut', 'amaz', 'run', 'sim', 'card', 'servic', 'great', 'overh', 'addit', 'purchas', 'solid', 'case', 'keep', 'amaz', 'phone', 'protect', 'think', 'best', 'phone', 'market', 'right', 'wish', 'peopl', 'would', 'provid', 'accur', 'feedback', 'other', 'want', 'take', 'chanc', 'also', 'amaz', 'experi', 'pleas', 'think', 'phone', 'alreadi', 'know', 'solid', 'soni', 'not', 'get', 'despair', 'negat', 'review', 'take', 'chanc', 'brand', 'know', 'get', 'phone', 'life', 'short', 'settl', 'anyth', 'treat', 'live', 'life'], ['love'], ['love', 'fon', 'even', 'came', 'betterthan', 'saw', 'onlin', 'black', 'n', 'rough', 'back', 'cover', 'realli', 'cool', 'realli', 'like', 'n', 'great', 'display', 'give', 'star', 'media', 'volum', 'seem', 'littl', 'low', 'without', 'earphon'], ['great', 'phone', 'upgrad', 'xperia', 'tl', 'phone', 'screen', 'bigger', 'opinion', 'run', 'faster', 'smoother', 'phone', 'present', 'run', 'kit', 'kat', 'small', 'issu', 'came', 'languag', 'set', 'spanish', 'box'], ['not', 'sophist', 'user', 'not', 'speak', 'phone', 'featur', 'use', 'includ', 'camera', 'take', 'great', 'pic', 'i', 'satisfi'], ['afraid', 'red', 'color', 'might', 'not', 'dull', 'anod', 'aluminum', 'look', 'shade', 'red', 'right', 'phone', 'look', 'great', 'glad', 'not', 'go', 'tepid', 'white', 'faceless', 'neutral', 'black', 'black', 'even', 'cost', 'lot', 'amazon', 'reason', 'updat', 'soon', 'got', 'fix', 'late', 'june', 'anoth', 'updat', 'took', 'phone', 'radio', 'capabl', 'lte', 'almost', 'network', 'oper', 'usa', 'least', 'batteri', 'life', 'averag', 'phone', 'usag', 'standbi', 'life', 'pretti', 'good', 'screen', 'gorgeous', 'soni', 'custom', 'minim', 'like', 'theme', 'ship', 'nice', 'walkman', 'album', 'video', 'reader', 'app', 'call', 'sound', 'q', 'good', 'receiv', 'call', 'without', 'phone', 'worth', 'money', 'consid', 'htc', 'one', 'googl', 'play', 'edit', 'qualiti', 'not', 'mhz', 'support', 'hspa', 'samsung', 'googl', 'play', 'cost', 'offer', 'noth', 'hope', 'soni', 'keep', 'updat', 'come', 'regular'], ['look', 'phone', 'would', 'work', 'equal', 'well', 'att', 'mobil', 'network', 'one', 'fit', 'bill', 'function', 'att', 'lte', 'network', 'moblil', 'new', 'lte', 'network', 'overal', 'phone', 'perform', 'well', 'longer', 'batteri', 'life', 'would', 'nice', 'good', 'job', 'manag', 'general', 'count', 'full', 'day', 'ip', 'screen', 'sharp', 'bright', 'video', 'playback', 'smooth', 'nfc', 'provid', 'surpris', 'benefit', 'manag', 'phone', 'configur', 'well', 'file', 'transfer', 'etc', 'given', 'breadth', 'function', 'phone', 'good', 'valu'], ['one', 'best', 'phone', 'i', 'thin', 'fast', 'excel', 'camera', 'larg', 'screen', 'though', 'screen', 'larg', 'size', 'lumia', 'own', 'batteri', 'life', 'short', 'heavi', 'use', 'last', 'hour', 'averag', 'use', 'last', 'almost', 'day', 'come', 'soni', 'back', 'featur', 'back', 'imag', 'phone', 'microsd', 'card', 'pc', 'interfac', 'also', 'wish', 'headphon', 'set', 'come', 'would', 'better', 'qualiti', 'front', 'face', 'camera', 'placement', 'odd'], ['love', 'phone', 'much', 'better', 'android', 'devic'], ['phone', 'look', 'great', 'work', 'well', 'infrar', 'port', 'allow', 'use', 'remot', 'control', 'mani', 'devic', 'priceless', 'said', 'speaker', 'volum', 'weak', 'tri', 'watch', 'sport', 'live', 'difficult', 'hear', 'anyth', 'peopl', 'nearbi', 'engag', 'normal', 'convers', 'read', 'review', 'not', 'surpris', 'negat', 'point', 'almost', 'give', 'phone', 'rate', 'gestur', 'type', 'soni', 'call', 'version', 'swype', 'use', 'swype', 'smaller', 'screen', 'lg', 'mytouch', 'much', 'larger', 'screen', 'kindl', 'fire', 'hdx', 'two', 'year', 'superior', 'simpli', 'not', 'pretend', 'know', 'know', 'annoy', 'hell', 'display', 'word', 'actual', 'mean', 'type', 'instant', 'lift', 'finger', 'chang', 'someth', 'els', 'absolut', 'differ', 'reason', 'total', 'unknown', 'instanc', 'tri', 'swype', 'delawar', 'thing', 'simpli', 'come', 'eyewear', 'eldar', 'els', 'number', 'word', 'read', 'would', 'not', 'bought', 'phone'], ['use', 'xperia', 'ray', 'went', 'choos', 'galaxi', 'sii', 'chang', 'oper', 'system', 'bought', 'nokia', 'lumia', 'everyth', 'right', 'except', 'lack', 'applic', 'wp', 'system', 'came', 'back', 'android', 'wait', 'someth', 'stylist', 'good', 'featur', 'final', 'found', 'soni', 'xperia', 'zl', 'best', 'part', 'use', 'use', 'simpl', 'mobil', 'wroke', 'far', 'problem', 'love', 'phone'], ['phone', 'noth', 'like', 'say', 'like', 'camera', 'horribl', 'front', 'phone', 'froze', 'day', 'would', 'not', 'turn'], ['got', 'girlfriend', 'birthday', 'love', 'definit', 'look', 'soni', 'devic', 'futur', 'purchas'], ['phone', 'month', 'notic', 'bad', 'connect', 'slow', 'plain', 'phone', 'finley', 'found', 'phone', 'not', 'say', 'product', 'inform', 'phone', 'problem', 'voic', 'speaker', 'low', 'hard', 'hear', 'till', 'connect', 'head', 'seat', 'return', 'thank', 'custom', 'servic', 'amazon'], ['great', 'product'], ['hi', 'reallu', 'dos', 'thankyou'], ['good', 'batteri', 'life'], ['phone', 'beast', 'love'], ['batteri', 'life', 'amaz', 'get', 'full', 'day', 'batteri', 'saver', 'app', 'goe', 'day', 'long', 'weekend', 'suffici', 'fast'], ['good', 'altern', 'flip', 'phone', 'easi', 'use', 'format', 'also', 'video', 'option'], ['excel'], ['bought', 'one', 'own', 'evo', 'yes', 'hard', 'coupl', 'week', 'touch', 'screen', 'began', 'act', 'funni', 'eventu', 'headach', 'use', 'not', 'phone', 'great', 'phone', 'not', 'buy'], ['first', 'one', 'got', 'would', 'not', 'stay', 'sent', 'second', 'one', 'tri', 'week', 'half', 'get', 'activast', 'sprint', 'said', 'not', 'compat', 'like', 'phone', 'could', 'not', 'get', 'activ', 'sent', 'back'], ['first', 'phone', 'order', 'came', 'wrong', 'batteri', 'contact', 'seller', 'link', 'would', 'not', 'work', 'call', 'amazon', 'ship', 'phone', 'batteri', 'back', 'could', 'not', 'exchang', 'batteri', 'custom', 'servic', 'agent', 'also', 'contact', 'inform', 'seller', 'realiz', 'batteri', 'look', 'similar', 'lot', 'phone', 'not', 'realli', 'mad', 'inconveni', 'without', 'work', 'phone', 'time', 'next', 'phone', 'came', 'also', 'wrong', 'batteri', 'bought', 'one', 'realli', 'need', 'phone', 'work', 'still', 'not', 'one', 'though', 'evo', 'model', 'great', 'make', 'wonder', 'phone', 'advertis', 'new', 'actual', 'refurb', 'sound', 'qualiti', 'terribl', 'call', 'sound', 'like', 'listen', 'one', 'drive', 'window', 'close', 'slow', 'everi', 'time', 'use', 'anyth', 'phone', 'reset', 'goe', 'back', 'home', 'screen', 'take', 'forev', 'want', 'look', 'calendar', 'cool', 'not', 'expect', 'abl', 'make', 'call', 'minut', 'afterward', 'instal', 'app', 'phone', 'alarm', 'clock', 'actual', 'goe', 'random', 'time', 'somewher', 'near', 'set', 'earli', 'screen', 'frozen', 'not', 'make', 'shut', 'never', 'realiz', 'crap', 'phone', 'could', 'make', 'want', 'drink', 'earli', 'morn', 'still', 'not', 'contact', 'seller', 'realli', 'not', 'want', 'third', 'phone', 'point', 'i', 'probabl', 'buy', 'anoth', 'one', 'use', 'target', 'practic', 'clay', 'bird', 'cheaper', 'could', 'not', 'live', 'karma', 'let', 'phone', 'pass', 'poor', 'unsuspect', 'person', 'would', 'probabl', 'struck', 'lightn'], ['hate', 'phone', 'never', 'buy', 'peac', 'crap', 'phone'], ['not', 'not', 'work', 'st', 'lucia', 'not', 'get', 'refund', 'back', 'dat', 'not', 'like'], ['phone', 'plastic', 'toy', 'park', 'defraud'], ['sent', 'phone', 'not', 'work', 'ask', 'contact', 'pleas', 'first', 'want', 'exchang', 'thi', 'phone', 'got', 'answer', 'want', 'money', 'back', 'tell', 'help', 'return', 'still', 'box', 'came', 'readi', 'upset'], ['not', 'advertis', 'previous', 'use', 'evo', 'sticker', 'fell', 'soon', 'open', 'trade', 'sprint', 'store', 'hour', 'got', 'not', 'happi', 'custom'], ['data', 'wifi', 'not', 'work', 'os', 'softwar', 'updat', 'taken', 'htc', 'websit', 'chose', 'use', 'old', 'samsung', 'transform', 'ultra', 'crack', 'screen', 'one'], ['phone', 'durabl', 'sure', 'perfect', 'work', 'phone', 'guy', 'patrol', 'may', 'someon', 'clumsi', 'hand'], ['great', 'durabl', 'rug', 'phone', 'last', 'bad', 'phone', 'not', 'duarbl'], ['far', 'good', 'like', 'design', 'major', 'phone', 'appear', 'water', 'proof', 'like', 'first', 'impress', 'could', 'treat', 'phone', 'far', 'rougher', 'phone', 'own', 'without', 'concern', 'web', 'interfac', 'minim', 'without', 'touchscreen', 'fine', 'one', 'seen', 'phone', 'bit', 'eye', 'major', 'brick', 'phone'], ['heavi', 'duti', 'phone', 'water', 'resist', 'batteri', 'life', 'love', 'flashlight', 'loud', 'extern', 'speaker', 'plenti', 'loud', 'i', 'drive', 'drive', 'love', 'also', 'love', 'camera', 'not', 'care', 'built', 'take', 'abus', 'last', 'long', 'time', 'old', 'phone', 'year', 'look', 'like', 'went', 'threw', 'tornado', 'take', 'punish', 'problem', 'need', 'basic', 'rough', 'tough', 'best', 'cheap'], ['got', 'father', 'inlaw', 'refus', 'updat', 'smart', 'phone', 'like', 'interfac', 'chang', 'minim', 'good', 'well', 'built'], ['good', 'phone', 'problem', 'fast', 'ship', 'thank'], ['ship', 'fast', 'great', 'phone', 'thing', 'not', 'come', 'batteri', 'call', 'order', 'batteri', 'wait', 'inconveni', 'bit'], ['great'], ['short', 'itpro', 'good', 'camera', 'dumb', 'phonecan', 'play', 'batteri', 'lifeha', 'micro', 'sd', 'card', 'support', 'gig', 'cardgood', 'call', 'qualiti', 'loud', 'speakerextrem', 'durablecon', 'direct', 'connect', 'support', 'pretti', 'much', 'nonexistenta', 'bit', 'thick', 'back', 'pocketcannot', 'play', 'musicyou', 'need', 'convert', 'put', 'ear', 'bud', 'micro', 'aux', 'connect', 'whatev', 'call', 'took', 'year', 'figur', 'phone', 'sd', 'card', 'slot', 'know', 'not', 'smart', 'phone', 'open', 'batteri', 'slot', 'take', 'batteri', 'thin', 'metal', 'squar', 'open', 'put', 'sd', 'card', 'alway', 'thought', 'heatsink', 'electro', 'gizmo', 'phone', 'phone', 'intern', 'memori', 'small', 'direct', 'transfer', 'music', 'got', 'realli', 'excit', 'music', 'player', 'basic', 'play', 'even', 'phone', 'close', 'someth', 'surpris', 'number', 'phone', 'not', 'camera', 'not', 'compar', 'smartphon', 'best', 'camera', 'seen', 'dumb', 'phone', 'take', 'clear', 'pictur', 'need', 'doesent', 'get', 'lot', 'nois', 'batteri', 'life', 'amaz', 'easili', 'go', 'week', 'without', 'charg', 'thing', 'pocket', 'work', 'make', 'call', 'per', 'day', 'batteri', 'saver', 'mode', 'even', 'music', 'go', 'phone', 'last', 'day', 'rememb', 'old', 'old', 'old', 'moterola', 'razor', 'bare', 'made', 'day', 'phone', 'die', 'everi', 'singl', 'phone', 'look', 'durabl', 'actual', 'look', 'like', 'juggernaught', 'optimus', 'prime', 'compar', 'phone', 'bit', 'thick', 'back', 'pocket', 'not', 'ever', 'worri', 'replac', 'buy', 'use', 'use', 'someth', 'would', 'never', 'phone', 'slider', 'got', 'phone', 'think', 'averag', 'three', 'four', 'broken', 'phone', 'two', 'year', 'pop', 'last', 'slider', 'batteri', 'compart', 'held', 'togeth', 'scotch', 'never', 'use', 'direct', 'connect', 'featur', 'know', 'compani', 'employe', 'say', 'pretti', 'much', 'lot', 'text', 'key', 'pad', 'go', 'get', 'annoy', 'normal', 'call', 'work', 'great', 'plenti', 'space', 'button', 'finger', 'not', 'feel', 'cramp'], ['charger', 'not', 'work', 'took', 'sprint', 'said', 'charger', 'bad'], ['bought', 'phone', 'use', 'ting', 'save', 'money', 'realli', 'work', 'well', 'especi', 'sinc', 'first', 'cellphon'], ['phone', 'work', 'well', 'daughter', 'purchas', 'phone', 'year', 'broken', 'within', 'month', 'one', 'far', 'take', 'beat', 'still', 'work', 'sprint', 'activ', 'phone', 'issu'], ['phone', 'great', 'condit', 'replac', 'batteri', 'alreadi', 'year', 'great', 'replac', 'broken', 'phone', 'althouvh', 'someth', 'may', 'complic', 'find', 'i', 'still', 'find', 'sever', 'thing'], ['phone', 'last', 'forev', 'husband', 'broken', 'everi', 'phone', 'hes', 'one', 'still', 'tick', 'last', 'longest', 'probabl', 'got', 'treat', 'wort'], ['blu', 'phone', 'love', 'hubbi', 'decid', 'trade', 'old', 'phone', 'smart', 'phone', 'star', 'perfect', 'easi', 'use', 'easi', 'hold', 'not', 'big', 'blu', 'phone', 'unlock', 'use', 'carrier', 'use', 'cricket', 'wireless', 'use', 'come', 'current', 'version', 'android', 'phone', 'like', 'want', 'updat', 'first', 'start', 'use', 'teather', 'pc', 'use', 'wireless', 'hot', 'spot', 'internet', 'access', 'sure', 'buy', 'mico', 'sd', 'card', 'phone', 'not', 'much', 'intern', 'memori', 'whole', 'famili', 'blu', 'phone', 'love'], ['use', 'serious', 'samsung', 'phone', 'littl', 'matur', 'decid', 'need', 'shop', 'frugal', 'found', 'littl', 'guy', 'quit', 'bit', 'research', 'less', 'week', 'say', 'not', 'terribl', 'disappoint', 'occasion', 'act', 'insist', 'sd', 'card', 'not', 'insert', 'wish', 'intern', 'space', 'got', 'paid', 'price', 'phone', 'phenomen', 'price', 'date', 'oper', 'system', 'quadcor', 'decent', 'camera', 'great', 'startup', 'app', 'great', 'phone', 'someon', 'like', 'crave', 'tech', 'not', 'want', 'pay', 'ridicul', 'amount'], ['said', 'compar', 'compani', 'servic', 'not'], ['excel', 'phone', 'valu'], ['coupl', 'week', 'look', 'like', 'stock', 'android', 'great', 'come', 'everyth', 'need', 'includ', 'bumper', 'case', 'screen', 'protector', 'beyond', 'everyth', 'seem', 'load', 'pretti', 'quick', 'includ', 'websit', 'batteri', 'seem', 'last', 'coupl', 'day', 'least', 'not', 'use', 'price', 'half', 'price', 'unlock', 'android', 'kit', 'kat', 'blu', 'say', 'upgrad', 'lollipop', 'june', 'basic', 'latest', 'version', 'remov', 'batteri', 'thank', 'god', 'nice', 'abl', 'replac', 'batteri', 'give', 'phone', 'kid', 'buy', 'bigger', 'one', 'without', 'depend', 'someon', 'open', 'phone', 'way', 'phone', 'not', 'need', 'thinner', 'bumper', 'case', 'screen', 'protector', 'even', 'pretti', 'comfort', 'earbud', 'remot', 'mic', 'unfortun', 'everi', 'emerg', 'number', 'program', 'includ', 'provid', 'voicemail', 'number', 'found', 'way', 'around', 'littl', 'not', 'find', 'altern', 'case', 'purchas', 'includ', 'bumper', 'case', 'seem', 'suffici', 'hardwar', 'button', 'not', 'littl', 'harder', 'use', 'dark', 'remedi', 'softwar', 'app', 'camera', 'seem', 'littl', 'weak', 'use', 'littl', 'anyway', 'normal', 'camera', 'howev', 'took', 'great', 'voic', 'speakerphon', 'not', 'sound', 'great', 'probabl', 'not', 'use', 'much', 'use', 'phone', 'normal', 'sound', 'probabl', 'complet', 'budget', 'smartphon', 'get', 'might', 'make', 'jump', 'io', 'bandwagon', 'complet'], ['senior', 'much', 'want', 'use', 'smart', 'phone', 'not', 'come', 'necessari', 'instruct', 'would', 'enabl', 'program', 'use', 'expect', 'come', 'china', 'not', 'made', 'miami', 'know', 'mani', 'featur', 'not', 'abl', 'use'], ['use', 'serious', 'samsung', 'phone', 'littl', 'matur', 'decid', 'need', 'shop', 'frugal', 'found', 'littl', 'guy', 'quit', 'bit', 'research', 'less', 'week', 'say', 'not', 'terribl', 'disappoint', 'occasion', 'act', 'insist', 'sd', 'card', 'not', 'insert', 'wish', 'intern', 'space', 'got', 'paid', 'price', 'phone', 'phenomen', 'price', 'date', 'oper', 'system', 'quadcor', 'decent', 'camera', 'great', 'startup', 'app', 'great', 'phone', 'someon', 'like', 'crave', 'tech', 'not', 'want', 'pay', 'ridicul', 'amount'], ['coupl', 'week', 'look', 'like', 'stock', 'android', 'great', 'come', 'everyth', 'need', 'includ', 'bumper', 'case', 'screen', 'protector', 'beyond', 'everyth', 'seem', 'load', 'pretti', 'quick', 'includ', 'websit', 'batteri', 'seem', 'last', 'coupl', 'day', 'least', 'not', 'use', 'price', 'half', 'price', 'unlock', 'android', 'kit', 'kat', 'blu', 'say', 'upgrad', 'lollipop', 'june', 'basic', 'latest', 'version', 'remov', 'batteri', 'thank', 'god', 'nice', 'abl', 'replac', 'batteri', 'give', 'phone', 'kid', 'buy', 'bigger', 'one', 'without', 'depend', 'someon', 'open', 'phone', 'way', 'phone', 'not', 'need', 'thinner', 'bumper', 'case', 'screen', 'protector', 'even', 'pretti', 'comfort', 'earbud', 'remot', 'mic', 'unfortun', 'everi', 'emerg', 'number', 'program', 'includ', 'provid', 'voicemail', 'number', 'found', 'way', 'around', 'littl', 'not', 'find', 'altern', 'case', 'purchas', 'includ', 'bumper', 'case', 'seem', 'suffici', 'hardwar', 'button', 'not', 'littl', 'harder', 'use', 'dark', 'remedi', 'softwar', 'app', 'camera', 'seem', 'littl', 'weak', 'use', 'littl', 'anyway', 'normal', 'camera', 'howev', 'took', 'great', 'voic', 'speakerphon', 'not', 'sound', 'great', 'probabl', 'not', 'use', 'much', 'use', 'phone', 'normal', 'sound', 'probabl', 'complet', 'budget', 'smartphon', 'get', 'might', 'make', 'jump', 'io', 'bandwagon', 'complet'], ['perfect', 'wife', 'puretalk', 'program'], ['excel'], ['not', 'get', 'sim', 'card', 'phone', 'upset', 'n', 'not', 'get', 'phone'], ['best', 'cell', 'phone', 'ever', 'own', 'great', 'microphon', 'goe', 'realli', 'loud', 'want', 'clear', 'come', 'go', 'great', 'servic', 'bar', 'phone', 'wifi', 'live', 'countri', 'wyom', 'not', 'easi', 'free', 'ear', 'bud', 'excel', 'sound', 'impress', 'say', 'small', 'negat', 'thing', 'problem', 'button', 'first', 'seem', 'ok', 'press', 'hard', 'forev', 'noth', 'concern', 'hope', 'gone', 'good', 'somebodi', 'pleas', 'tell', 'kind', 'sd', 'memori', 'card', 'buy', 'thing', 'not', 'see', 'inform', 'anywher', 'size', 'got', 'system', 'one', 'week', 'far', 'happi', 'goodby', 'samsung', 'zte', 'appl', 'etc', 'never', 'i', 'sold', 'blu', 'someon', 'final', 'got', 'right', 'final', 'leona'], ['excelent', 'tlf'], ['excel'], ['like', 'phone', 'wish', 'camera', 'better'], ['not', 'use', 'look', 'great'], ['phone', 'great', 'i', 'order', 'amazon', 'kid', 'i', 'glad', 'purchas', 'phone', 'purchas', 'activ', 'kit', 'straight', 'talk', 'love', 'kid', 'happi', 'know', 'i', 'prepar', 'purchas', 'soon', 'great', 'qualiti', 'phone'], ['excelent'], ['better', 'expect', 'littl', 'andoid', 'minitur'], ['purchas', 'grandson', 'work', 'farm', 'manag', 'break', 'three', 'phone', 'time', 'tell', 'long', 'one', 'last', 'said', 'small', 'fit', 'pocket', 'well', 'far', 'total', 'thumb', 'younger', 'brother', 'beg', 'one', 'christma', 'present'], ['realli', 'good'], ['excelent'], ['phone', 'alright', 'quot', 'term', 'speed', 'function', 'call', 'qualiti', 'made', 'quiet', 'led', 'peopl', 'unabl', 'phone', 'die', 'drop', 'feet', 'onto', 'smooth', 'cement', 'pad', 'shatter', 'screen', 'month', 'old', 'till', 'horrid', 'moment', 'thought', 'addit', 'phone', 'jack', 'imposs', 'open', 'frequent', 'would', 'pri', 'open', 'pencil', 'screwdriv', 'due', 'extrem', 'tight', 'natur', 'plug', 'port', 'time', 'made', 'necessari', 'weaken', 'flap', 'cord', 'would', 'push', 'plug', 'happen', 'month', 'final', 'whilst', 'frequent', 'put', 'devic', 'underwat', 'rare', 'would', 'allow', 'water', 'case', 'requir', 'open', 'case', 'dri', 'devic', 'never', 'damag', 'use', 'like', 'netflix', 'despit', 'fact', 'charger', 'batteri', 'would', 'still', 'get', 'run', 'i', 'never', 'succeed', 'manag', 'actual', 'deplet', 'batteri', 'warn', 'may', 'charg', 'hour', 'end', 'batteri', 'actual', 'drop', 'low', 'start', 'initi', 'charg', 'advis', 'button', 'slight', 'difficult', 'press', 'not', 'major', 'concern', 'howev', 'not', 'press', 'button', 'whilst', 'underwat', 'malfunct', 'day', 'afterward', 'mind', 'also', 'plug', 'must', 'longer', 'standard', 'manag', 'make', 'audio', 'jack', 'fit', 'slight', 'malfunct', 'extrem', 'annoy', 'puls', 'audio', 'output', 'one', 'channel', 'wil', 'play', 'thus', 'make', 'movi', 'one', 'not', 'hear', 'voic', 'someth', 'hey', 'cheap', 'expect'], ['good'], ['phone', 'good', 'gps', 'show', 'locat', 'almost', 'mile', 'real', 'locat', 'i', 'not', 'sure', 'tune', 'way', 'owner', 'manual', 'ok'], ['order', 'phone', 'friday', 'novemb', 'deliv', 'monday', 'decemb', 'seem', 'realli', 'complic', 'read', 'everyth', 'tuesday', 'decemb', 'took', 'local', 'store', 'sinc', 'servic', 'show', 'guy', 'never', 'seen', 'one', 'quit', 'interest', 'suppos', 'capabl', 'told', 'would', 'give', 'tri', 'could', 'not', 'guarante', 'would', 'work', 'took', 'micro', 'sim', 'card', 'put', 'phone', 'punch', 'model', 'number', 'phone', 'comput', 'system', 'surpris', 'came', 'basic', 'phone', 'activ', 'phone', 'gave', 'call', 'cell', 'phone', 'rang', 'upon', 'answer', 'sound', 'came', 'nice', 'clear', 'speaker', 'phone', 'vice', 'versa', 'finish', 'deal', 'walk', 'outsid', 'got', 'truck', 'began', 'studi', 'capabl', 'phone', 'yes', 'dial', 'phone', 'number', 'also', 'program', 'phone', 'speed', 'dial', 'number', 'well', 'cool', 'featur', 'phone', 'program', 'via', 'text', 'messag', 'set', 'password', 'phone', 'realli', 'curious', 'gps', 'work', 'simpl', 'matter', 'send', 'phone', 'certain', 'text', 'messag', 'minut', 'text', 'back', 'exact', 'locat', 'includ', 'red', 'dot', 'googl', 'map', 'locat', 'street', 'point', 'interest', 'coordin', 'pretti', 'sweet', 'ask', 'went', 'home', 'even', 'though', 'bought', 'christma', 'present', 'year', 'old', 'son', 'decid', 'would', 'go', 'give', 'sinc', 'i', 'alreadi', 'pay', 'month', 'ad', 'phone', 'bill', 'unlimit', 'call', 'well', 'son', 'got', 'bus', 'sit', 'tabl', 'cours', 'came', 'straight', 'held', 'call', 'phone', 'eye', 'lit', 'answer', 'cours', 'call', 'everyon', 'famili', 'let', 'know', 'watch', 'phone', 'finish', 'homework', 'drop', 'basebal', 'coach', 'hous', 'could', 'go', 'practic', 'indoor', 'could', 'run', 'sale', 'call', 'period', 'test', 'gps', 'time', 'ping', 'back', 'exact', 'locat', 'mile', 'away', 'call', 'way', 'practic', 'practic', 'nice', 'clear', 'servic', 'call', 'give', 'watch', 'phone', 'star', 'shall', 'see', 'durabl', 'depend', 'time', 'right', 'feel', 'great', 'invest'], ['one', 'get', 'work', 'tri', 'multipl', 'store', 'foreign', 'accent', 'strong', 'one', 'understand'], ['bought', 'year', 'old', 'inconspicu', 'watch', 'phone', 'could', 'find', 'could', 'not', 'happier', 'featur', 'offer', 'eas', 'use', 'clariti', 'voic', 'call', 'bought', 'phone', 'most', 'emerg', 'also', 'year', 'old', 'friend', 'call', 'cell', 'phone', 'time', 'realli', 'hous', 'phone', 'anymor', 'benefit', 'everyth', 'control', 'guardian', 'phone', 'number', 'not', 'chang', 'mode', 'without', 'make', 'call', 'limit', 'guardian', 'not', 'answer', 'call', 'send', 'text', 'phone', 'automat', 'call', 'text', 'phone', 'call', 'way', 'convers', 'not', 'know', 'listen', 'person', 'like', 'serv', 'nanni', 'cam', 'leav', 'someon', 'els', 'care', 'send', 'command', 'lattitud', 'emerg', 'press', 'button', 'rotat', 'preset', 'guardian', 'number', 'someon', 'send', 'command', 'set', 'alarm', 'use', 'remind', 'time', 'come', 'home', 'play', 'friend', 'set', 'multipl', 'alarm', 'also', 'good', 'rememb', 'medic', 'remind', 'come', 'earbud', 'convers', 'without', 'earbud', 'batteri', 'life', 'compar', 'cell', 'phone', 'charg', 'mine', 'night', 'case', 'charg', 'within', 'phone', 'light', 'receiv', 'command', 'blink', 'send', 'confirm', 'back', 'guardian', 'not', 'waterproof', 'kid', 'go', 'summer', 'camp', 'swim', 'day', 'week', 'hope', 'rememb', 'take', 'not', 'lose', 'volum', 'control', 'autom', 'voic', 'fair', 'first', 'receiv', 'watch', 'kept', 'get', 'password', 'error', 'could', 'not', 'set', 'anyth', 'went', 'download', 'zip', 'file', 'password', 'bug', 'instal', 'updat', 'i', 'heard', 'sinc', 'work', 'put', 'command', 'password', 'command', 'rather', 'instruct', 'command', 'password', 'found', 'easier', 'updat', 'found', 'easi', 'activ', 'phone', 'purchas', 'gophon', 'micro', 'sim', 'card', 'activ', 'sim', 'onlin', 'init', 'start', 'prepaid', 'plan', 'per', 'found', 'set', 'use', 'half', 'spend', 'limit', 'send', 'text', 'receiv', 'confirm', 'text', 'keep', 'mind', 'read', 'entir', 'review', 'start', 'problem', 'password', 'led', 'send', 'lot', 'text', 'ultim', 'decid', 'stick', 'plan', 'younger', 'child', 'call', 'guardian', 'number', 'went', 'unlimit', 'talk', 'text', 'prepaid', 'plan', 'year', 'old', 'actual', 'make', 'receiv', 'carrier', 'need', 'gsm', 'carrier', 'rule', 'verizon', 'sprint', 'tmobil', 'work', 'great', 'valu', 'money', 'happi'], ['got', 'daughter', 'birthday', 'age', 'stay', 'friend', 'hous', 'time', 'time', 'school', 'activ', 'wife', 'thought', 'would', 'great', 'way', 'contact', 'needless', 'say', 'love', 'rather', 'larg', 'kid', 'not', 'ordinari', 'sinc', 'see', 'grader', 'wear', 'watch', 'big', 'time', 'cut', 'coupl', 'watch', 'hole', 'band', 'fit', 'wrist', 'set', 'easi', 'includ', 'direct', 'though', 'wife', 'verizon', 'get', 'gsm', 'card', 'went', 'tmobil', 'microsim', 'cent', 'min', 'store', 'realli', 'not', 'sure', 'go', 'work', 'walk', 'work', 'without', 'issu', 'includ', 'tweezer', 'great', 'help', 'tmobil', 'guy', 'employe', 'thought', 'coolest', 'thing', 'ever', 'ask', 'much', 'paid', 'card', 'watch', 'state', 'thick', 'chines', 'accent', 'enter', 'standbi', 'mode', 'good', 'go', 'daughter', 'exact', 'one', 'month', 'time', 'one', 'fals', 'guardian', 'wife', 'nanni', 'got', 'distress', 'text', 'pretti', 'cool', 'featur', 'right', 'context', 'accept', 'fals', 'alarm', 'rate', 'opinion', 'call', 'phone', 'without', 'issu', 'voic', 'quit', 'clear', 'speaker', 'worn', 'left', 'wrist', 'hold', 'right', 'ear', 'posit', 'like', 'regular', 'phone', 'complaint', 'watch', 'constant', 'blink', 'blue', 'light', 'top', 'not', 'annoy', 'dark', 'environ', 'total', 'betray', 'fact', 'watch', 'issu', 'school', 'not', 'allow', 'cell', 'phone', 'custom', 'servic', 'read', 'review', 'dad', 'state', 'generat', 'watch', 'not', 'credit', 'respond', 'quick', 'without', 'solut', 'afraid', 'not', 'stop', 'watch', 'blue', 'light', 'show', 'watch', 'automat', 'search', 'gps', 'signal', 'occasion', 'sorri', 'inconveni', 'best', 'regard', 'iren', 'reason', 'not', 'give', 'star', 'anybodi', 'figur', 'turn', 'pleas', 'let', 'know'], ['dissatisfi', 'result', 'understand', 'not', 'set', 'navig', 'work', 'devic', 'also', 'preset', 'telephon', 'number', 'direct', 'unclear', 'overal', 'idea', 'item', 'genius', 'knowledg', 'experi', 'technician', 'complet', 'loss', 'could', 'not', 'figur', 'set', 'watch', 'either', 'telephon', 'work', 'also', 'disappoint', 'pay', 'month', 'thought', 'would', 'price', 'besid', 'tri', 'get', 'touch', 'whomev', 'made', 'watch', 'imposs', 'email', 'respons', 'noth'], ['great', 'watch', 'easi', 'use', 'use', 'month', 'unlimit', 'minut', 'share', 'plan', 'accur', 'gps', 'posit', 'easi', 'setup', 'realli', 'recommend', 'watch', 'better', 'watch', 'smart', 'phone', 'buy', 'kid', 'bit', 'big', 'six', 'year', 'old', 'kid', 'grow'], ['ok', 'someon', 'direct', 'real', 'instruct', 'feel', 'like', 'complet', 'idiot', 'i', 'go', 'ask', 'perhap', 'idiot', 'simpl', 'question', 'give', 'idea', 'electron', 'lack', 'phone', 'iphon', 'not', 'even', 'rememb', 'set', 'virgin', 'mobil', 'provid', 'month', 'plan', 'unlimit', 'data', 'phone', 'never', 'go', 'hand', 'watch', 'without', 'light', 'keypad', 'sim', 'card', 'still', 'packag', 'sign', 'plan', 'servic', 'sim', 'card', 'insert', 'watch', 'get', 'phone', 'number', 'watch', 'text', 'watch', 'receiv', 'gps', 'locat', 'back', 'i', 'clear', 'not', 'understand', 'relationship', 'sim', 'card', 'phone', 'servic', 'phone', 'guardian', 'phone', 'someon', 'help', 'thank', 'excit', 'get', 'work'], ['yes', 'bit', 'big', 'child', 'wrist', 'yes', 'thick', 'asian', 'accent', 'voic', 'phone', 'kind', 'pain', 'set', 'far', 'make', 'receiv', 'call', 'great', 'gps', 'work', 'good', 'got', 'prepay', 'plan', 'dollar', 'month', 'minut', 'seem', 'reason', 'abl', 'get', 'hold', 'child', 'besid', 'first', 'thing', 'mention', 'phone', 'seem', 'serv', 'purpos'], ['purchas', 'watch', 'son', 'setup', 'fair', 'simpl', 'work', 'quit', 'well', 'would', 'high', 'recommend', 'product', 'keep', 'touch', 'young', 'children'], ['bought', 'one', 'tri', 'bought', 'second', 'one', 'coupl', 'week', 'later', 'child', 'watch', 'big', 'year', 'old', 'wrist', 'not', 'big', 'consid', 'unwear', 'gain', 'much', 'attent', 'look', 'like', 'big', 'kid', 'watch', 'need', 'drill', 'one', 'extra', 'hole', 'band', 'get', 'fit', 'gps', 'not', 'super', 'accur', 'length', 'hous', 'plenti', 'accur', 'enough', 'phone', 'batteri', 'not', 'last', 'overnight', 'watch', 'must', 'recharg', 'via', 'usb', 'cabl', 'daili', 'watch', 'batteri', 'separ', 'watch', 'keep', 'tick', 'even', 'phone', 'capabl', 'bought', 'primarili', 'kid', 'may', 'less', 'optim', 'supervis', 'school', 'field', 'trip', 'would', 'not', 'ask', 'wear', 'daili', 'sinc', 'know', 'much', 'phone', 'radiat', 'would', 'absorb', 'wrist', 'great', 'idea', 'i', 'glad', 'someon', 'execut', 'well', 'improv', 'would', 'watch', 'thick', 'batteri', 'life', 'i', 'still', 'give', 'star', 'sinc', 'i', 'look'], ['advertis'], ['probabl', 'thing', 'i', 'purchas', 'last', 'year', 'exact', 'advertis'], ['look', 'like', 'big', 'deal', 'good', 'spec', 'howev', 'worst', 'phone', 'ever', 'complet', 'regret', 'al', 'reboot', 'could', 'pocket', 'exampl', 'sudden', 'without', 'reason', 'anoth', 'exampl', 'could', 'accident', 'drop', 'receiv', 'littl', 'bluetooth', 'pathet', 'alway', 'problem', 'connect', 'instanc', 'tri', 'connect', 'car', 'bluetooth', 'pain', 'neck', 'problem', 'not', 'happen', 'friend', 'phone', 'car', 'conclus', 'not', 'buy', 'thl', 'product', 'i', 'buy', 'real', 'enterpris', 'phone', 'soni', 'appl', 'samsung', 'i', 'never', 'issu', 'hope', 'found', 'use'], ['buy', 'cellphon', 'camera', 'amazingth', 'cell', 'phone', 'ls', 'amaz', 'stylecan', 'cellphon', 'activ', 'mexico', 'part', 'world'], ['great', 'phone', 'like', 'wish', 'keep', 'simpl', 'recept', 'peopl', 'around', 'high', 'phone', 'servic'], ['not', 'realiz', 'extrem', 'use', 'not', 'even', 'use', 'itveri', 'disappoint'], ['phone', 'lock'], ['happi', 'mobil', 'servic', 'phone', 'perfect', 'teenag', 'month', 'unlimit', 'text', 'phone', 'work', 'like', 'pod', 'anywher', 'wifi', 'full', 'internet', 'addit', 'cost', 'econom', 'option'], ['percept', 'use', 'email', 'pay', 'use', 'without', 'contract', 'got', 'activ', 'not', 'use', 'email', 'without', 'contract'], ['mani', 'phone', 'year', 'one', 'far', 'best', 'basic', 'phone', 'reliabl', 'phone', 'wonder', 'sound', 'clariti', 'easi', 'qwerti', 'keyboard', 'durabl', 'son', 'ident', 'phone', 'heavi', 'use', 'even', 'work', 'fine', 'run', 'car', 'duck', 'tape', 'togeth'], ['work', 'wonder'], ['overpr', 'good', 'qualiti'], ['help', 'realli', 'need', 'convert', 'electr'], ['good', 'phone'], ['bueno'], ['good', 'peopl'], ['batteri', 'came', 'bad', 'not', 'grip', 'load'], ['worst', 'movil', 'phone', 'ever'], ['excelent'], ['thank'], ['octob', 'updat', 'twitterpeek', 'not', 'work', 'longer', 'not', 'buy', 'alreadi', 'twitterpeek', 'lifetim', 'servic', 'peek', 'tell', 'peek', 'offer', 'twitterpeek', 'user', 'lifetim', 'servic', 'switch', 'peek', 'one', 'year', 'servic', 'lifetim', 'servic', 'direct', 'straight', 'swap', 'someon', 'els', 'getpeek', 'discuss', 'forum', 'say', 'pay', 'extra', 'get', 'lifetim', 'servic', 'peek', 'want', 'swap', 'peek', 'say', 'not', 'buy', 'twitterpeek', 'get', 'real', 'phone', 'internet', 'phone', 'twitter', 'base', 'experi', 'twitterpeek', 'expect', 'dead', 'devic', 'wast', 'money', 'octob', 'updat', 'twitterpeek', 'longer', 'work', 'twitterpeek', 'dead', 'devic', 'accord', 'support', 'messag', 'i', 'receiv', 'peek', 'inc', 'eta', 'twitter', 'servic', 'may', 'restor', 'peek', 'say', 'twitterpeek', 'user', 'get', 'peek', 'devic', 'new', 'email', 'devic', 'lemonad', 'offer', 'get', 'peek', 'contact', 'peek', 'swap', 'lifetim', 'servic', 'twitterpeek', 'peek', 'twitter', 'peek', 'peek', 'still', 'not', 'gotten', 'twitter', 'work', 'may', 'advertis', 'twitter', 'peek', 'admit', 'twitter', 'not', 'work', 'not', 'switch', 'peek', 'yet', 'anticip', 'least', 'get', 'sort', 'lifetim', 'servic', 'i', 'origin', 'paid', 'edit', 'contact', 'support', 'check', 'see', 'differ', 'pay', 'lifetim', 'servic', 'may', 'not', 'want', 'get', 'i', 'paid', 'want', 'pay', 'peek', 'devic', 'look', 'twitterpeek', 'not', 'get', 'addit', 'suggest', 'not', 'bother', 'look', 'peek', 'devic', 'servic', 'not', 'reliabl', 'experi', 'also', 'look', 'getpeek', 'discuss', 'forum', 'peopl', 'complain', 'outag', 'peek', 'devic', 'better', 'look', 'unlock', 'phone', 'put', 'sim', 'card', 'phone', 'use', 'gophon', 'prepaid', 'servic', 'phone', 'get', 'voic', 'well', 'internet', 'therebi', 'get', 'twitter', 'i', 'mention', 'previous', 'updat', 'review', 'use', 'five', 'star', 'i', 'sinc', 'downgrad', 'review', 'one', 'star', 'not', 'get', 'twitterpeek', 'use', 'enthusiast', 'twitterpeek', 'wholeheart', 'agre', 'review', 'review', 'experi', 'twitterpeek', 'experi', 'twitterpeek', 'tell', 'definit', 'make', 'mistak', 'get', 'twitterpeek', 'sinc', 'twitterpeek', 'dead', 'brick', 'devic', 'compani', 'behind', 'devic', 'tell', 'peopl', 'switch', 'someth', 'els', 'octob', 'updat', 'still', 'twitter', 'origin', 'five', 'star', 'complet', 'downgrad', 'one', 'twitterpeek', 'suppos', 'havelifetim', 'servic', 'pointther', 'servic', 'forov', 'one', 'month', 'sept', 'updat', 'peek', 'discuss', 'forum', 'amolsarva', 'twitterpeek', 'fix', 'status', 'offici', 'word', 'twitterpeek', 'get', 'readi', 'launch', 'peek', 'twitter', 'chang', 'bunch', 'broke', 'near', 'fix', 'go', 'work', 'not', 'also', 'peek', 'even', 'turn', 'peek', 'pronto', 'want', 'credit', 'back', 'month', 'plan', 'twitterpeek', 'pleas', 'email', 'care', 'getpeeka', 'cool', 'thing', 'link', 'follow', 'mini', 'browser', 'work', 'peek', 'updat', 'recent', 'chang', 'twitter', 'authent', 'account', 'twitterpeek', 'dead', 'get', 'servic', 'twitter', 'sinc', 'begin', 'septemb', 'first', 'peopl', 'peek', 'said', 'would', 'access', 'twitter', 'restor', 'thursday', 'septemb', 'date', 'fell', 'say', 'access', 'twitter', 'restor', 'sometim', 'follow', 'week', 'next', 'week', 'time', 'i', 'current', 'write', 'updat', 'time', 'debut', 'next', 'product', 'call', 'peek', 'far', 'i', 'got', 'three', 'month', 'lifetim', 'servic', 'twitterpeek', 'i', 'wait', 'see', 'comatos', 'twitterpeek', 'actual', 'rise', 'dead', 'start', 'work', 'total', 'annoy', 'wait', 'see', 'actual', 'happen', 'i', 'report', 'back', 'twitter', 'access', 'restor', 'twitterpeek', 'chang', 'agre', 'naysay', 'better', 'smartphon', 'type', 'internet', 'access', 'access', 'twitter', 'go', 'away', 'comput', 'instanc', 'look', 'unlock', 'phone', 'take', 'gsm', 'card', 'like', 'lg', 'phone', 'even', 'iphon', 'clone', 'use', 'gophon', 'prepaid', 'servic', 'voic', 'call', 'internet', 'origin', 'worthless', 'june', 'reviewwith', 'juli', 'concept', 'dead', 'worthless', 'not', 'buy', 'peek', 'not', 'even', 'buy', 'new', 'peek', 'stay', 'far', 'away', 'either', 'someth', 'want', 'someth', 'realli', 'despis', 'seem', 'two', 'way', 'either', 'like', 'hate', 'record', 'like', 'twitterpeek', 'howev', 'twitterpeek', 'not', 'everyon', 'particular', 'not', 'not', 'understand', 'twitter', 'certain', 'not', 'vocal', 'hater', 'not', 'understand', 'reason', 'devic', 'like', 'twitterpeek', 'smartphon', 'like', 'iphon', 'peopl', 'definit', 'want', 'smartphon', 'power', 'peopl', 'want', 'twitterpeek', 'simplic', 'lack', 'month', 'phone', 'bill', 'get', 'twitterpeek', 'lifetim', 'servic', 'choic', 'beauti', 'divers', 'marketplac', 'provid', 'peopl', 'buy', 'let', 'us', 'compar', 'two', 'side', 'want', 'twitterpeek', 'hate', 'typic', 'said', 'sad', 'realli', 'hate', 'despis', 'twitterpeek', 'vengeanc', 'blog', 'comment', 'around', 'twitterpeek', 'noth', 'piec', 'twitter', 'complet', 'wast', 'not', 'twitter', 'like', 'txting', 'cell', 'phone', 'anyway', 'twitterpeek', 'complet', 'wast', 'two', 'hundr', 'dollar', 'use', 'buy', 'real', 'get', 'real', 'smartphon', 'like', 'iphon', 'droid', 'blackberri', 'twitterpeek', 'anoth', 'devic', 'twitterpeek', 'interfac', 'horribl', 'use', 'scroll', 'use', 'scroll', 'wheel', 'go', 'tweet', 'like', 'twitterpeek', 'not', 'show', 'complet', 'tweet', 'twitterpeek', 'not', 'new', 'twitter', 'twitterpeek', 'not', 'multipl', 'compani', 'behind', 'twitterpeek', 'doom', 'go', 'real', 'geek', 'hate', 'twitterpeek', 'idiot', 'would', 'want', 'use', 'let', 'us', 'go', 'happili', 'definit', 'want', 'twitterpeek', 'lifetim', 'servic', 'approxim', 'one', 'hundr', 'buck', 'twitterpeek', 'lifetim', 'servic', 'mean', 'month', 'twitterpeek', 'month', 'bill', 'goe', 'perfect', 'cheap', 'prepaid', 'cell', 'twitterpeek', 'peopl', 'not', 'want', 'use', 'twitterpeek', 'keyboard', 'quick', 'go', 'tweet', 'instead', 'use', 'scroll', 'use', 'n', 'p', 'key', 'go', 'quick', 'tweet', 'tweet', 'not', 'not', 'geek', 'use', 'compani', 'behind', 'twitterpeek', 'not', 'go', 'peopl', 'use', 'twitterpeek', 'not', 'idiot', 'not', 'rain', 'repeat', 'twitterpeek', 'lifetim', 'servic', 'approxim', 'one', 'hundr', 'buck', 'battl', 'adversari', 'opinion', 'twitterpeek', 'kind', 'ridicul', 'like', 'talk', 'religion', 'peopl', 'hate', 'twitterpeek', 'realli', 'hate', 'twitterpeek', 'vengeanc', 'automat', 'reflex', 'action', 'part', 'one', 'area', 'content', 'find', 'silli', 'critic', 'navig', 'use', 'scroll', 'wheel', 'yes', 'bad', 'go', 'tweet', 'use', 'scroll', 'wheel', 'back', 'button', 'better', 'way', 'realli', 'quick', 'go', 'tweet', 'twitterpeek', 'use', 'keyboard', 'command', 'click', 'enter', 'return', 'key', 'select', 'tweet', 'use', 'n', 'key', 'next', 'p', 'key', 'previous', 'go', 'tweet', 'tweet', 'yes', 'one', 'time', 'quick', 'seamless', 'go', 'twitter', 'timelin', 'practic', 'effect', 'anyway', 'read', 'whether', 'timelin', 'not', 'twitter', 'aficionado', 'critic', 'say', 'not', 'scan', 'complet', 'tweet', 'whole', 'timelin', 'nonetheless', 'quick', 'go', 'tweet', 'use', 'keyboard', 'command', 'n', 'p', 'key', 'not', 'make', 'much', 'differ', 'look', 'small', 'screen', 'video', 'includ', 'review', 'intend', 'give', 'idea', 'navig', 'twitter', 'timelin', 'either', 'use', 'keyboard', 'storag', 'space', 'twitterpeek', 'approxim', 'megabyt', 'like', 'teeni', 'weeni', 'tini', 'size', 'megabyt', 'not', 'gigabyt', 'talk', 'twitter', 'text', 'messag', 'charact', 'long', 'per', 'tweet', 'enough', 'storag', 'space', 'make', 'twitterpeek', 'seem', 'like', 'over', 'expens', 'devic', 'origin', 'price', 'two', 'hundr', 'dollar', 'tini', 'devic', 'whether', 'origin', 'dollar', 'price', 'tag', 'recent', 'discount', 'price', 'approxim', 'buck', 'whatev', 'pay', 'twitterpeek', 'lifetim', 'servic', 'go', 'most', 'toward', 'servic', 'like', 'prepay', 'most', 'lifetim', 'servic', 'get', 'twitterpeek', 'devic', 'lesser', 'amount', 'averag', 'paid', 'upfront', 'time', 'may', 'turn', 'good', 'deal', 'want', 'twitter', 'assum', 'not', 'lose', 'break', 'twitterpeek', 'devic', 'lifetim', 'servic', 'lifetim', 'devic', 'buy', 'assum', 'hope', 'compani', 'behind', 'twitterpeek', 'older', 'sibl', 'peek', 'pronto', 'stay', 'busi', 'continu', 'provid', 'onlin', 'servic', 'suppos', 'send', 'tweet', 'relat', 'note', 'regard', 'onlin', 'servic', 'could', 'tell', 'twitterpeek', 'retriev', 'tweet', 'everi', 'minut', 'i', 'notic', 'similar', 'delay', 'perhap', 'not', 'peopl', 'twitter', 'send', 'tweet', 'smartphon', 'usual', 'okay', 'tweet', 'would', 'come', 'time', 'like', 'sometim', 'may', 'look', 'like', 'twitterpeek', 'stop', 'receiv', 'tweet', 'look', 'like', 'twitterpeek', 'stop', 'receiv', 'tweet', 'like', 'hour', 'gone', 'not', 'see', 'new', 'tweet', 'tri', 'turn', 'twitterpeek', 'assum', 'expect', 'get', 'bunch', 'tweet', 'everi', 'minut', 'lot', 'peopl', 'follow', 'current', 'follow', 'peopl', 'someon', 'someon', 'els', 'although', 'not', 'everyon', 'time', 'time', 'tweet', 'someth', 'everi', 'minut', 'whether', 'day', 'night', 'could', 'day', 'elsewher', 'world', 'expect', 'constant', 'get', 'tweet', 'wait', 'look', 'timelin', 'pile', 'tweet', 'follow', 'peopl', 'frequenc', 'receiv', 'tweet', 'may', 'less', 'not', 'often', 'look', 'like', 'tweet', 'stop', 'long', 'time', 'chanc', 'twitterpeek', 'may', 'need', 'reboot', 'turn', 'twitterpeek', 'see', 'miss', 'tweet', 'show', 'twitterpeek', 'realli', 'not', 'get', 'new', 'tweet', 'could', 'varieti', 'reason', 'like', 'main', 'twitter', 'server', 'everyon', 'access', 'overwhelm', 'busi', 'time', 'like', 'recent', 'world', 'cup', 'soccer', 'game', 'twitter', 'technic', 'problem', 'i', 'seen', 'happen', 'regular', 'twitter', 'websit', 'twitter', 'app', 'like', 'tweeti', 'hootsuit', 'reboot', 'twitterpeek', 'turn', 'turn', 'back', 'see', 'clear', 'thing', 'end', 'wait', 'see', 'twitter', 'clear', 'start', 'updat', 'thing', 'awar', 'realli', 'want', 'get', 'twitterpeek', 'devic', 'click', 'link', 'tweet', 'get', 'text', 'webpag', 'link', 'sometim', 'may', 'scroll', 'bunch', 'text', 'get', 'main', 'part', 'page', 'want', 'read', 'link', 'page', 'complex', 'busi', 'may', 'get', 'noth', 'get', 'pictur', 'twitterpeek', 'link', 'twitpic', 'time', 'not', 'anywher', 'els', 'twitterpeek', 'not', 'email', 'twitter', 'multipl', 'account', 'batteri', 'life', 'suppos', 'last', 'four', 'day', 'depend', 'much', 'use', 'whether', 'good', 'bad', 'signal', 'mayb', 'expect', 'plug', 'charg', 'everi', 'night', 'happi', 'charg', 'twitterpeek', 'everi', 'two', 'day', 'come', 'charger', 'plug', 'electr', 'wall', 'outlet', 'howev', 'want', 'charg', 'twitterpeek', 'via', 'usb', 'comput', 'get', 'blackberri', 'cabl', 'hook', 'twitterpeek', 'comput', 'charg', 'twitterpeek', 'batteri', 'not', 'expect', 'firmwar', 'updat', 'twitterpeek', 'folk', 'peek', 'think', 'twitterpeek', 'work', 'fine', 'basic', 'twitter', 'function', 'twitterpeek', 'not', 'direct', 'handl', 'tweet', 'contain', 'foreign', 'languag', 'charact', 'like', 'japanes', 'chines', 'korean', 'thai', 'yet', 'i', 'notic', 'japanes', 'chines', 'korean', 'recent', 'thai', 'charact', 'tweet', 'convert', 'roman', 'text', 'i', 'guess', 'roman', 'convers', 'happen', 'peek', 'server', 'tweet', 'sent', 'twitterpeek', 'not', 'translat', 'roman', 'script', 'charact', 'text', 'phonet', 'pronunci', 'purpos', 'howev', 'may', 'question', 'mark', 'differ', 'strang', 'charact', 'convers', 'not', 'complet', 'not', 'know', 'script', 'languag', 'also', 'relat', 'look', 'like', 'twitterpeek', 'unfortun', 'not', 'handl', 'symbol', 'charact', 'like', 'heart', 'symbol', 'point', 'symbol', 'music', 'note', 'symbol', 'peopl', 'may', 'use', 'tweet', 'get', 'question', 'mark', 'instead', 'note', 'peopl', 'peek', 'would', 'visual', 'pleas', 'incomplet', 'convers', 'replac', 'asterisk', 'instead', 'question', 'mark', 'pros', 'con', 'twitterpeek', 'read', 'review', 'amazon', 'elsewher', 'find', 'peopl', 'say', 'previous', 'mention', 'yes', 'like', 'twitterpeek', 'find', 'easi', 'use', 'primarili', 'use', 'keyboard', 'command', 'i', 'wait', 'amazon', 'drop', 'price', 'twitterpeek', 'lifetim', 'servic', 'buy', 'far', 'i', 'keep', 'twitterpeek', 'turn', 'pretti', 'much', 'time', 'everi', 'would', 'reboot', 'twitterpeek', 'look', 'like', 'stop', 'receiv', 'tweet', 'typic', 'use', 'twitterpeek', 'i', 'away', 'comput', 'use', 'macbook', 'may', 'twitterpeek', 'plug', 'usb', 'comput', 'blackberri', 'cabl', 'kindl', 'cabl', 'work', 'also', 'charg', 'twitterpeek', 'batteri', 'would', 'access', 'twitter', 'most', 'comput', 'later', 'kind', 'hand', 'i', 'away', 'comput', 'would', 'use', 'twitterpeek', 'realli', 'want', 'iphon', 'smartphon', 'certain', 'not', 'not', 'twitter', 'not', 'understand', 'hoopla', 'surround', 'twitter', 'particular', 'not', 'howev', 'not', 'want', 'smartphon', 'like', 'iphon', 'particular', 'not', 'want', 'month', 'bill', 'come', 'smartphon', 'want', 'twitter', 'access', 'twitterpeek', 'lifetim', 'servic', 'may', 'possibl', 'read', 'view', 'updat', 'juli', 'anoth', 'point', 'comparison', 'navig', 'twitterpeek', 'look', 'youtub', 'video', 'demonstr', 'review', 'social', 'net', 'app', 'smartphon', 'look', 'lg', 'prime', 'prepaid', 'gophon', 'someth', 'like', 'iphon', 'social', 'net', 'applic', 'let', 'us', 'access', 'twitter', 'facebook', 'myspac', 'etc', 'way', 'navig', 'app', 'remind', 'twitterpeek', 'main', 'timelin', 'truncat', 'tweet', 'cut', 'end', 'tweet', 'want', 'read', 'whole', 'tweet', 'go', 'individu', 'tweet', 'fast', 'way', 'go', 'tweet', 'navig', 'messag', 'messag', 'twitterpeek', 'navig', 'not', 'realli', 'new', 'similar', 'navig', 'although', 'differ', 'interfac', 'found', 'look', 'like', 'price', 'twitterpeek', 'close', 'nineti', 'dollar', 'mark', 'charcoal', 'version', 'twitterpeek', 'price', 'aqua', 'version', 'one', 'hundr', 'fifti', 'time', 'would', 'realli', 'like', 'eventu', 'get', 'aqua', 'version', 'nice', 'whichev', 'one', 'get', 'assum', 'get', 'twitterpeek', 'lifetim', 'servic', 'consid', 'whatev', 'amount', 'pay', 'like', 'most', 'prepaid', 'lifetim', 'servic', 'twitterpeek', 'good', 'buy', 'far', 'i', 'concern', 'i', 'happi', 'mine', 'clear', 'not', 'work', 'peek', 'inc', 'i', 'user', 'twitterpeek', 'devic', 'howev', 'point', 'one', 'thing', 'frustrat', 'twitterpeek', 'think', 'may', 'also', 'frustrat', 'peopl', 'use', 'peek', 'pronto', 'email', 'version', 'devic', 'also', 'made', 'peek', 'compani', 'make', 'twitterpeek', 'recent', 'servic', 'outag', 'occur', 'one', 'occur', 'juli', 'weekend', 'two', 'consecut', 'day', 'last', 'sever', 'hour', 'day', 'i', 'guess', 'outag', 'relat', 'peek', 'compani', 'expand', 'europ', 'get', 'server', 'work', 'also', 'serv', 'new', 'european', 'user', 'peek', 'pronto', 'devic', 'multipl', 'countri', 'howev', 'guess', 'expect', 'hiccup', 'may', 'happen', 'part', 'grow', 'pain', 'peek', 'compani', 'may', 'go', 'expand', 'worldwid', 'otherwis', 'i', 'happi', 'twitterpeek', 'hope', 'continu', 'smooth', 'sail', 'minim', 'hiccup'], ['phone', 'pictur', 'not', 'one', 'got', 'took', 'day', 'even', 'get', 'work', 'also', 'way', 'contact', 'seller'], ['far', 'kid', 'happi', 'nice', 'qualiti', 'pictur', 'use', 'photographi', 'class', 'school', 'alway', 'share', 'beauti', 'photo'], ['great'], ['went', 'bad', 'time', 'return', 'elig', 'expir'], ['terribl', 'work', 'two', 'day', 'start', 'restart', 'whenev', 'use', 'app', 'coupl', 'day', 'later', 'turn', 'screen', 'shot', 'line', 'bad', 'not', 'see', 'thing', 'never', 'drop', 'abus', 'happen', 'reason', 'give', 'guff', 'refund', 'not', 'buy', 'phone'], ['oder', 'phone', 'june', 'came', 'come', 'sturdi', 'box', 'color', 'gold', 'white', 'black', 'chose', 'white', 'one', 'box', 'come', 'batteri', 'user', 'manual', 'charger', 'plug', 'cord', 'headset', 'transpar', 'phone', 'protector', 'screen', 'protector', 'alreadi', 'instal', 'phone', 'phone', 'realli', 'good', 'took', 'awhil', 'get', 'use', 'button', 'opposit', 'search', 'pretti', 'camera', 'good', 'side', 'front', 'back', 'camera', 'sim', 'featur', 'good', 'idea', 'peopl', 'carri', 'two', 'phone', 'person', 'busi', 'phone', 'one', 'put', 'simcard', 'one', 'truli', 'recommend', 'not', 'get', 'calib', 'phone', 'grab', 'receiv', 'phone', 'free', 'exchang', 'honest', 'unbias', 'review'], ['phone', 'good', 'look', 'work', 'fine', 'far'], ['not', 'like', 'also', 'problem', 'use', 'internet', 'asum', 'lost', 'dollar'], ['thought', 'phone', 'would', 'faster', 'would', 'not', 'freez', 'freez', 'expect', 'not', 'allow', 'download', 'fb', 'camera', 'not', 'work', 'cute', 'phone', 'slow'], ['excel'], ['look', 'amazon', 'websit', 'not', 'fine', 'replac', 'batteri', 'phone', 'phone', 'come', 'one', 'batteri', 'need', 'backup', 'batteri', 'full', 'charg', 'batteri', 'still', 'rundown', 'fast', 'need', 'buy', 'backup', 'batteri', 'phone'], ['bad', 'not', 'last'], ['good', 'product'], ['excelent'], ['adwar', 'popup', 'week', 'even', 'factori', 'reset', 'would', 'not', 'eras', 'not', 'site', 'visit', 'cuz', 'new', 'phone', 'fine', 'believ', 'someth', 'phone', 'other', 'issu'], ['disappoint', 'sinc', 'day', 'one', 'not', 'work', 'time', 'one', 'look', 'generic', 'phone', 'granddaught', 'hate'], ['bad', 'manufactur', 'signal', 'time'], ['awesom', 'phone', 'not', 'sold', 'jpn', 'use', 'jpn', 'softbank', 'sim'], ['got', 'phone', 'mail', 'charg', 'night', 'not', 'even', 'work'], ['bought', 'one', 'heard', 'good', 'came', 'way', 'schedul', 'impress'], ['great', 'phone', 'good', 'size', 'screen', 'use', 'month', 'zero', 'issu', 'come', 'decent', 'amount', 'softwar', 'not', 'need', 'almost', 'phone', 'buy'], ['phone', 'come', 'older', 'version', 'android', 'howev', 'not', 'recommend', 'use', 'lg', 'softwar', 'updat', 'firmwar', 'otherwis', 'brick', 'happen', 'first', 'one', 'happi', 'phone', 'cost', 'less', 'come', 'string', 'attach'], ['good', 'product', 'price', 'youar', 'look', 'simpl', 'smart', 'phone', 'great', 'issu', 'small', 'intern', 'memori'], ['super', 'smart'], ['day', 'phone', 'screen', 'stop', 'work', 'not', 'anyth', 'normal', 'use', 'put', 'charger', 'went', 'back', 'one', 'hour', 'later', 'see', 'miss', 'call', 'screen', 'went', 'abl', 'take', 'call', 'could', 'not', 'see', 'anyth', 'disappoint', 'product'], ['good'], ['month', 'later', 'buy', 'anoth', 'phone', 'batteri', 'life', 'phone', 'horribl', 'sit', 'drawer', 'waist', 'away', 'offens', 'seller', 'though'], ['ok', 'fir', 'love', 'phone', 'use', 'phone', 'right', 'sure', 'would', 'love', 'happen', 'not', 'case', 'phone', 'miss', 'not', 'even', 'put', 'sd', 'card', 'import', 'thing', 'not', 'unlock', 'not', 'noth', 'phone', 'email', 'seller', 'not', 'repli', 'thing', 'tri', 'sell', 'not', 'buy'], ['el', 'celular', 'apena', 'llego', 'mérida', 'venezuela', 'le', 'coloqu', 'un', 'sim', 'cad', 'movilnet', 'de', 'inmediato', 'comenzó', 'configurars', 'solo', 'realic', 'llamada', 'envié', 'mensaj', 'de', 'texto', 'funcionaron', 'perfectament', 'el', 'envió', 'fue', 'al', 'tempo', 'indicado', 'llego', 'con', 'todo', 'sus', 'accesorio', 'recomiendo', 'al', 'vendedor'], ['want', 'small', 'smartphon', 'allow', 'use', 'ever', 'servic', 'provid', 'want', 'simpli', 'insert', 'sim', 'card', 'work'], ['stop', 'work', 'within', 'first', 'month'], ['price', 'quit', 'cheap', 'cost', 'deliveri', 'free', 'forecast', 'deliveri', 'servic', 'frighten', 'long', 'almost', 'day', 'howev', 'pleasant', 'surpris', 'actual', 'deliveri', 'took', 'day', 'time', 'instead', 'promis', 'not', 'rush', 'realli', 'good', 'nice', 'seem', 'review', 'critic', 'low', 'qualiti', 'imag', 'phone', 'touchscreen', 'bit', 'exagger', 'touchscreen', 'quit', 'good', 'imag', 'well', 'phone', 'nice', 'quit', 'comfort'], ['compr', 'est', 'telefono', 'hace', 'año', 'desd', 'entonc', 'sno', 'tuve', 'ningun', 'problema', 'el', 'vendedor', 'es', 'muy', 'bueno', 'envia', 'justament', 'todo', 'lo', 'que', 'describ', 'lo', 'mejor', 'de', 'est', 'producto', 'es', 'que', 'se', 'trata', 'de', 'un', 'dispositivo', 'loberado', 'pued', 'ser', 'utilizado', 'en', 'cualquier', 'part', 'del', 'mundo', 'con', 'un', 'sim', 'de', 'cualquier', 'compañia', 'telefonica', 'la', 'entrega', 'fue', 'bastant', 'rapida', 'de', 'dia', 'lo', 'recomiendo'], ['est', 'celular', 'es', 'una', 'gran', 'estudiant', 'dema', 'tien', 'una', 'gran', 'capácidad', 'velocidad', 'lo', 'recomiendo', 'la', 'musica', 'suena', 'espectacular', 'lo', 'maximo', 'felcitacion', 'samsung', 'sus', 'galaxi'], ['sold', 'absolut', 'cell', 'phone', 'phone', 'compani', 'shopebest', 'made', 'sell', 'phone', 'made', 'use', 'asia', 'set', 'languag', 'made', 'china', 'languag', 'plus', 'english', 'bought', 'phone', 'use', 'overse', 'not', 'avail', 'use', 'speak', 'spanish', 'return', 'back', 'usa', 'contact', 'amazon', 'shopebest', 'answer', 'refund', 'day', 'warranti', 'well', 'return', 'sent', 'overse', 'time', 'also', 'not', 'specif', 'phone', 'use', 'asia', 'languag', 'even', 'contact', 'samsung', 'answer', 'sorri', 'not', 'help', 'usa', 'lose', 'money', 'disappoint', 'wit', 'amazon', 'shopebest', 'not', 'buy', 'cell', 'shopebest', 'compani', 'salazar'], ['phone', 'afford', 'sleek', 'fun', 'access', 'anyth', 'not', 'feel', 'touch'], ['good', 'issu'], ['like', 'phone', 'decent', 'phone', 'price', 'return', 'back', 'soft', 'key', 'not', 'light', 'phone', 'use', 'devic', 'not', 'factori', 'seal', 'not', 'brand', 'new', 'least', 'mine', 'open', 'okay', 'live', 'problem', 'not', 'live', 'give', 'star', 'realli', 'bright', 'white', 'dot', 'center', 'screen', 'super', 'annoy', 'watch', 'use', 'phone'], ['realli', 'nice', 'phone', 'camera', 'beyond', 'imagin'], ['worst', 'phone', 'ever', 'constant', 'lock', 'freez', 'tri', 'factori', 'reset', 'not', 'help', 'nice', 'thing', 'say', 'phone', 'look', 'nice', 'complet', 'wast', 'money'], ['unnecto', 'quattro', 'definit', 'not', 'expect', 'phone', 'cost', 'expect', 'someth', 'could', 'upgrad', 'easili', 'not', 'case', 'phone', 'come', 'sever', 'limit', 'like', 'outdat', 'softwar', 'bug', 'includ', 'alway', 'reset', 'central', 'china', 'time', 'whenev', 'reboot', 'forc', 'alway', 'reset', 'timezon', 'boot'], ['not', 'keep', 'charg'], ['actual', 'purchas', 'phone', 'mom', 'bought', 'phone', 'month', 'ago', 'saw', 'love', 'bought', 'one', 'color', 'gorgeous', 'phone', 'simpl', 'use', 'care', 'old', 'phone', 'wors', 'old', 'peopl', 'phone', 'like', 'ring', 'open', 'say', 'hello', 'oppos', 'tap', 'screen', 'slide', 'widget', 'around', 'i', 'lot', 'phone', 'one', 'favorit', 'sure', 'afford', 'iphon', 'someth', 'similiar', 'prefer', 'simpler', 'time', 'thing', 'make', 'receiv', 'call', 'text', 'internet', 'everyth', 'need', 'ship', 'extrem', 'fast', 'price', 'excel', 'i', 'happi', 'entir', 'experi'], ['phone', 'useless', 'activ', 'would', 'not', 'access', 'web', 'pictur', 'messag', 'sent', 'dead', 'batteri', 'replac', 'two', 'dead', 'not', 'amazon', 'purchas', 'noth', 'good', 'thing', 'say', 'amazon', 'seller', 'bewar', 'come', 'buy', 'indi'], ['great', 'phone', 'want', 'call', 'receiv', 'call', 'take', 'photo', 'right', 'six', 'great', 'starter', 'phone'], ['phone', 'seem', 'ok', 'appear', 'not', 'use', 'yet', 'instruct', 'suppli', 'book', 'statement', 'state', 'phone', 'came', 'without', 'instruct'], ['droid', 'durabl', 'though', 'came', 'jelli', 'bean', 'easili', 'updat', 'kitkat', 'mani', 'hidden', 'featur', 'may', 'want', 'play', 'includ', 'face', 'unlock', 'droid', 'zapp', 'featur', 'one', 'opt', 'incorpor', 'motorola', 'droid', 'network', 'addit', 'featur', 'model', 'sleek', 'slim', 'resist', 'water', 'corros', 'drop', 'speed', 'relat', 'much', 'faster', 'phone', 'hotspot', 'featur', 'good', 'though', 'run', 'mega', 'bite', 'phone', 'whatev', 'power', 'data', 'budget', 'monitor', 'usag', 'motorola', 'great', 'brand', 'activ', 'peopl', 'still', 'want', 'sport', 'high', 'qualiti', 'product', 'last', 'power', 'resili', 'thing', 'phone', 'manual', 'download', 'not', 'come', 'origin', 'droid', 'box', 'great', 'buy'], ['decent', 'phone', 'price', 'great', 'plan', 'afford', 'easi', 'maintain'], ['not', 'good', 'phone', 'soon', 'got', 'start', 'freez', 'not', 'want', 'call', 'send', 'messag', 'never', 'phone', 'choic', 'choos'], ['happi', 'phone', 'ear', 'bud', 'includ', 'not', 'good', 'folk', 'end', 'line', 'say', 'not', 'understand', 'like', 'underwat', 'not', 'want', 'return', 'phone', 'sure', 'would', 'like', 'better', 'pair', 'earbud', 'think', 'i', 'would', 'go', 'iphon', 'bigger', 'screen', 'would', 'nice', 'first', 'iphon'], ['tri', 'give', 'younger', 'son', 'verizon', 'said', 'could', 'not', 'swith', 'phone', 'porrt', 'stuck', 'use', 'music'], ['not', 'buy', 'think', 'phone', 'water', 'damag', 'refurbish', 'yellow', 'hue', 'screen'], ['work', 'great', 'first', 'iphon', 'give', 'us', 'enough', 'bell', 'whistl', 'need'], ['christma', 'bought', 'son', 'refurbish', 'iphon', 'anoth', 'seller', 'arriv', 'plenti', 'time', 'big', 'day', 'look', 'great', 'unfortun', 'attempt', 'activ', 'phone', 'carrier', 'said', 'show', 'stolen', 'cours', 'littl', 'immedi', 'contact', 'amazon', 'issu', 'within', 'day', 'refund', 'anoth', 'iphon', 'new', 'phone', 'look', 'new', 'work', 'like', 'dream', 'thank', 'amazon', 'fast', 'refund', 'could', 'repurchas', 'gift'], ['phone', 'not', 'new', 'vw', 'said', 'use', 'peopl', 'past', 'upgrad', 'softwar', 'backup', 'assist', 'found', 'someon', 'old', 'number', 'eras', 'husband', 'contact', 'return', 'phone', 'frustrat', 'also', 'sad', 'see', 'also', 'not', 'camera', 'believ', 'made', 'use', 'part', 'old', 'boulder', 'sell', 'new', 'one', 'not', 'real', 'casio', 'boulder', 'phone', 'would', 'not', 'recommend', 'buy', 'phone'], ['option', 'give', 'negat', 'star', 'star', 'rate', 'would', 'give', 'one', 'star', 'phone', 'total', 'garbag', 'shut', 'whenev', 'blue', 'tooth', 'turn', 'everi', 'time', 'mayb', 'shut', 'not', 'show', 'miss', 'call', 'not', 'ring', 'sometim', 'peopl', 'call', 'thing', 'could', 'use', 'phone', 'take', 'hammer', 'get', 'frustrat', 'junk', 'husband', 'need', 'phone', 'busi', 'everi', 'day', 'would', 'return', 'not', 'forese', 'last', 'month', 'would', 'not', 'get', 'put', 'front', 'tire', 'run', 'amazon', 'not', 'sell', 'phone', 'even', 'half', 'price', 'still', 'not', 'hard', 'worth', 'not', 'process', 'activ', 'anoth', 'phone', 'would', 'sent', 'one', 'back'], ['like', 'alway', 'absolut', 'best', 'phone', 'ever', 'made', 'third', 'model', 'brand', 'model', 'absolut', 'boulder', 'keep', 'work', 'bought', 'one', 'back', 'afraid', 'would', 'not', 'abl', 'get', 'anoth', 'drop', 'phone', 'water', 'wash', 'washer', 'ran', 'jeep', 'durabl', 'word', 'simpl', 'use', 'like', 'compass', 'voic', 'qualiti', 'speaker', 'phone', 'not', 'good', 'voic', 'qualiti', 'speaker'], ['phone', 'die', 'less', 'week', 'never', 'even', 'drope', 'carpet', 'never', 'got', 'wet', 'rock', 'year', 'fair', 'kind', 'phone', 'abuss', 'hek', 'phone', 'not', 'tuff', 'knew', 'soon', 'got', 'light', 'toy', 'like', 'less', 'poor', 'phone', 'general', 'light', 'key', 'lame', 'bad', 'speaker', 'sound', 'ect', 'not', 'compear', 'rock', 'not', 'one', 'bit', 'guy', 'rip', 'anyon', 'buy', 'phone', 'feel', 'way', 'rock', 'phone', 'made', 'work', 'man', 'kind', 'tuff', 'sell', 'bolder', 'make', 'sound', 'like', 'someth', 'guy', 'suck', 'iron', 'matt'], ['phone', 'obsolet', 'process', 'tri', 'return', 'get', 'money', 'back', 'verizon', 'repres', 'told', 'phone', 'not', 'upgrad', 'current', 'softwar', 'tri', 'contact', 'amazon', 'process', 'obtain', 'return', 'label', 'send', 'back'], ['take', 'beat'], ['phone', 'work', 'great', 'came', 'bad', 'batteri', 'not', 'last', 'long', 'purchas', 'addit', 'one'], ['receiv', 'ok', 'put', 'speaker', 'poor', 'volum', 'charg', 'till', 'green', 'went', 'dead', 'one', 'day', 'even', 'old', 'one', 'last', 'longer'], ['phone', 'charg', 'not', 'work', 'proper', 'connect', 'insid', 'phone', 'loos', 'hous', 'charger', 'came', 'apart', 'phone', 'connect', 'site'], ['phone', 'not', 'hold', 'charg', 'buy', 'new', 'batteri', 'see', 'happi', 'purchas', 'seller', 'plain', 'said', 'good', 'work', 'batteri', 'not', 'purchas', 'anyth', 'els', 'seller'], ['activ', 'phone', 'discov', 'not', 'hear', 'person', 'end', 'phone', 'muffl', 'none', 'featur', 'avail', 'phone', 'either', 'like', 'gps', 'not', 'pleas', 'purchas'], ['product', 'batteri', 'not', 'long', 'last', 'not', 'add', 'rington', 'phone', 'tip', 'calcul', 'tool', 'section', 'recept', 'okay', 'occasion', 'drop', 'call'], ['item', 'came', 'cellular', 'claim', 'phone', 'new', 'not', 'believ', 'first', 'phone', 'came', 'would', 'not', 'charg', 'call', 'assur', 'would', 'send', 'new', 'phone', 'would', 'make', 'sure', 'work', 'even', 'send', 'well', 'somehow', 'arriv', 'almost', 'fulli', 'charg', 'seem', 'work', 'howev', 'tri', 'charg', 'fulli', 'discov', 'phone', 'not', 'charg', 'either', 'help', 'return', 'first', 'phone', 'call', 'second', 'one', 'not', 'even', 'tri', 'convinc', 'get', 'anoth', 'one', 'agre', 'let', 'return', 'think', 'reason', 'not', 'actual', 'work', 'not', 'wast', 'time'], ['best', 'clam', 'phone', 'around', 'virtual', 'unbreak'], ['wish', 'still'], ['good', 'product'], ['option', 'give', 'negat', 'star', 'star', 'rate', 'would', 'give', 'one', 'star', 'phone', 'total', 'garbag', 'shut', 'whenev', 'blue', 'tooth', 'turn', 'everi', 'time', 'mayb', 'shut', 'not', 'show', 'miss', 'call', 'not', 'ring', 'sometim', 'peopl', 'call', 'thing', 'could', 'use', 'phone', 'take', 'hammer', 'get', 'frustrat', 'junk', 'husband', 'need', 'phone', 'busi', 'everi', 'day', 'would', 'return', 'not', 'forese', 'last', 'month', 'would', 'not', 'get', 'put', 'front', 'tire', 'run', 'amazon', 'not', 'sell', 'phone', 'even', 'half', 'price', 'still', 'not', 'hard', 'worth', 'not', 'process', 'activ', 'anoth', 'phone', 'would', 'sent', 'one', 'back'], ['check', 'verizon', 'buy', 'verizon', 'not', 'activ', 'phone'], ['phone', 'work', 'flawless'], ['final', 'real', 'phone'], ['receiv', 'phone', 'still', 'activ', 'someon', 'account', 'even', 'email', 'attempt', 'get', 'answer', 'happen', 'still', 'useless', 'phone', 'not', 'activ', 'account', 'wast', 'money', 'time'], ['phone', 'not', 'new', 'vw', 'said', 'use', 'peopl', 'past', 'upgrad', 'softwar', 'backup', 'assist', 'found', 'someon', 'old', 'number', 'eras', 'husband', 'contact', 'return', 'phone', 'frustrat', 'also', 'sad', 'see', 'also', 'not', 'camera', 'believ', 'made', 'use', 'part', 'old', 'boulder', 'sell', 'new', 'one', 'not', 'real', 'casio', 'boulder', 'phone', 'would', 'not', 'recommend', 'buy', 'phone'], ['stop', 'work', 'day'], ['like', 'alway', 'absolut', 'best', 'phone', 'ever', 'made', 'third', 'model', 'brand', 'model', 'absolut', 'boulder', 'keep', 'work', 'bought', 'one', 'back', 'afraid', 'would', 'not', 'abl', 'get', 'anoth', 'drop', 'phone', 'water', 'wash', 'washer', 'ran', 'jeep', 'durabl', 'word', 'simpl', 'use', 'like', 'compass', 'voic', 'qualiti', 'speaker', 'phone', 'not', 'good', 'voic', 'qualiti', 'speaker'], ['phone', 'not', 'keep', 'charg', 'difficult', 'connect', 'charg', 'cord', 'not', 'fulli', 'charg', 'matter', 'long', 'plug', 'replac', 'batteri'], ['junk', 'seller', 'morn', 'glori', 'horribl', 'phone'], ['good', 'phone', 'noth', 'wrong', 'feew', 'strach', 'like', 'ecpect', 'work', 'good', 'boyfriend'], ['orang', 'color', 'activ', 'compani', 'show', 'black'], ['order', 'two', 'phone', 'first', 'one', 'not', 'work', 'proper', 'start', 'second', 'one', 'month', 'later', 'not', 'charg', 'work', 'compani', 'not', 'work', 'well'], ['phone', 'last', 'year', 'one', 'found', 'one', 'decid', 'would', 'perfect', 'phone', 'month', 'need', 'get', 'new', 'one', 'one', 'broken', 'yep', 'indestruct', 'phone', 'piec', 'front', 'miss', 'top', 'half', 'hang', 'hing', 'drop', 'multipl', 'time', 'three', 'four', 'feet', 'highest', 'not', 'know', 'anyon', 'els', 'order', 'one', 'seller', 'mine', 'definit', 'sort', 'asian', 'default', 'pictur', 'weird', 'multipl', 'demonstr', 'poor', 'english', 'not', 'improp', 'english', 'clear', 'whoever', 'made', 'not', 'know', 'english', 'well', 'may', 'get', 'phone', 'definit', 'not', 'seller', 'would', 'get', 'real', 'one', 'next', 'time'], ['receiv', 'phone', 'still', 'activ', 'someon', 'account', 'even', 'email', 'attempt', 'get', 'answer', 'happen', 'still', 'useless', 'phone', 'not', 'activ', 'account', 'wast', 'money', 'time'], ['bought', 'refurb', 'model', 'replac', 'unit', 'crack', 'screen', 'bad', 'charg', 'port', 'rather', 'upgrad', 'latest', 'greatest', 'screen', 'display', 'great', 'batteri', 'life', 'good', 'upgrad', 'extend', 'batteri', 'downsid', 'ram', 'pretti', 'low', 'current', 'standard', 'still', 'great', 'phone', 'high', 'recommend', 'kid', 'user'], ['precis', 'need', 'good', 'qualiti', 'deliv', 'quick'], ['broke', 'easi'], ['receiv', 'phone', 'activ', 'septemb', 'octob', 'start', 'troubl', 'hot', 'spot', 'turn', 'icon', 'start', 'blink', 'strang', 'thing', 'octob', 'hot', 'spot', 'stop', 'work', 'contact', 'verizon', 'wireless', 'carrier', 'walk', 'sever', 'step', 'check', 'third', 'parti', 'app', 'mess', 'hard', 'reboot', 'factori', 'set', 'hot', 'spot', 'still', 'not', 'oper', 'util', 'hot', 'spot', 'everyth', 'onlin', 'game', 'tv', 'stream', 'etc', 'disappoint', 'never', 'purchas', 'new', 'product', 'stop', 'work', 'within', 'one', 'month', 'suppos', 'new', 'phone', 'start', 'look', 'new', 'phone', 'definit', 'would', 'not', 'reccommend'], ['everi', 'time', 'tri', 'make', 'call', 'phone', 'hang', 'tri', 'receiv', 'call', 'hang', 'answer', 'call'], ['guy', 'sold', 'phone', 'report', 'lost', 'stolen', 'could', 'not', 'activ', 'needless', 'say', 'not', 'buy', 'anyth', 'guy', 'sell', 'stolen'], ['good', 'basic', 'phone', 'want', 'bought', 'replac', 'exist', 'phone', 'fill', 'measur', 'creation', 'gone', 'great', 'phoneshop', 'sky'], ['not', 'new', 'one', 'bought', 'paid', 'not', 'use', 'one', 'refurbish', 'one', 'not', 'happi', 'camper'], ['sigh', 'use', 'phone', 'guy', 'work', 'great', 'littl', 'flip', 'phone', 'hold', 'worst', 'guy', 'offer', 'mud', 'water', 'not', 'water', 'proof', 'even', 'drive', 'hold', 'togeth', 'amaz'], ['worn', 'expect', 'price', 'work', 'well'], ['great', 'product', 'ship', 'quick', 'well', 'packag', 'arriv', 'time', 'actual', 'time', 'look', 'forward', 'busi', 'soon'], ['work', 'great', 'bought', 'two', 'work', 'well', 'happi', 'purchas', 'wish', 'came', 'charger'], ['phone', 'not', 'describ', 'seller', 'photo', 'not', 'work', 'sd', 'card', 'not', 'work', 'video', 'not', 'work', 'batteri', 'not', 'hold', 'charg', 'would', 'not', 'buy', 'seller'], ['phone', 'arriv', 'brand', 'new', 'packag', 'charger', 'batteri', 'not', 'expect', 'phone', 'previous', 'not', 'readi', 'part', 'upgrad', 'new', 'phone', 'plan', 'unexpect', 'accid', 'water', 'damag', 'ship', 'fast', 'happi'], ['exit', 'got', 'freakin', 'phone', 'tri', 'activ', 'got', 'verizon', 'repres', 'tell', 'not', 'use', 'phone', 'cuz', 'report', 'lost', 'stolen', 'made', 'angri', 'get', 'phone', 'stolen', 'buy', 'replac', 'wait', 'phone', 'arriv', 'want', 'find', 'person', 'respons', 'hit', 'face', 'bought', 'droid', 'differ', 'phone', 'one', 'day', 'die', 'would', 'never', 'turn', 'back', 'idk', 'suck', 'not', 'wast', 'uur', 'money', 'time', 'stupid', 'thing'], ['ok', 'order', 'two', 'phone', 'far', 'first', 'lg', 'voyag', 'second', 'one', 'lg', 'alli', 'love', 'phone', 'death', 'main', 'thing', 'like', 'phone', 'download', 'app', 'camera', 'super', 'good', 'like', 'flash', 'sound', 'everyth', 'work', 'good', 'seller', 'said', 'phone', 'use', 'umm', 'think', 'not', 'work', 'like', 'never', 'touch', 'sinc', 'i', 'busi', 'pros', 'touch', 'screen', 'great', 'user', 'friendlycon', 'get', 'slow', 'littl', 'work', 'good', 'got', 'chip', 'not', 'well', 'wit', 'great', 'phone', 'p'], ['fast', 'shipment', 'great', 'product'], ['phone', 'excel', 'condit', 'could', 'not', 'detect', 'even', 'though', 'list', 'refurbish', 'exact', 'want', 'reason', 'price', 'actual', 'cheaper', 'buy', 'local', 'store'], ['aw', 'phone', 'not', 'work', 'could', 'not', 'hear', 'ear', 'peac', 'got', 'complet', 'stop', 'work', 'wast', 'money'], ['use', 'phone', 'mean', 'fraction', 'cost', 'new', 'one', 'like', 'unlimit', 'plan', 'purchas', 'kid', 'activ', 'extra', 'cost', 'break', 'not', 'hundr', 'dollar', 'recommend', 'purchas', 'use', 'phone', 'time', 'kid', 'need', 'new', 'one', 'save', 'ton', 'money', 'penni', 'save', 'penni', 'earn'], ['detail', 'phone', 'not', 'accur', 'way', 'small', 'bare', 'notic', 'scratch', 'turn', 'huge', 'deep', 'scratch', 'bottom', 'way', 'back', 'color', 'come'], ['buck', 'shoot', 'not', 'complain'], ['fair', 'ship', 'speed', 'product', 'look', 'brand', 'new'], ['purchas', 'phone', 'new', 'look', 'new', 'arriv', 'activ', 'carrier', 'found', 'someon', 'els', 'contact', 'carrier', 'look', 'number', 'insid', 'phone', 'batteri', 'case', 'found', 'previous', 'owner', 'go', 'extend', 'trip', 'not', 'time', 'chang', 'phone', 'hope', 'not', 'give', 'problem', 'ala', 'peac', 'mind', 'thought', 'would', 'new', 'phone', 'trip', 'not', 'cheat', 'look', 'elsewher', 'care', 'integr', 'trust', 'busi', 'deal'], ['bought', 'replac', 'lg', 'success', 'activ', 'phone', 'pagepluscellular', 'via', 'kitti', 'wireless', 'dealer', 'use', 'verizon', 'network', 'much', 'cheaper', 'plan', 'verizon', 'phone', 'not', 'work', 'pageplus', 'phone', 'excel', 'call', 'qualiti', 'camera', 'flash', 'possibl', 'seem', 'older', 'phone', 'small', 'enough', 'fit', 'jean', 'pocket', 'older', 'phone', 'still', 'work', 'get', 'littl', 'scratch', 'year', 'use', 'not', 'text', 'fast', 'number', 'keypad', 'qwerti', 'keyboard', 'insid', 'phone', 'fantast', 'use', 'bluetooth', 'featur', 'entir', 'phone', 'book', 'old', 'handset', 'new', 'one', 'fast', 'easi', 'music', 'play', 'fine', 'song', 'store', 'microsd', 'card', 'place', 'slot', 'phone', 'play', 'stereo', 'output', 'allow', 'microphon', 'input', 'headset', 'call', 'buy', 'right', 'connector', 'need', 'adapt', 'read', 'review', 'care', 'select', 'one', 'realli', 'would', 'work', 'lg', 'envx', 'ship', 'good', 'custom', 'servic', 'seller', 'although', 'new', 'actual', 'mean', 'new', 'handset', 'open', 'box', 'without', 'manual', 'download', 'internet', 'everyth', 'work', 'esn', 'clear', 'activ'], ['batteri', 'particular', 'model', 'worthless', 'need', 'charg', 'everi', 'hour', 'keep', 'charg', 'die', 'verizon', 'batteri', 'replac', 'one', 'phone', 'consequ', 'buy', 'new', 'phone', 'get', 'inform', 'lg', 'buy', 'new', 'batteri', 'not', 'even', 'bother', 'one'], ['nice', 'phone', 'talk', 'text', 'not', 'need', 'data', 'packag', 'blah', 'blaha', 'lblha', 'lblahblah', 'blah', 'blah'], ['best', 'dumb', 'smart', 'phone', 'own', 'use', 'though', 'upgrad', 'still', 'case', 'failur', 'current', 'one', 'use'], ['bought', 'grandson', 'one', 'like', 'admir', 'best', 'thing', 'even', 'big', 'hand', 'still', 'easi', 'text', 'i', 'phone', 'close', 'yrs', 'batteri', 'life', 'great', 'definet', 'would', 'recommend', 'phone'], ['good'], ['bought', 'phone', 'replac', 'phone', 'mother', 'alreadi', 'know', 'use', 'not', 'need', 'data', 'plan', 'call', 'featur'], ['want', 'phone', 'talk', 'text', 'good', 'phone', 'good', 'price', 'need', 'data', 'packag', 'use', 'love'], ['would', 'like', 'phone', 'everyth', 'offer', 'howev', 'phone', 'not', 'stay', 'charg', 'like', 'sinc', 'day', 'bought', 'not', 'expect', 'go', 'away', 'day', 'without', 'bring', 'charger', 'not', 'bar', 'phone', 'not', 'use', 'charg', 'still', 'die'], ['recent', 'decid', 'downgrad', 'smartphon', 'save', 'money', 'data', 'plan', 'need', 'phone', 'text', 'occasion', 'call', 'phone', 'perfect', 'good', 'keypad', 'great', 'batteri', 'life', 'not', 'assembl', 'except', 'well', 'piec', 'looser', 'overal', 'fantast', 'phone', 'purpos'], ['work', 'fine'], ['great', 'qualiti', 'consid', 'use', 'phone', 'perfect', 'year', 'old', 'hard', 'find', 'phone', 'good', 'age', 'group', 'cell', 'phone', 'compani', 'get', 'hint', 'still', 'keep', 'around', 'work', 'great', 'son', 'happi'], ['told', 'cellphon', 'new', 'judg', 'appear', 'not', 'get', 'messag', 'complet', 'special', 'somebodi', 'text', 'smart', 'phone'], ['real', 'workhors', 'hold', 'work', 'well', 'phone', 'keyboard', 'conveni', 'not', 'like', 'touchscreen', 'phone'], ['love', 'star'], ['bought', 'refurbish', 'phone', 'descript', 'accur', 'scratch', 'show', 'wear', 'tear', 'goal', 'turn', 'iphon', 'pay', 'internet', 'tri', 'knock', 'bill', 'verizon', 'got', 'phone', 'day', 'said', 'would', 'get', 'charg', 'batteri', 'hour', 'reach', 'full', 'charg', 'min', 'drove', 'verizon', 'activ', 'second', 'phone', 'work', 'fine', 'i', 'problem', 'text', 'work', 'fine', 'save', 'month', 'fact', 'phone', 'week', 'yet', 'charg', 'realli', 'nervous', 'buy', 'phone', 'expect', 'piec', 'crap', 'got', 'workabl', 'phone', 'good', 'price'], ['drop', 'old', 'one', 'mani', 'time', 'glad', 'found', 'replac', 'verizon', 'activ', 'snap', 'follow', 'instruct', 'took', 'minut', 'automat', 'human', 'involv', 'pleas', 'rememb', 'backup', 'contact', 'list', 'go', 'store', 'get', 'reload', 'salesman', 'stand', 'front', 'door', 'took', 'minut'], ['great', 'littl', 'phone', 'husband', 'alway', 'stress', 'test', 'one', 'last', 'quit'], ['happi', 'condit', 'promis', 'work', 'great', 'pleas', 'purchas'], ['receiv', 'monday', 'order', 'friday', 'pulanna', 'usa', 'super', 'fast', 'ship', 'phone', 'work', 'great', 'year', 'old', 'use', 'want', 'smart', 'phone', 'heck', 'love', 'user', 'friend', 'alway', 'great', 'style', 'phone'], ['got', 'husband', 'hate', 'basic', 'phone', 'offer', 'verizon', 'basic', 'phone', 'sturdi', 'easi', 'use', 'perfect', 'text', 'call', 'need', 'happi'], ['husband', 'carri', 'phone', 'realli', 'like', 'held', 'despit', 'rough', 'phone', 'good', 'text', 'nice', 'call', 'qualiti', 'batteri', 'life', 'littl', 'less', 'phone', 'still', 'last', 'day'], ['order', 'husband', 'phone', 'alway', 'said', 'could', 'find', 'one', 'would', 'buy', 'daughter', 'saw', 'order', 'christma', 'love', 'phone', 'everi', 'thing', 'need', 'get', 'charg', 'readi', 'call', 'packag', 'nice', 'came', 'time', 'said', 'happi', 'phone', 'thank', 'debbi'], ['one', 'own', 'year', 'not', 'want', 'smart', 'phone', 'great', 'talk', 'text', 'qwerti', 'keypad'], ['buy', 'phone', 'time', 'break', 'alway', 'fault', 'not', 'phone', 'problem', 'lose', 'old', 'one', 'easi', 'use', 'look', 'basic', 'phone', 'easi', 'text', 'good', 'camera', 'one'], ['got', 'quick', 'work', 'great', 'look', 'great', 'charger', 'also', 'look', 'work', 'great', 'phone', 'visibl', 'scratch', 'use'], ['fine', 'old', 'phone', 'work', 'mater', 'right', 'right'], ['not', 'seen', 'friend', 'want', 'new', 'lg', 'phone', 'not', 'gave', 'new', 'touch', 'screen', 'felt', 'comfort', 'use', 'lg'], ['scratch'], ['best', 'dumb', 'smart', 'phone', 'own', 'use', 'though', 'upgrad', 'still', 'case', 'failur', 'current', 'one', 'use'], ['happi', 'speed', 'receiv', 'phone', 'seem', 'easi', 'use', 'take', 'long', 'time', 'learn', 'new', 'featur', 'etc'], ['phone', 'look', 'great', 'not', 'abl', 'use', 'instruct', 'tell', 'activ', 'phone', 'could', 'receiv', 'phone', 'number', 'also', 'would', 'help', 'know', 'kind', 'phone', 'card', 'buy', 'far', 'i', 'bat', 'zero', 'get', 'oper', 'would', 'appreci', 'help', 'get', 'i', 'disabl', 'phone', 'way', 'still', 'feel', 'independ'], ['purchas', 'father', 'still', 'not', 'use', 'phone', 'much', 'love', 'design', 'touch', 'screen', 'requir', 'get', 'use', 'accustom', 'smartphon', 'good', 'featur', 'otherwis'], ['receiv', 'phone', 'quick', 'question', 'seller', 'answer', 'quick', 'great', 'phone', 'would', 'recommend', 'other'], ['real', 'nice', 'sale', 'person'], ['phone', 'new', 'hook', 'right', 'verizon', 'account', 'realli', 'happi', 'didi', 'problem', 'save', 'ton', 'money', 'not', 'upgrad', 'year', 'contract', 'yay'], ['problem', 'great', 'recept', 'color', 'display', 'not', 'prepaid', 'wireless', 'kind', 'problem', 'multipl', 'shipper', 'send', 'prepaid', 'version', 'phone'], ['receiv', 'advertis', 'work', 'well'], ['not', 'fulli', 'satisfi', 'work', 'well', 'great', 'often', 'repeat', 'function', 'time', 'work', 'return'], ['drop', 'phone', 'touch', 'screen', 'quit', 'work', 'afraid', 'would', 'move', 'expens', 'plan', 'decid', 'check', 'amazon', 'first', 'save', 'month', 'roi', 'month', 'thank', 'amazon'], ['phone', 'exact', 'expect', 'work', 'great', 'graphic', 'great', 'concern', 'difficult', 'would', 'activ', 'verizon', 'glad', 'say', 'super', 'easi', 'simpli', 'remov', 'phone', 'box', 'call', 'vz', 'provid', 'meid', 'number', 'box', 'rest', 'minut', 'phone', 'call', 'save', 'us', 'huge', 'amount', 'money', 'sinc', 'get', 'devic', 'vz', 'would', 'well', 'pressur', 'upgrad', 'get', 'featur', 'insur', 'not', 'need', 'also', 'want', 'mention', 'seller', 'usa', 'discount', 'realli', 'send', 'us', 'brand', 'new', 'phone', 'issu', 'purchas', 'stolen', 'phone', 'review', 'mention', 'retail', 'great', 'experi', 'around'], ['partial', 'use', 'text', 'not', 'buy', 'phone', 'way', 'make', 'default', 'set', 'text'], ['bought', 'two', 'replac', 'dad', 'son', 'becausenit', 'lot', 'cheaper', 'thatn', 'go', 'thru', 'store', 'use', 'upragrad', 'basic', 'phone', 'nervous', 'not', 'sure', 'would', 'abl', 'transfer', 'verizon', 'account', 'easi', 'problem', 'would', 'definit', 'buy'], ['alreadi', 'phone', 'not', 'want', 'get', 'differ', 'one', 'bought', 'anoth', 'one', 'love'], ['lg', 'octan', 'phone', 'easi', 'use', 'wish', 'still', 'made', 'need', 'phone'], ['tri', 'find', 'phone', 'everywher', 'sinc', 'old', 'one', 'near', 'three', 'year', 'mike', 'go', 'bad', 'found', 'amazon', 'immedi', 'order', 'love'], ['love', 'new', 'verizon', 'lg', 'octan', 'cell', 'phone', 'easi', 'use', 'problem', 'phone', 'key', 'small', 'finger'], ['i', 'retract', 'previous', 'review'], ['repla', 'old', 'one'], ['unit', 'crack', 'insid', 'black', 'plastic', 'corner', 'keyboard', 'still', 'work', 'sad', 'way', 'may', 'replac'], ['great'], ['bought', 'phone', 'husband', 'march', 'replac', 'basic', 'phone', 'not', 'want', 'smartphon', 'base', 'review', 'thought', 'best', 'option', 'month', 'later', 'replac', 'drop', 'half', 'call', 'make', 'often', 'not', 'ring', 'drop', 'problem', 'start', 'not', 'wast', 'money', 'phone', 'warranti', 'day', 'would', 'return', 'basic', 'threw', 'away', 'crummi', 'phone'], ['excel', 'basic', 'phone'], ['would', 'not', 'recomend', 'phone', 'web', 'site', 'anyon', 'receiv', 'phone', 'not', 'work', 'way', 'return'], ['well', 'first', 'seam', 'like', 'great', 'phone', 'look', 'good', 'oper', 'well', 'fragil', 'gone', 'these', 'fool', 'shame', 'fool', 'twice', 'shame', 'charger', 'not', 'realli', 'go', 'phone', 'smooth', 'got', 'kind', 'forc', 'get', 'ding', 'scratch', 'pretti', 'easi', 'also', 'touch', 'screen', 'ok', 'not', 'greatest', 'keyboard', 'good', 'overal', 'not', 'good', 'experi', 'phone', 'hope', 'take', 'consider', 'look', 'purchas'], ['phone', 'work', 'great', 'great', 'price'], ['great', 'phone', 'look', 'thank', 'send', 'quick', 'exact', 'look'], ['mani', 'year', 'like', 'basic', 'phone', 'unfortun', 'replac', 'bought', 'amazon', 'first', 'time', 'problem', 'zero', 'key', 'not', 'alway', 'work', 'week', 'voic', 'microphon', 'went', 'use', 'speaker', 'furthermor', 'verizon', 'not', 'not', 'send', 'os', 'updat', 'phone', 'new', 'phone', 'sever', 'version', 'behind', 'older', 'phone', 'disappoint', 'oh', 'not', 'see', 'warranti', 'phone'], ['custom', 'servic', 'great', 'refund', 'money', 'phone', 'not', 'connect', 'verizon', 'network'], ['decent', 'basic', 'phone', 'bought', 'mother', 'not', 'interest', 'advanc', 'technolog', 'actual', 'learn', 'text', 'thing', 'great', 'job', 'phone', 'work', 'well', 'purpos'], ['updat', 'octob', 'buy', 'anoth', 'use', 'appear', 'deactiv', 'not', 'mdr', 'code', 'updat', 'i', 'found', 'cell', 'tech', 'seattl', 'say', 'get', 'softwar', 'i', 'post', 'info', 'sure', 'love', 'old', 'school', 'got', 'first', 'nine', 'year', 'ago', 'not', 'lost', 'i', 'sure', 'would', 'still', 'work', 'replac', 'second', 'work', 'fine', 'til', 'drop', 'umpteenth', 'time', 'coupl', 'day', 'ago', 'actual', 'lower', 'portion', 'phone', 'still', 'work', 'video', 'screen', 'toast', 'replac', 'spent', 'sever', 'hour', 'today', 'research', 'new', 'lg', 'terra', 'recommend', 'not', 'even', 'ballpark', 'nine', 'year', 'old', 'microsd', 'slot', 'video', 'capabl', 'batteri', 'mah', 'compar', 'one', 'review', 'say', 'lack', 'evdo', 'limit', 'bigger', 'camera', 'nine', 'year', 'old', 'improv', 'obvious', 'i', 'consid', 'anoth', 'one', 'big', 'drawback', 'not', 'seen', 'mention', 'page', 'amazon', 'review', 'march', 'qualcomm', 'mdr', 'code', 'upgrad', 'left', 'thousand', 'verizon', 'lg', 'user', 'cold', 'nutshel', 'not', 'phone', 'turn', 'mdr', 'code', 'sent', 'line', 'phone', 'would', 'error', 'could', 'longer', 'access', 'getitnow', 'backup', 'assist', 'code', 'select', 'distribut', 'short', 'time', 'various', 'verizon', 'store', 'tier', 'tech', 'certain', 'region', 'pull', 'verizon', 'step', 'dealt', 'problem', 'immedi', 'let', 'fester', 'spent', 'month', 'dodg', 'issu', 'orphan', 'user', 'scream', 'cours', 'not', 'know', 'til', 'i', 'would', 'alreadi', 'bought', 'replac', 'phone', 'not', 'turn', 'upgrad', 'done', 'month', 'frustrat', 'verizon', 'final', 'wound', 'ship', 'phone', 'mile', 'verizon', 'store', 'ohio', 'appar', 'store', 'nation', 'tech', 'understood', 'problem', 'still', 'mdr', 'code', 'system', 'took', 'five', 'minut', 'fix', 'lucki', 'find', 'inform', 'post', 'verizon', 'forum', 'purchas', 'post', 'last', 'four', 'year', 'access', 'center', 'access', 'backup', 'assist', 'vznavig', 'updat', 'qualcomm', 'mdr', 'code', 'i', 'would', 'like', 'know', 'buy', 'anoth', 'sure', 'not', 'want', 'go', 'pretti', 'much', 'love'], ['replac', 'phone', 'one', 'lost', 'look', 'work', 'great', 'much', 'better', 'expect', 'price', 'still', 'use', 'one', 'even', 'though', 'origin', 'phone', 'found', 'pleas'], ['purchas', 'replac', 'ident', 'model', 'final', 'fell', 'apart', 'mani', 'year', 'use', 'student', 'laugh', 'call', 'grandma', 'phone', 'everyth', 'want', 'phone', 'phone', 'call', 'take', 'pictur', 'text', 'i', 'not', 'year', 'perform', 'beauti', 'not', 'know', 'die', 'realli', 'not', 'want', 'smart', 'phone'], ['use', 'year', 'still', 'work', 'would', 'recommend', 'amazon', 'custom'], ['phone', 'broke', 'like', 'exact', 'one', 'bought', 'came', 'within', 'day'], ['great', 'phone', 'look', 'thank', 'send', 'quick', 'exact', 'look'], ['excel', 'basic', 'issu'], ['phone', 'piec', 'junk', 'would', 'like', 'know', 'return', 'receiv', 'refund', 'i', 'alreadi', 'order', 'anoth', 'phone', 'replac', 'definit', 'mind', 'never', 'know', 'whether', 'i', 'abl', 'access', 'featur', 'i', 'touch', 'not', 'sometim', 'yes', 'time', 'someth', 'insid', 'continu', 'pop', 'someth', 'not', 'access', 'tri', 'send', 'simpl', 'text', 'much', 'challeng', 'constant', 'keep', 'go', 'back', 'attempt', 'finish', 'i', 'type', 'one', 'letter', 'gone', 'somewher', 'els', 'back', 'type', 'anoth', 'letter', 'etc', 'attempt', 'access', 'contact', 'tri', 'hurri', 'press', 'send', 'goe', 'somewher', 'els', 'noth', 'constant', 'sourc', 'frustrat', 'sinc', 'receiv'], ['excit', 'phone', 'arriv', 'place', 'order', 'believ', 'price', 'also', 'reason', 'phone', 'howev', 'receiv', 'phone', 'plug', 'charger', 'came', 'box', 'phone', 'wall', 'phone', 'phone', 'state', 'unauthor', 'charger', 'across', 'screen', 'upon', 'inspect', 'realiz', 'phone', 'motorolla', 'brand', 'charger', 'sanyo', 'proceed', 'nearest', 'verizon', 'store', 'figur', 'would', 'swap', 'charger', 'one', 'correct', 'problem', 'rude', 'state', 'phone', 'not', 'verizon', 'old', 'box', 'pick', 'charger', 'work', 'phone', 'shock', 'realiz', 'charger', 'expens', 'phone', 'want', 'spend', 'almost', 'phone', 'charger', 'would', 'gone', 'verizon', 'store', 'gotten', 'one', 'warranti', 'back', 'forth', 'problem', 'displeas', 'never', 'order', 'anoth', 'phone', 'amazon'], ['buyer', 'never', 'said', 'not', 'work', 'said', 'charger', 'week', 'would', 'not', 'give', 'money', 'back', 'make', 'right'], ['problem', 'product', 'not', 'review', 'product', 'sent', 'not', 'send', 'batteri', 'phone', 'look', 'seller', 'page', 'not', 'shock', 'descript', 'miss', 'near', 'everi', 'third', 'phone', 'receiv', 'packag', 'quick', 'open', 'everyth', 'neat', 'wrap', 'plastic', 'except', 'plastic', 'sleev', 'batteri', 'empti', 'not', 'realiz', 'put', 'empti', 'plastic', 'sleev', 'box', 'even', 'invoic', 'state', 'item', 'miss', 'new', 'phone', 'manual', 'unprofession', 'compani', 'would', 'never', 'purchas', 'warn', 'anybodi', 'wari', 'motorola', 'rival', 'white', 'verizon', 'cellular', 'phone'], ['like', 'phone', 'temporari', 'job', 'job', 'get', 'iphon'], ['piec', 'crap', 'known', 'better', 'work', 'start', 'go', 'crazi', 'not', 'recamend', 'nope'], ['need', 'get', 'basic', 'phone', 'one', 'meet', 'expect', 'would', 'recommend', 'phone', 'good', 'basic', 'phone'], ['work', 'great', 'problem', 'ever', 'love'], ['everyth', 'expect', 'problem', 'case', 'came', 'separ', 'phone', 'littl', 'weird', 'everyth', 'great', 'condit', 'phone', 'work', 'great'], ['need', 'simpl', 'ues', 'phone', 'not', 'need', 'smart', 'phone', 'one', 'waht', 'phone', 'ment', 'one', 'good'], ['look', 'cheap', 'easi', 'replac', 'old', 'basic', 'phone', 'thought', 'razr', 'would', 'good', 'easi', 'use', 'solut', 'phone', 'arriv', 'quick', 'good', 'condit', 'describ', 'seller', 'i', 'happi', 'purchas'], ['serv', 'purpos'], ['purchas', 'phone', 'friend', 'saw', 'mine', 'almost', 'took', 'know', 'obsolet', 'still', 'work', 'perfect', 'love', 'especi', 'love', 'mobil', 'use', 'phone', 'keypad', 'love', 'much', 'turn', 'touchscreen', 'last', 'christma', 'friend', 'also', 'satisfi'], ['note', 'good', 'phone'], ['reciev', 'phone', 'time', 'howev', 'dirti', 'not', 'receiv', 'right', 'charger', 'phone', 'phone', 'batteri', 'not', 'great', 'lucki', 'old', 'phone', 'batteri', 'charger'], ['got', 'samsung', 'alia', 'ship', 'great', 'problem', 'phone', 'open', 'blue', 'red', 'tint', 'not', 'chang', 'even', 'pictur', 'strangest', 'thing'], ['not', 'readi', 'go', 'hi', 'tech', 'cellphon', 'far', 'best', 'cell', 'phone', 'ever', 'own'], ['expect', 'wash', 'old', 'one', 'need', 'one', 'like', 'think', 'much'], ['replac', 'exist', 'phone', 'wonder'], ['gift', 'mother', 'replac', 'one', 'exact', 'want'], ['fast', 'servic', 'product', 'state'], ['great', 'phone', 'littl', 'money', 'use', 'phone', 'close', 'year', 'batteri', 'strongest', 'i', 'ever', 'phone'], ['place', 'buy', 'phone', 'best', 'fast', 'help', 'thank', 'help', 'jayn', 'beezley'], ['get', 'much', 'better', 'recept', 'small', 'town', 'phone', 'newer', 'one', 'also', 'daughter', 'puppi', 'got', 'hold', 'bit', 'bottom', 'phone', 'rug', 'work', 'fine'], ['bought', 'friend', 'like', 'work'], ['verizon', 'give', 'sim', 'free', 'ask', 'number', 'shame', 'got', 'screw'], ['work', 'good', 'verizon', 'give', 'one', 'free', 'not', 'know', 'like', 'not', 'buy', 'one'], ['work'], ['work', 'perfect', 'bought', 'phone', 'requir', 'sim', 'not', 'one', 'bought', 'one', 'went', 'verizon', 'regist', 'within', 'hour', 'use', 'new', 'phone'], ['got', 'card', 'today', 'day', 'order', 'even', 'includ', 'price', 'gallon', 'gas', 'walk', 'mail', 'box', 'skip', 'sale', 'pitch', 'verizon', 'storefront', 'daughter', 'love', 'wait', 'item', 'show', 'extra', 'plus', 'see', 'smile', 'oh', 'bought', 'accessori', 'ship', 'bundl', 'togeth', 'not', 'amount', 'coupl', 'dollar', 'per', 'piec', 'dollar', 'sim', 'card', 'pack', 'good', 'screen', 'protector', 'hard', 'case', 'not', 'bad', 'love', 'amazon'], ['card', 'not', 'expens', 'work', 'great'], ['not', 'much', 'say', 'sim', 'card', 'work', 'great', 'verizon', 'network'], ['work', 'fine', 'activ', 'use', 'htc', 'one', 'verizon'], ['work', 'great', 'compat', 'samsung', 'great', 'qualiti'], ['work', 'great', 'samsung'], ['ok', 'didnot', 'need', 'go', 'keep'], ['may', 'never', 'use', 'least', 'say', 'one', 'great', 'man', 'everyth'], ['correct', 'card', 'still', 'not', 'work'], ['cam', 'quick', 'describ'], ['not', 'micro', 'sim', 'compat', 'phone'], ['phone', 'arriv', 'earlier', 'expect', 'excel', 'condit', 'use', 'far', 'qualiti', 'model', 'phone', 'point', 'sound', 'not', 'clear', 'peopl', 'speak', 'say', 'also', 'hard', 'basic', 'phone', 'miss', 'thing', 'previous', 'phone', 'lg', 'gave', 'star', 'meet', 'basic', 'need', 'call', 'text', 'well', 'price'], ['phone', 'great'], ['si', 'worst', 'onlin', 'transact', 'i', 'ever', 'made', 'doubt', 'ill', 'shop', 'amazon', 'phone', 'stink', 'liter', 'smell', 'like', 'cigarret', 'smoke', 'time', 'screen', 'fall', 'right', 'got', 'keep', 'sa', 'charg', 'even', 'though', 'not', 'plug', 'piec', 'garbag'], ['work', 'better', 'origin', 'model', 'phone', 'love'], ['good', 'phone'], ['order', 'phone', 'terribl', 'glitch', 'type', 'text', 'messag', 'screen', 'went', 'blank', 'stop', 'work', 'contact', 'compani', 'within', 'day', 'happen', 'compliant', 'understand', 'issu', 'sent', 'broken', 'phone', 'expedit', 'brand', 'new', 'one', 'day', 'receiv', 'pretti', 'upset', 'first', 'phone', 'broken', 'thing', 'happen', 'compani', 'help', 'would', 'not', 'think', 'twice', 'order'], ['i', 'still', 'hit', 'wrong', 'button', 'phone', 'ring', 'not', 'come', 'manual', 'i', 'learn', 'trial', 'error'], ['smart', 'phone', 'not', 'use', 'smart', 'phone', 'not', 'use', 'cell', 'phone', 'search', 'internet', 'email', 'etc', 'etc', 'etc', 'want', 'phone', 'text', 'phone', 'exact', 'want', 'anyon', 'not', 'tie', 'cell', 'phone', 'find', 'phone', 'exact', 'need', 'thank', 'maj'], ['verizon', 'phone', 'turn', 'pre', 'paid', 'phone', 'past', 'not', 'descript', 'verizon', 'contract', 'could', 'not', 'activ', 'exspens', 'paper', 'wait', 'return', 'money'], ['work', 'first', 'day', 'would', 'charg', 'next', 'day'], ['honest', 'not', 'like', 'phone', 'cheap', 'could', 'not', 'find', 'case', 'anywher', 'onlin', 'even', 'email', 'someon', 'compani', 'ask', 'could', 'get', 'case', 'protect', 'never', 'got', 'respons', 'new', 'phone', 'alreadi', 'broken', 'inconveni', 'wish', 'would', 'bought', 'refurbish', 'samsung', 'find', 'case', 'anywher', 'phone', 'not', 'good', 'camera', 'aw', 'well', 'phone', 'defin', 'miss', 'lot', 'essenti', 'featur', 'front', 'wake', 'button', 'notif', 'led', 'gorilla', 'glass', 'durabl', 'phone', 'general', 'not', 'even', 'use', 'crack', 'screen', 'make', 'rippl', 'touch', 'anyth', 'broken', 'part', 'bottom', 'screen', 'basic', 'anytim', 'use', 'i', 'put', 'away', 'not', 'use', 'broke', 'accident', 'lean', 'got', 'bed', 'would', 'hate', 'see', 'would', 'happen', 'would', 'drop', 'hard', 'surfac', 'i', 'done', 'wors', 'samsung', 'came', 'okay', 'serious', 'recommend', 'buy', 'trust', 'brand', 'actual', 'buy', 'protect', 'gear'], ['camera', 'size', 'luck', 'cellphon', 'much', 'frozen'], ['best', 'phone', 'ever', 'hand', 'even', 'begin', 'compar', 'phone', 'phone', 'power', 'quick', 'touch', 'respond', 'camera', 'take', 'awesom', 'photo', 'end', 'camera', 'afford', 'low', 'end', 'price', 'wish', 'year', 'ago', 'wife', 'dorado', 'caus', 'get', 'man', 'size', 'not', 'pri', 'hand', 'name', 'brand', 'say', 'verykool'], [], ['bad', 'product', 'gps', 'not', 'work', 'open', 'box', 'key', 'pad', 'hard', 'broke', 'front', 'pocket', 'clue', 'care', 'not', 'respond'], ['great', 'phone', 'rather', 'heavi', 'exchang', 'someth', 'slight', 'smaller', 'lighter'], ['bought', 'phone', 'brother', 'christma', 'not', 'decent', 'cell', 'phone', 'say', 'extrem', 'happi', 'phone'], ['not', 'good', 'phone'], ['good'], ['broke', 'quick', 'tho', 'need', 'get', 'anoth', 'onedrop', 'one', 'timec', 'use', 'get', 'pnonecov', 'screen', 'case', 'soon', 'possibl'], ['good', 'phone', 'price', 'camera', 'qualiti', 'great'], ['phone', 'almost', 'month', 'not', 'troubl', 'volum', 'like', 'mani', 'other', 'key', 'slow', 'dial', 'number', 'click', 'one', 'number', 'beep', 'long', 'time', 'let', 'click', 'next', 'number', 'almost', 'imposs', 'text', 'past', 'month', 'batteri', 'shot', 'drain', 'full', 'charg', 'hour'], ['great', 'phone', 'work', 'amaz', 'network'], ['absolut', 'love', 'technolog', 'meet', 'exceed', 'smartphon', 'expect', 'problem', 'switch', 'verykool', 'camera', 'awesom', 'pictur', 'qualiti', 'amaz', 'messag', 'easi', 'abl', 'download', 'prefer', 'app', 'speed', 'excel', 'custom', 'rington', 'realli', 'fun', 'honest', 'best', 'decis', 'could', 'made'], ['great', 'devic', 'good', 'recept', 'good', 'batteri', 'life', 'light', 'come', 'case', 'screen', 'shield', 'one', 'favorit', 'featur', 'dual', 'sim', 'purchas', 'phone', 'back', 'regular', 'devic', 'travel', 'intern', 'impress', 'would', 'recommend', 'anyon', 'primari', 'devic', 'money', 'great', 'deal'], ['work', 'good', 'batteri', 'take', 'forev', 'charg'], ['far', 'complaint', 'phone', 'good', 'job', 'averi', 'good', 'phone', 'good', 'price'], ['previous', 'phone', 'die', 'get', 'new', 'one', 'thought', 'one', 'look', 'pretti', 'cool', 'bought', 'i', 'realli', 'happi', 'got', 'great', 'capabl', 'love'], ['oper', 'month', 'hard', 'hear', 'voic', 'call', 'speaker', 'not', 'great', 'ringer', 'work', 'choos', 'began', 'refus', 'end', 'call', 'call', 'drop', 'volum', 'not', 'hear', 'anyth', 'send', 'back', 'mayb', 'mine', 'defect', 'sinc', 'work', 'ok', 'except', 'volum', 'issu', 'ringer', 'issu', 'first', 'not', 'seem', 'case', 'use', 'mayb', 'compat', 'issu', 'mani', 'issu', 'start', 'occur', 'not', 'gotten', 'wet', 'drop', 'way', 'abus'], ['difficulti', 'get', 'access', 'point', 'set', 'final', 'got', 'sleek', 'great', 'pictur', 'qualiti', 'money', 'good', 'phone'], ['bought', 'phone', 'travel', 'japan', 'germani', 'work', 'well', 'give', 'phone', 'five', 'star', 'mani', 'featur', 'easi', 'use', 'iphon', 'excel', 'price', 'bought', 'inexpens', 'sim', 'card', 'basic', 'plan', 'check', 'travel', 'talk', 'text', 'use', 'wifi', 'data', 'far', 'everyth', 'work', 'great', 'hope', 'buy', 'sim', 'card', 'voic', 'data', 'countri'], ['excelent'], ['good', 'purpos', 'bought', 'except', 'languag', 'french', 'option'], ['phone', 'freak', 'slow', 'bare', 'hold', 'charg', 'put', 'memori', 'card', 'recogn', 'first', 'week', 'would', 'not', 'accept', 'memori', 'card', 'definit', 'regret', 'spend', 'money'], ['good', 'cheap', 'phone', 'seem', 'work', 'great', 'reset', 'phone', 'could', 'let', 'son', 'use', 'back', 'factori', 'reset', 'phone', 'not', 'worth', 'dam', 'say', 'privaci', 'code', 'setup', 'never', 'setup', 'privaci', 'code', 'get', 'hold', 'verykool', 'not', 'easi', 'find', 'number', 'san', 'diego', 'offic', 'told', 'tech', 'would', 'call', 'back', 'short', 'day', 'ago', 'spend', 'littl', 'get', 'moto', 'thing', 'els', 'would', 'gave', 'star', 'could', 'got', 'tech', 'support', 'need'], ['phone', 'great', 'valu', 'mani', 'featur', 'expens', 'android', 'high', 'recommend', 'budget', 'mind', 'consum', 'randi', 'b'], ['great', 'phone', 'howev', 'granddaught', 'drop', 'plan', 'buy', 'anoth', 'work', 'great', 'qualiti', 'great'], ['phone', 'horribl', 'not', 'show', 'correct', 'time', 'way', 'reset', 'home', 'time', 'display', 'time', 'front', 'phone', 'alway', 'display', 'pdt', 'time', 'live', 'time', 'zone', 'guess', 'would', 'addit', 'get', 'repeat', 'text', 'got', 'one', 'text', 'time', 'would', 'not', 'recommend', 'phone', 'order', 'iphon', 'expens', 'bit', 'cheaper', 'iphon', 'least', 'get', 'satisfact', 'throw', 'useless', 'phone', 'verykool', 'zero', 'support', 'tri', 'reach', 'either', 'gave', 'wrong', 'answer', 'answer', 'not', 'worth', 'hassl'], ['amaz', 'product', 'work', 'effici'], ['not', 'fr', 'bought', 'son', 'caribbean', 'say', 'perfect', 'fr', 'give', 'blue', 'dec', 'went', 'bad', 'month'], ['absolut', 'love', 'phone', 'way', 'expect', 'super', 'easi', 'activ', 'chosen', 'carrier', 'straight', 'talk', 'great', 'camera', 'great', 'color', 'great', 'phone', 'around', 'togeth', 'got', 'thing', 'i', 'never', 'seen', 'phone', 'includ', 'window', 'phone', 'pick', 'phone', 'window', 'phone', 'excel', 'complaint', 'download', 'app', 'game', 'ect', 'still', 'memori', 'card', 'need', 'plus', 'flashlight', 'well', 'flash', 'photo', 'take'], ['phone', 'day', 'found', 'care', 'download', 'talkback', 'app', 'googl', 'play', 'store', 'download', 'app', 'could', 'not', 'scroll', 'set', 'menu', 'longer', 'happen', 'could', 'not', 'scroll', 'reset', 'phone', 'look', 'internet', 'final', 'found', 'refer', 'problem', 'open', 'set', 'menu', 'not', 'scroll', 'download', 'app', 'swipe', 'two', 'finger', 'diagon', 'across', 'face', 'phone', 'first', 'tri', 'swipe', 'across', 'accid', 'tri', 'old', 'way', 'diagon', 'set', 'page', 'start', 'scroll', 'thought', 'might', 'help', 'run', 'problem', 'problem', 'far', 'gave', 'phone', 'star', 'check', 'ahead', 'time', 'downloadingani', 'app', 'also', 'want', 'emphas', 'phone', 'use', 'standard', 'size', 'sim', 'card', 'not', 'micro', 'sim', 'card', 'found', 'consum', 'phone', 'realli', 'good', 'work', 'phone', 'problem', 'except', 'app', 'mention', 'first', 'review', 'phone', 'everyth', 'smartphon', 'suppos', 'realli', 'like', 'octob', 'phone', 'still', 'work', 'good', 'batteri', 'charg', 'last', 'day', 'problem', 'phone'], ['excel', 'say'], ['advert'], ['speaker', 'terribl', 'dollar', 'zte', 'speaker', 'blow', 'one', 'away', 'batteri', 'not', 'good', 'like', 'go', 'return', 'tri', 'differ', 'brand', 'not', 'believ', 'hype', 'time'], ['good'], ['not', 'even', 'use', 'utub', 'video', 'taken', 'ever', 'load'], ['last', 'review', 'said', 'phone', 'wonder', 'great', 'love', 'well', 'love', 'slow', 'disconnect', 'wifi', 'connect', 'random', 'send', 'notif', 'wifi', 'random', 'pretti', 'annoy', 'honest', 'second', 'took', 'phone', 'charger', 'look', 'snapchat', 'look', 'percentag', 'drop', 'like', 'phone', 'sent', 'second', 'batteri', 'better', 'batteri', 'us', 'not', 'make', 'phone', 'charger', 'busi', 'life', 'like', 'everyon', 'phone', 'great', 'flaw', 'need', 'handl', 'phone', 'would', 'great', 'not', 'last', 'week', 'waist', 'money'], ['price', 'good', 'reason', 'price', 'function', 'function', 'expand', 'storag', 'via', 'sd', 'cameracon', 'littl', 'slow', 'processor', 'speed', 'base', 'respons', 'time', 'limit', 'ram', 'rom', 'actual', 'show', 'display', 'sometim', 'issu', 'imag', 'sd', 'card', 'expans', 'limit', 'gps', 'accuraci', 'issu', 'navig', 'app', 'like', 'googl', 'map', 'similar', 'limit', 'case', 'avail', 'surpris', 'may', 'chang', 'time', 'calibr', 'app', 'gps', 'orient', 'accuraci', 'like', 'accessori', 'cheap', 'construct', 'usb', 'cabl', 'broke', 'separ', 'connect', 'coupl', 'month', 'earphon', 'fell', 'apart', 'far', 'charger', 'function', 'month', 'get', 'warm'], ['updat', 'today', 'not', 'heard', 'sever', 'review', 'also', 'mention', 'poor', 'custom', 'not', 'care', 'anyon', 'back', 'product', 'buy', 'one', 'purchas', 'anoth', 'brand', 'husband', 'bad', 'view', 'not', 'verykool', 'comment', 'phone', 'still', 'standit', 'not', 'hard', 'set', 'seem', 'hold', 'charg', 'problem', 'sim', 'day', 'updat', 'review', 'time', 'goe', 'not', 'phone', 'nerd', 'attach', 'hip', 'cell', 'phone', 'use', 'prepaid', 'phone', 'primarili', 'use', 'travel', 'hous', 'emerg', 'phone', 'friend', 'kept', 'nag', 'want', 'text', 'send', 'pic', 'enter', 'verykool', 'far', 'sent', 'text', 'photo', 'btw', 'camera', 'seem', 'excel', 'probabl', 'use', 'phone', 'receiv', 'enjoy', 'hubbi', 'said', 'get', 'one', 'went', 'list', 'price', 'chang', 'sizeabl', 'reduct', 'attempt', 'contact', 'verykool', 'find', 'amazon', 'went', 'web', 'site', 'sent', 'letter', 'sun', 'regard', 'chang', 'price', 'could', 'get', 'adjust', 'jump', 'hoop', 'return', 'buy', 'cheaper', 'today', 'busi', 'day', 'later', 'nari', 'word', 'verykool', 'shame', 'sad', 'say', 'great', 'item', 'bad', 'compani'], ['nice', 'phone', 'money', 'easi', 'use', 'take', 'good', 'pic', 'would', 'buy'], ['got', 'phone', 'yesterday', 'far', 'pretti', 'good', 'good', 'money', 'thing', 'slight', 'problem', 'batteri', 'life', 'not', 'anyth', 'intens', 'batteri', 'die', 'within', 'hour', 'phone', 'work', 'pretti', 'well'], ['good', 'thank'], ['verykool', 'dorado', 'ip', 'batteri', 'last', 'hour', 'sent', 'email', 'compani', 'month', 'ago', 'respons', 'user', 'manual', 'not', 'help', 'much', 'regret', 'buy', 'phone', 'wish', 'could', 'send', 'back'], ['love', 'phone', 'much', 'ship', 'fast', 'ultra', 'thin', 'light', 'weight', 'big', 'inch', 'screen'], ['receav', 'verykool', 'phone', 'promis', 'excel', 'condit', 'phone', 'not', 'work', 'right', 'reason', 'cheap', 'ask', 'know', 'get', 'pay', 'least', 'work', 'box', 'could', 'not', 'get', 'phone', 'make', 'phone', 'call', 'unless', 'wifi', 'not', 'except'], ['wish', 'could', 'give', 'negat', 'star'], ['second', 'one', 'purchas', 'run', 'great', 'troubl', 'manual', 'lock', 'screen', 'take', 'call', 'put', 'text', 'not', 'disconnect', 'call', 'littl', 'troubl', 'got', 'use'], ['phone', 'met', 'expect', 'great', 'price', 'point', 'pictur', 'qualiti', 'excel'], ['not', 'happi'], ['broke', 'quick', 'tho', 'need', 'get', 'anoth', 'onedrop', 'one', 'timec', 'use', 'get', 'pnonecov', 'screen', 'case', 'soon', 'possibl'], ['phone', 'work', 'well'], ['good', 'phone', 'love', 'way', 'look'], ['thanx', 'alot'], ['switch', 'without', 'chang', 'phone', 'number', 'not', 'even', 'wait', 'next', 'payment', 'transfer', 'ship', 'super', 'quick'], ['awesom'], ['first', 'time', 'buyer', 'iphon', 'love', 'far', 'faster', 'processor', 'android', 'wish', 'not', 'expens', 'phone'], ['phone', 'not', 'work'], ['send', 'back', 'charg', 'port', 'crook', 'charger', 'could', 'not', 'hook', 'never', 'even', 'turn', 'us', 'mayb', 'product', 'glitch'], ['beyond', 'slow', 'incompat', 'everyth', 'realli', 'tri', 'make', 'work', 'i', 'would', 'never', 'buy', 'brand'], ['want', 'want', 'kit', 'kat', 'updat', 'blu'], ['thank', 'lot', 'grate', 'product', 'meet', 'descript'], ['phone', 'look', 'good', 'not', 'compat', 'gsm', 'carrier', 'india', 'proper', 'instruct', 'make', 'work', 'request', 'product', 'owner', 'help', 'without', 'usag', 'showpiec'], ['gave', 'five', 'star', 'alot', 'thing', 'not', 'expect', 'phone', 'capabl', 'without', 'ado', 'let', 'us', 'get', 'reviewdisplay', 'display', 'amol', 'display', 'realli', 'produc', 'great', 'graphic', 'also', 'enjoy', 'watch', 'video', 'phone', 'love', 'clear', 'imag', 'qualiti', 'sound', 'qualiti', 'amaz', 'not', 'believ', 'phone', 'like', 'great', 'audio', 'realli', 'clear', 'even', 'speaker', 'phone', 'not', 'big', 'still', 'not', 'sound', 'like', 'water', 'ibsid', 'ir', 'someth', 'cool', 'cooler', 'ohon', 'allow', 'control', 'music', 'equal', 'came', 'phone', 'also', 'sound', 'qualiti', 'control', 'control', 'sound', 'speaker', 'also', 'featuresth', 'camera', 'phone', 'megapixel', 'rear', 'equip', 'flash', 'also', 'megapixel', 'front', 'camera', 'pretti', 'cool', 'megapixel', 'good', 'special', 'phone', 'phone', 'alot', 'featur', 'pick', 'maxim', 'pictur', 'take', 'skill', 'featur', 'consist', 'hdr', 'face', 'beauti', 'mode', 'motion', 'track', 'mode', 'live', 'photo', 'mode', 'bunch', 'thing', 'alot', 'go', 'say', 'camera', 'phone', 'offer', 'alot', 'come', 'realli', 'dig', 'aluminum', 'design', 'phone', 'realli', 'shini', 'reflect', 'great', 'one', 'thing', 'ador', 'ohon', 'not', 'realli', 'find', 'display', 'similar', 'phone', 'realli', 'salut', 'seller', 'come', 'origin', 'back', 'phone', 'tho', 'plastic', 'still', 'look', 'cool', 'distanc', 'look', 'like', 'aluminum', 'back', 'case', 'fine', 'live', 'ram', 'phone', 'fine', 'phone', 'ram', 'averag', 'cool', 'rom', 'also', 'nice', 'might', 'think', 'not', 'enough', 'phone', 'perman', 'app', 'unlik', 'networksaccord', 'seller', 'work', 'major', 'network', 'suppos', 'one', 'i', 'not', 'quit', 'sure', 'ask', 'seller', 'regard', 'processorth', 'batteri', 'phone', 'batteri', 'last', 'hour', 'continu', 'use', 'processor', 'phone', 'lollipop', 'ghz', 'quadcor', 'phone', 'easi', 'use', 'think', 'made', 'easi', 'access', 'easili', 'access', 'music', 'thing', 'homepag', 'play', 'music', 'easili', 'wothout', 'even', 'go', 'music', 'app', 'camera', 'access', 'also', 'also', 'thing', 'app', 'display', 'camera', 'roll', 'give', 'quick', 'access', 'pictur', 'phone', 'total', 'amaz', 'realli', 'recommend', 'i', 'realli', 'happi', 'phone', 'although', 'also', 'thing', 'not', 'meet', 'expect', 'one', 'pokemon', 'go', 'not', 'work', 'also', 'thing', 'still', 'realli', 'worth', 'look', 'substitut', 'phone', 'give', 'shot', 'not', 'bad', 'i', 'pretti', 'sure', 'not', 'get', 'dissapoint', 'thisi', 'receiv', 'product', 'discount', 'price', 'i', 'not', 'compens', 'affliat', 'given', 'instruct', 'seller', 'give', 'specif', 'review', 'opinion', 'base', 'experi'], ['phone', 'work', 'fine', 'not', 'expect', 'price'], ['mom', 'phone', 'short', 'love', 'similar', 'note', 'size', 'graphic', 'beauti', 'well', 'interfac', 'camera', 'take', 'amaz', 'selfi', 'parent', 'abl', 'video', 'chat', 'work', 'fast', 'effici', 'heck', 'i', 'even', 'think', 'buy', 'one', 'dad', 'work', 'great', 'caribbean', 'gsm', 'carrier'], ['phone', 'work', 'fine', 'not', 'expect', 'price'], ['i', 'love', 'phone', 'far', 'arriv', 'right', 'time', 'front', 'camera', 'could', 'littl', 'better', 'phone', 'amaz', 'price', 'come', 'headphon', 'case', 'screen', 'huge', 'phone', 'better', 'opinion', 'spend', 'phonesi', 'play', 'love', 'wogiz', 'phone'], ['phone', 'box', 'neat', 'wrap', 'nice', 'phone', 'bought', 'husband', 'love', 'meet', 'expect', 'thank'], ['serv', 'want', 'flipcas', 'updat', 'bought', 'anoth', 'one', 'nice', 'smartphon'], ['phone', 'box', 'neat', 'wrap', 'nice', 'phone', 'bought', 'husband', 'love', 'meet', 'expect', 'thank'], ['awesom', 'phone', 'buck', 'killer', 'super', 'fast', 'phone', 'must', 'buy', 'gift'], ['quit', 'difficult', 'take', 'back', 'cover', 'phone', 'put', 'sim', 'card', 'import', 'batteri', 'otherwis', 'perfect', 'match', 'year', 'old', 'grandmoth', 'recommend', 'product'], ['realli', 'nice', 'phone', 'amaz', 'price', 'bought', 'grandson', 'want', 'call', 'text', 'put', 'sim', 'card', 'turn', 'work', 'year', 'ago', 'got', 'lg', 'financ', 'year', 'tmobil', 'ridicul', 'price', 'order', 'anoth', 'yezz', 'andi', 'screen', 'size', 'bit', 'small', 'issu', 'point', 'extra', 'yezz', 'andi', 'next', 'phone', 'not', 'pay', 'price', 'phone', 'need', 'love', 'color', 'far', 'blue', 'get', 'could', 'not', 'find', 'silicon', 'case', 'generic', 'case', 'make', 'case', 'protect', 'phone', 'slide', 'onto', 'floor', 'lot', 'i', 'not', 'care'], ['great', 'android', 'devic'], ['good'], ['excel', 'love', 'phone'], ['work', 'great'], ['i', 'realli', 'like', 'phone', 'although', 'not', 'high', 'end', 'phone', 'i', 'found', 'adequ', 'realli', 'great', 'bargain', 'price', 'touch', 'screen', 'respons', 'screen', 'clariti', 'also', 'good', 'find', 'phone', 'definit', 'fast', 'enough', 'term', 'bring', 'app', 'also', 'like', 'size', 'ok', 'trend', 'larg', 'screen', 'phone', 'prefer', 'size', 'easi', 'handl', 'hold', 'fit', 'nice', 'carri', 'case', 'market', 'good', 'smart', 'phone', 'not', 'break', 'bank', 'definit', 'recommend', 'one'], ['like', 'phone', 'especi', 'price', 'pay', 'everyth', 'phone', 'realli', 'like', 'color', 'fact', 'chang', 'color', 'interchang', 'back', 'cover', 'con', 'phone', 'slow', 'howev', 'could', 'put', 'sd', 'card', 'extra', 'memori', 'would', 'updat', 'great', 'phone'], ['plug', 'need', 'extra', 'long', 'work'], ['love', 'phone', 'high', 'underr', 'superfast', 'lot', 'storag', 'audio', 'great', 'batteri', 'life', 'not', 'bad'], ['phone', 'support', 'lte', 'band', 'work', 'verizon', 'wireless', 'data', 'devic', 'zte', 'not', 'enabl', 'lollipop', 'volt', 'need', 'make', 'work', 'verizon', 'test', 'latest', 'lollipop', 'firmwar', 'feburari', 'return'], ['i', 'phone', 'guy', 'phone', 'current', 'daili', 'driver', 'satisfi'], ['good', 'phone', 'feel', 'good', 'hand', 'construct', 'materi', 'premiun', 'fingerprint', 'sensor', 'work', 'wonder', 'audio', 'anoth', 'world', 'camera', 'good', 'enough', 'good', 'price', 'absolut', 'everyth', 'could', 'even', 'expect', 'nfc', 'headphon', 'good', 'phone', 'batteri', 'arriv', 'end', 'day', 'everyth', 'els', 'phone', 'balanc', 'benefit', 'high', 'recommend'], ['month', 'purchas', 'zte', 'axon', 'phone', 'must', 'say', 'satisfi', 'prior', 'android', 'differ', 'well', 'brand', 'cell', 'phone', 'twice', 'expens', 'axon', 'mind', 'never', 'would', 'problem', 'near', 'year', 'former', 'phone', 'fail', 'complet', 'devast', 'price', 'paid', 'i', 'still', 'not', 'believ', 'promis', 'next', 'android', 'phone', 'purchas', 'less', 'expens', 'high', 'qualiti', 'come', 'across', 'zte', 'axon', 'felt', 'one', 'perfect', 'phone', 'servic', 'provid', 'year', 'receiv', 'new', 'axon', 'connect', 'servic', 'provid', 'success', 'love', 'manag', 'use', 'quick', 'batteri', 'stay', 'work', 'longer', 'period', 'time', 'also', 'enjoy', 'differ', 'featur', 'come', 'worth'], ['box', 'slim', 'clear', 'screen', 'protector', 'alreadi', 'phone', 'well', 'addit', 'back', 'charger', 'well', 'small', 'overlay', 'piec', 'use', 'charger', 'make', 'usabl', 'phone', 'someth', 'not', 'know', 'charger', 'port', 'go', 'direct', 'phone', 'differ', 'flagship', 'phone', 'samsung', 'galaxi', 'tldr', 'charger', 'specif', 'phone', 'charg', 'quick', 'play', 'music', 'video', 'beauti', 'glitch', 'bug', 'thus', 'far', 'fast', 'initi', 'start', 'slow', 'use', 'start', 'becom', 'quicker', 'enough', 'storag', 'also', 'option', 'add', 'input', 'sim', 'allow', 'control', 'sim', 'use', 'also', 'use', 'incur', 'data', 'neat', 'upon', 'initi', 'camera', 'use', 'not', 'satisfi', 'due', 'adjust', 'set', 'manual', 'not', 'photograph', 'not', 'much', 'experi', 'mess', 'around', 'bit', 'pretti', 'great', 'pictur', 'qualiti', 'fingerprint', 'reader', 'not', 'fail', 'success', 'attempt', 'finger', 'upload', 'day', 'use', 'well', 'purpos', 'shut', 'test', 'thing', 'iffi', 'keep', 'phone', 'i', 'hope', 'someon', 'read', 'offer', 'input', 'white', 'screen', 'stock', 'messag', 'app', 'go', 'set', 'come', 'fuzzi', 'i', 'still', 'abl', 'read', 'text', 'part', 'clear', 'crisp', 'look', 'fuzzi', 'like', 'dust', 'screen', 'colour', 'not', 'notic', 'thus', 'make', 'toler', 'even', 'phone', 'cost', 'expect', 'screen', 'crisp', 'vibrant', 'not', 'seem', 'white', 'theme', 'rate', 'top', 'notch', 'phone', 'fuz', 'white', 'screen'], ['note', 'video', 'made', 'day', 'receiv', 'devic', 'written', 'review', 'made', 'week', 'use', 'written', 'review', 'may', 'help', 'zte', 'axon', 'could', 'flagship', 'killer', 'year', 'follow', 'heel', 'releas', 'oneplus', 'question', 'axon', 'live', 'price', 'tag', 'quick', 'answer', 'emphat', 'yes', 'probabl', 'could', 'easili', 'mistaken', 'averag', 'consum', 'phone', 'axon', 'not', 'without', 'fault', 'thought', 'phone', 'one', 'full', 'week', 'usag', 'build', 'qualiti', 'outset', 'phone', 'scream', 'premium', 'metal', 'unibodi', 'design', 'zte', 'look', 'absolut', 'stun', 'round', 'side', 'relat', 'thin', 'bezel', 'give', 'phone', 'screen', 'smaller', 'footprint', 'averag', 'phone', 'complaint', 'build', 'qualiti', 'slipperi', 'metal', 'back', 'feel', 'hand', 'appreci', 'zte', 'includ', 'thin', 'clear', 'tpu', 'case', 'box', 'give', 'less', 'slipperi', 'qualiti', 'screen', 'axon', 'amol', 'display', 'bright', 'enough', 'see', 'brightest', 'day', 'dim', 'enough', 'watch', 'netflix', 'dark', 'without', 'hurt', 'axon', 'qualcomm', 'snapdragon', 'processor', 'combin', 'adreno', 'gpu', 'chipset', 'ram', 'combin', 'allow', 'zte', 'fli', 'process', 'game', 'social', 'network', 'youtub', 'app', 'throw', 'axon', 'run', 'butteri', 'smooth', 'time', 'i', 'slow', 'down', 'app', 'download', 'background', 'tri', 'use', 'heavi', 'app', 'like', 'madden', 'mobil', 'camera', 'back', 'solid', 'camera', 'best', 'camera', 'i', 'use', 'cell', 'hold', 'mani', 'top', 'flagship', 'camera', 'zte', 'sometim', 'fall', 'short', 'low', 'light', 'perform', 'actual', 'take', 'relat', 'good', 'pictur', 'low', 'light', 'default', 'low', 'light', 'hdr', 'night', 'mode', 'littl', 'often', 'shutter', 'speed', 'slow', 'front', 'face', 'selfi', 'camera', 'wide', 'angl', 'camera', 'take', 'excel', 'photo', 'good', 'light', 'decent', 'photo', 'low', 'light', 'note', 'front', 'face', 'flash', 'certain', 'not', 'deal', 'breaker', 'front', 'face', 'speaker', 'axon', 'definit', 'among', 'best', 'busi', 'replac', 'bluetooth', 'speaker', 'certain', 'better', 'speaker', 'flagship', 'phone', 'includ', 'htc', 'sound', 'clariti', 'point', 'listen', 'experi', 'pleasant', 'realli', 'difficult', 'beat', 'pair', 'front', 'face', 'speaker', 'phone', 'especi', 'output', 'axon', 'also', 'note', 'zte', 'also', 'includ', 'special', 'dolbi', 'audio', 'driver', 'phone', 'give', 'high', 'qualiti', 'sound', 'output', 'headphon', 'well', 'person', 'not', 'notic', 'huge', 'differ', 'audio', 'qualiti', 'compar', 'high', 'end', 'phone', 'also', 'not', 'audiophil', 'life', 'axon', 'come', 'mah', 'batteri', 'get', 'averag', 'user', 'day', 'use', 'batteri', 'spare', 'person', 'heavi', 'user', 'like', 'push', 'phone', 'limit', 'antenna', 'run', 'app', 'run', 'background', 'screen', 'bright', 'turn', 'around', 'time', 'could', 'get', 'around', 'need', 'get', 'quick', 'fill', 'far', 'averag', 'right', 'around', 'hour', 'screen', 'time', 'pretti', 'much', 'par', 'everi', 'flagship', 'phone', 'thank', 'zte', 'includ', 'qualcomm', 'quick', 'charg', 'axon', 'even', 'includ', 'qualcomm', 'charg', 'block', 'box', 'axon', 'work', 'major', 'carrier', 'far', 'signal', 'strength', 'cricket', 'wireless', 'axon', 'good', 'phone', 'i', 'use', 'wifi', 'signal', 'may', 'best', 'i', 'phone', 'year', 'area', 'hous', 'would', 'get', 'one', 'two', 'bar', 'wifi', 'signal', 'phone', 'zte', 'get', 'closer', 'bar', 'fingerprint', 'scanner', 'fingerprint', 'scanner', 'use', 'accur', 'say', 'time', 'work', 'first', 'tri', 'person', 'prefer', 'scanner', 'front', 'sacrific', 'scanner', 'back', 'mean', 'get', 'dual', 'front', 'face', 'speaker', 'respons', 'time', 'axon', 'fingerprint', 'scanner', 'also', 'extra', 'zte', 'axon', 'realli', 'get', 'away', 'make', 'purchas', 'not', 'ever', 'purchas', 'anoth', 'accessori', 'box', 'get', 'clear', 'tpu', 'case', 'plastic', 'screen', 'protector', 'qualcomm', 'charg', 'block', 'usb', 'charg', 'cabl', 'pair', 'zte', 'headphon', 'sim', 'remov', 'zte', 'axon', 'make', 'question', 'anyon', 'would', 'pay', 'plus', 'dollar', 'flagship', 'phone', 'lock', 'particular', 'carrier', 'realli', 'believ', 'phone', 'good', 'not', 'better', 'mani', 'flagship', 'phone', 'not', 'perfect', 'phone', 'definit', 'worth'], ['definit', 'worth', 'money', 'not', 'phone', 'great', 'valu', 'also', 'come', 'accessori', 'would', 'hard', 'find', 'better', 'valu'], ['bottom', 'line', 'top', 'notch', 'phone', 'mid', 'rang', 'price', 'well', 'worth', 'moneyca', 'complain', 'phone', 'spec', 'especi', 'speaker', 'audio', 'chip', 'also', 'snapdragon', 'gb', 'ram', 'realli', 'good', 'bigger', 'usual', 'box', 'accessori', 'need', 'like', 'earphon', 'phone', 'case', 'not', 'need', 'buy', 'screen', 'protector', 'alreadi', 'phone', 'save', 'workth', 'phone', 'style', 'look', 'similar', 'htc', 'thing', 'not', 'like', 'notif', 'light', 'small', 'see', 'know', 'light', 'htc', 'phone', 'even', 'smaller', 'phone', 'manufactur', 'like', 'small', 'light', 'year', 'appar', 'light', 'color', 'green', 'orang', 'older', 'phone', 'nexus', 'lot', 'color', 'optionssoftwar', 'wise', 'initi', 'version', 'obvious', 'bug', 'catch', 'reason', 'fast', 'fix', 'bug', 'add', 'new', 'featur', 'btw', 'said', 'nougat', 'jan', 'got', 'dedic', 'phone', 'number', 'tech', 'support', 'rare', 'non', 'big', 'name', 'companynow', 'even', 'better', 'amazon', 'sell', 'less'], ['far', 'love', 'phone'], ['not', 'much', 'add', 'great', 'review', 'suffic', 'say', 'love', 'phone', 'perform', 'like', 'phone', 'far', 'reason', 'price', 'issu', 'phone', 'simpli', 'work', 'work', 'well'], ['absolut', 'marvel', 'android', 'phone', 'look', 'good', 'feel', 'good', 'perform', 'well', 'fast', 'work', 'well', 'corpor', 'chain', 'airwatch', 'us', 'deal', 'fingerprint', 'sensor', 'back', 'phone', 'logic', 'place', 'sceptic', 'first', 'believ', 'zte', 'implement', 'android', 'generic', 'android', 'good', 'thing', 'bloatwar', 'mysteri', 'i', 'would', 'not', 'figur', 'use', 'excel', 'good', 'resolut', 'clear', 'bright', 'touch', 'screen', 'perform', 'quick', 'respons', 'two', 'sim', 'card', 'slot', 'great', 'realli', 'one', 'sim', 'card', 'one', 'memori', 'card', 'intern', 'memori', 'not', 'enough', 'life', 'report', 'variabl', 'juri', 'hour', 'ago', 'charg', 'phone', 'btw', 'min', 'buy', 'charg', 'sinc', 'use', 'music', 'lot', 'email', 'long', 'call', 'avail', 'last', 'night', 'engag', 'batteri', 'save', 'mode', 'overnight', 'drop', 'not', 'bad', 'consid', 'not', 'plug', 'frank', 'i', 'not', 'feel', 'batteri', 'anxieti'], ['far', 'good', 'not', 'go', 'wrong', 'price', 'like', 'feel', 'not', 'like', 'cheap', 'phone', 'made', 'plastic', 'one', 'downsid', 'not', 'found', 'decent', 'fiber', 'glass', 'screen', 'protector', 'phone', 'yet', 'axon'], ['axon', 'pro', 'offer', 'best', 'one', 'great', 'warranti', 'beatabl', 'mani', 'not', 'touch', 'wait', 'pro', 'arriv', 'snapdragon'], ['good', 'phone', 'qualiti', 'pictur', 'problem', 'get', 'heat', 'charg', 'also', 'watch', 'movi', 'play', 'music'], ['phone', 'support', 'lte', 'band', 'work', 'verizon', 'wireless', 'data', 'devic', 'zte', 'not', 'enabl', 'lollipop', 'volt', 'need', 'make', 'work', 'verizon', 'test', 'latest', 'lollipop', 'firmwar', 'feburari', 'return'], ['everyth', 'need', 'good', 'price'], ['best', 'phone', 'ever', 'own', 'iphon', 'samsung', 'nexus', 'htc', 'far', 'top', 'heap', 'key', 'thing', 'memori', 'adequ', 'power', 'strong', 'cpu', 'par', 'today', 'top', 'phone', 'video', 'strong', 'also', 'par', 'today', 'top', 'batteri', 'top', 'line', 'effici', 'design', 'longer', 'worri', 'saddl', 'spare', 'usb', 'charger', 'batteri', 'everywher', 'go', 'last', 'day', 'heavi', 'price', 'great', 'price', 'much', 'better', 'samsung', 'flexibl', 'unlock', 'year', 'commitmentsoveral', 'high', 'recommend', 'phone', 'exceed', 'expect', 'everi', 'way'], ['phone', 'absolut', 'amaz', 'phone', 'ever', 'use', 'camera', 'qualiti', 'far', 'best', 'ever', 'seen', 'whether', 'take', 'pictur', 'indoor', 'low', 'light', 'sunlight', 'get', 'perfect', 'shot', 'camera', 'also', 'impress', 'quick', 'respons', 'time', 'smooth', 'transit', 'navig', 'devic', 'sound', 'phone', 'blow', 'away', 'everi', 'time', 'listen', 'music', 'last', 'heavi', 'user', 'batteri', 'life', 'get', 'phone', 'better', 'devic', 'ever', 'show', 'phone', 'friend', 'switch', 'call', 'luxuri', 'phone', 'axon', 'truli', 'best', 'luxuri', 'phone', 'market'], ['price', 'everyt', 'much', 'beter', 'samsung'], ['great', 'cell', 'phone'], ['big', 'issu', 'sim', 'port', 'big', 'problem', 'phone', 'not', 'know', 'zte', 'employe', 'talk', 'thing', 'phone', 'not', 'recogn', 'sim', 'chip', 'work', 'first', 'day', 'second', 'not', 'talk', 'carrier', 'compani', 'said', 'sim', 'activ', 'someth', 'wrong', 'phone', 'phone', 'not', 'job', 'basic', 'phone', 'text', 'call', 'like', 'player'], ['good', 'phone', 'complaint', 'music', 'qualiti', 'best', 'promis', 'camera', 'good', 'not', 'best', 'star', 'exist', 'music', 'player', 'option', 'play', 'music', 'file', 'folder', 'mode', 'show', 'artist', 'album', 'folder', 'option', 'sad', 'great', 'servic', 'amazon', 'alway'], ['phone', 'right', 'classi', 'slick', 'choic', 'color', 'glad', 'pick', 'gold', 'fun', 'dual', 'camera', 'back', 'creat', 'interest', 'imag', 'multi', 'exposur', 'ram', 'board', 'smooth', 'quick', 'friend', 'famili', 'ask', 'wow', 'buy', 'respons'], ['absolut', 'love', 'phone', 'phone', 'awesom', 'sound', 'compar', 'smart', 'phone', 'take', 'pictur', 'video', 'not', 'glitch', 'playback', 'pictur', 'taken', 'review', 'pros', 'con', 'pretti', 'accur', 'champagn', 'light', 'gold', 'color', 'look', 'nice', 'use', 'straight', 'talk', 'plan', 'still', 'get', 'use', 'i', 'sure', 'thing', 'wow', 'us', 'discov', 'bit', 'money', 'upfront', 'not', 'bad', 'price', 'overal', 'spec', 'would', 'nice', 'see', 'mayb', 'next', 'phone', 'design', 'size', 'not', 'bad', 'not', 'big', 'great', 'photo', 'take', 'nice', 'pic', 'surf', 'net', 'watch', 'show', 'etc', 'feel', 'well', 'built', 'batteri', 'last', 'well', 'day', 'not', 'gotten', 'hot', 'like', 'review', 'i', 'read', 'far', 'happi', 'phone', 'would'], ['love', 'phone', 'far', 'two', 'week', 'batteri', 'first', 'not', 'stay', 'charg', 'long', 'sinc', 'charg', 'drain', 'time', 'work', 'great', 'pictur', 'great', 'abl', 'use', 'phone', 'need', 'thing', 'use', 'abl', 'use', 'remot', 'app', 'goe', 'tv', 'dvd', 'player', 'none', 'app', 'work', 'phone', 'could', 'find', 'phone', 'one', 'speaker', 'confus', 'first', 'sinc', 'use', 'speaker', 'back', 'phone', 'call', 'speaker', 'front', 'phone', 'great', 'though', 'flaw', 'encount'], ['not', 'buy', 'phone', 'everi', 'product', 'cycl', 'need', 'phone', 'close', 'flagship', 'spec', 'buy', 'go', 'last', 'coupl', 'year', 'refus', 'spend', 'husband', 'like', 'one', 'plus', 'one', 'nexus', 'near', 'end', 'use', 'life', 'set', 'sight', 'one', 'plus', 'two', 'not', 'thrill', 'lack', 'qualcomm', 'quick', 'charg', 'nexus', 'not', 'either', 'not', 'care', 'much', 'hate', 'invit', 'drama', 'play', 'along', 'announc', 'delay', 'ship', 'north', 'america', 'dang', 'time', 'shop', 'thing', 'hate', 'sound', 'sometim', 'primari', 'function', 'phone', 'actual', 'place', 'receiv', 'call', 'mutual', 'intellig', 'voic', 'without', 'pain', 'blast', 'sound', 'zte', 'diss', 'emphasi', 'sound', 'real', 'win', 'especi', 'enclos', 'headphon', 'famili', 'not', 'hate', 'talk', 'anymor', 'most', 'win', 'husband', 'often', 'wind', 'siren', 'cavern', 'nyc', 'hear', 'understand', 'fine', 'without', 'go', 'deaf', 'got', 'phone', 'blame', 'bluetooth', 'lte', 'band', 'mean', 'get', 'stay', 'connect', 'would', 'not', 'even', 'root', 'patch', 'get', 'lag', 'take', 'real', 'work', 'one', 'activ', 'normal', 'usag', 'lag', 'state', 'today', 'softwar', 'hope', 'bloat', 'occur', 'next', 'coupl', 'year', 'not', 'send', 'knee', 'display', 'bright', 'usabl', 'bright', 'sunlight', 'dim', 'enough', 'not', 'blind', 'check', 'time', 'dark', 'room', 'middl', 'night', 'concern', 'snapdragon', 'processor', 'overh', 'not', 'problem', 'yet', 'i', 'run', 'nav', 'play', 'ingress', 'drive', 'summer', 'heat', 'wave', 'went', 'concern', 'batteri', 'great', 'occas', 'work', 'pretti', 'hard', 'need', 'recharg', 'quickcharg', 'top', 'next', 'time', 'not', 'leav', 'charger', 'night', 'anymor', 'get', 'top', 'first', 'thing', 'morn', 'readi', 'full', 'day', 'i', 'finish', 'shower', 'breakfast', 'activ', 'ingress', 'player', 'care', 'great', 'batteri', 'life', 'gps', 'not', 'care', 'quick', 'charg', 'got', 'phone', 'care', 'make', 'huge', 'not', 'care', 'much', 'camera', 'want', 'take', 'outstand', 'photo', 'i', 'use', 'camera', 'not', 'camera', 'phone', 'said', 'abl', 'snap', 'photo', 'recent', 'lunar', 'eclips', 'share', 'around', 'selfi', 'side', 'fine', 'video', 'chat', 'bokeh', 'kind', 'fun', 'would', 'not', 'necessarili', 'choos', 'phone', 'line', 'mani', 'peopl', 'remark', 'memori', 'real', 'handicap', 'toss', 'photo', 'video', 'direct', 'cloud', 'care', 'less', 'i', 'not', 'fine', 'photographi', 'phone', 'grab', 'snapshot', 'day', 'day', 'occasion', 'unplan', 'interest', 'artsi', 'shot', 'stumbl', 'across', 'mayb', 'yelp', 'instagram', 'auto', 'upload', 'amazon', 'clear', 'local', 'copi', 'style', 'especi', 'slim', 'grill', 'top', 'bottom', 'lot', 'review', 'not', 'thrill', 'doubt', 'got', 'phone', 'hand', 'gotten', 'noth', 'compliment', 'look', 'phone', 'black', 'case', 'gold', 'grill', 'set', 'apart', 'generic', 'shenzhen', 'stock', 'os', 'solid', 'appreci', 'bloat', 'minim', 'annoy', 'not', 'get', 'rid', 'bundl', 'yahoo', 'sport', 'zero', 'interest', 'not', 'get', 'bought', 'phone', 'phone', 'thought', 'want', 'not', 'go', 'avail', 'north', 'america', 'need', 'turn', 'bless', 'love', 'phone', 'solid', 'perform', 'great', 'headphon', 'warranti', 'includ', 'find', 'excel', 'valu', 'money', 'spent'], ['day', 'review', 'zte', 'axom', 'pro', 'complet', 'blown', 'away', 'capabl', 'phone', 'main', 'got', 'uhd', 'video', 'capabl', 'tri', 'video', 'dark', 'noisi', 'bar', 'band', 'condit', 'well', 'daylight', 'love', 'phone', 'also', 'first', 'phone', 'impress', 'play', 'music', 'speaker', 'rock', 'yet', 'use', 'earphon', 'came', 'phone', 'easi', 'use', 'initi', 'set', 'pretti', 'intuit', 'phone', 'current', 'use', 'not', 'issu', 'wifi', 'rang', 'realli', 'great'], ['phone', 'right', 'classi', 'slick', 'choic', 'color', 'glad', 'pick', 'gold', 'fun', 'dual', 'camera', 'back', 'creat', 'interest', 'imag', 'multi', 'exposur', 'ram', 'board', 'smooth', 'quick', 'friend', 'famili', 'ask', 'wow', 'buy', 'respons'], ['absolut', 'love', 'phone', 'phone', 'awesom', 'sound', 'compar', 'smart', 'phone', 'take', 'pictur', 'video', 'not', 'glitch', 'playback', 'pictur', 'taken', 'review', 'pros', 'con', 'pretti', 'accur', 'champagn', 'light', 'gold', 'color', 'look', 'nice', 'use', 'straight', 'talk', 'plan', 'still', 'get', 'use', 'i', 'sure', 'thing', 'wow', 'us', 'discov', 'bit', 'money', 'upfront', 'not', 'bad', 'price', 'overal', 'spec', 'would', 'nice', 'see', 'mayb', 'next', 'phone', 'design', 'size', 'not', 'bad', 'not', 'big', 'great', 'photo', 'take', 'nice', 'pic', 'surf', 'net', 'watch', 'show', 'etc', 'feel', 'well', 'built', 'batteri', 'last', 'well', 'day', 'not', 'gotten', 'hot', 'like', 'review', 'i', 'read', 'far', 'happi', 'phone', 'would'], ['overal', 'solid', 'phone', 'especi', 'price', 'lot', 'research', 'bought', 'phone', 'not', 'think', 'find', 'anyth', 'better', 'around', 'front', 'mp', 'take', 'realli', 'good', 'pictur', 'especi', 'back', 'mp', 'realli', 'like', 'bokeh', 'mode', 'let', 'us', 'refocus', 'pictur', 'alreadi', 'took', 'pretti', 'cool', 'also', 'like', 'let', 'us', 'combin', 'two', 'pictur', 'togeth', 'camera', 'also', 'camera', 'mode', 'two', 'use', 'phone', 'chip', 'make', 'music', 'sound', 'better', 'music', 'sound', 'amaz', 'free', 'headphon', 'provid', 'car', 'use', 'phone', 'casual', 'go', 'yahoo', 'news', 'facebook', 'messeng', 'instagram', 'snapchat', 'twice', 'everi', 'hour', 'pm', 'afterward', 'use', 'nike', 'run', 'hour', 'googl', 'music', 'hour', 'finish', 'around', 'batteri', 'life', 'person', 'think', 'batteri', 'life', 'realli', 'good', 'not', 'play', 'game', 'watch', 'video', 'con', 'batteri', 'take', 'recharg', 'guess', 'batteri', 'take', 'may', 'not', 'seem', 'like', 'big', 'i', 'phone', 'put', 'power', 'button', 'top', 'phone', 'wth', 'button', 'placement', 'phone', 'perfect', 'least', 'volum', 'button', 'left', 'side', 'power', 'button', 'right', 'side', 'perfect', 'opinion', 'phone', 'realli', 'attract', 'got', 'ion', 'gold', 'color', 'look', 'phone', 'kind', 'heavi', 'like', 'make', 'feel', 'expens', 'kind', 'phone', 'also', 'realli', 'tall', 'not', 'wide', 'think', 'realli', 'smart', 'allow', 'use', 'phone', 'one', 'hand', 'least', 'think', 'slight', 'larger', 'averag', 'popular', 'brand', 'least', 'us', 'like', 'mean', 'not', 'run', 'someon', 'els', 'phone', 'kind', 'exclus', 'like', 'oneplus', 'one', 'phone', 'actual', 'attract', 'least', 'big', 'negat', 'most', 'text', 'peopl', 'not', 'bother', 'much', 'think', 'could', 'bother', 'lot', 'peopl', 'metro', 'pcs', 'mayb', 'troubl', 'hear', 'peopl', 'call', 'need', 'make', 'call', 'volum', 'louder', 'lot', 'face', 'not', 'not', 'know', 'phone', 'made', 'start', 'accumul', 'lot', 'scratch', 'especi', 'top', 'bottom', 'inch', 'back', 'phone', 'think', 'section', 'made', 'plastic', 'not', 'durabl', 'least', 'term', 'scratch', 'probabl', 'get', 'indic', 'light', 'white', 'outsid', 'well', 'lite', 'room', 'realli', 'hard', 'see', 'flash', 'gone', 'anyth', 'white', 'indic', 'expand', 'stuck', 'gb', 'music', 'look', 'amaz', 'not', 'reorgan', 'playlist', 'wtf', 'use', 'googl', 'not', 'one', 'come', 'phone', 'much', 'not', 'move', 'order', 'song', 'not', 'use', 'finger', 'unlock', 'would', 'cool'], ['big', 'issu', 'sim', 'port', 'big', 'problem', 'phone', 'not', 'know', 'zte', 'employe', 'talk', 'thing', 'phone', 'not', 'recogn', 'sim', 'chip', 'work', 'first', 'day', 'second', 'not', 'talk', 'carrier', 'compani', 'said', 'sim', 'activ', 'someth', 'wrong', 'phone', 'phone', 'not', 'job', 'basic', 'phone', 'text', 'call', 'like', 'player'], ['excit', 'get', 'phone', 'phone', 'stop', 'work', 'power', 'button', 'stuck', 'insid', 'case', 'caus', 'phone', 'constant', 'turn', 'batteri', 'die', 'first', 'day', 'power', 'button', 'got', 'stuck', 'twice', 'alreadi', 'pretti', 'concern', 'build', 'qualiti', 'today', 'day', 'got', 'stuck', 'not', 'even', 'get', 'button', 'make', 'phone', 'note', 'earpiec', 'speaker', 'volum', 'not', 'loud', 'batteri', 'drain', 'rather', 'quick', 'understand', 'accept', 'batteri', 'consid', 'phone', 'spec', 'realli', 'great', 'low', 'earpiec', 'volum', 'stuck', 'power', 'button', 'deal', 'killer', 'i', 'return', 'phone', 'amazon'], ['love', 'look', 'like', 'zte', 'go', 'forward', 'perform', 'lag', 'fast', 'fast'], ['zte', 'axon', 'good', 'phone', 'come', 'nexus', 'screen', 'big', 'step', 'interfac', 'also', 'larg', 'stock', 'especi', 'replac', 'default', 'launcher', 'googl', 'last', 'updat', 'possibl', 'disabl', 'annoy', 'zte', 'featur', 'also', 'great', 'intern', 'band', 'support', 'far', 'better', 'competitor', 'like', 'lg', 'one', 'plus', 'par', 'motorola', 'x', 'style', 'latest', 'nexus', 'phone', 'market', 'factori', 'unlock', 'not', 'entir', 'accur', 'devic', 'factori', 'unlock', 'mean', 'phone', 'not', 'lock', 'carrier', 'possibl', 'unlock', 'bootload', 'allow', 'instal', 'root', 'custom', 'rom', 'like', 'cyanogenmod', 'without', 'take', 'advantag', 'hole', 'certain', 'not', 'lock', 'zte', 'made', 'sure', 'access', 'bootload', 'unlock', 'bootload', 'not', 'import', 'peopl', 'import', 'abl', 'instal', 'firewal', 'ad', 'blocker', 'instal', 'limit', 'ad', 'blocker', 'without', 'root', 'definit', 'not', 'good', 'adaway', 'also', 'mean', 'not', 'gift', 'wife', 'relat', 'futur', 'android', 'requir', 'root', 'instal', 'custom', 'font', 'right', 'wrong', 'least', 'one', 'countri', 'use', 'compliant', 'charact', 'map', 'not', 'chang', 'worst', 'part', 'io', 'allow', 'custom', 'font', 'instal', 'sinc', 'io', 'without', 'jailbreak', 'earli', 'august', 'phone', 'arriv', 'best', 'option', 'market', 'realiz', 'factori', 'unlock', 'statement', 'not', 'entir', 'accur', 'fact', 'last', 'year', 'nexus', 'much', 'cheaper', 'new', 'motorola', 'order', 'phone', 'bootload', 'unlock', 'not', 'recommend', 'phone', 'anymor', 'better', 'buy', 'one', 'want', 'true', 'unlock', 'experi'], ['best', 'phone', 'ever', 'own', 'iphon', 'samsung', 'nexus', 'htc', 'far', 'top', 'heap', 'key', 'thing', 'memori', 'adequ', 'power', 'strong', 'cpu', 'par', 'today', 'top', 'phone', 'video', 'strong', 'also', 'par', 'today', 'top', 'batteri', 'top', 'line', 'effici', 'design', 'longer', 'worri', 'saddl', 'spare', 'usb', 'charger', 'batteri', 'everywher', 'go', 'last', 'day', 'heavi', 'price', 'great', 'price', 'much', 'better', 'samsung', 'flexibl', 'unlock', 'year', 'commitmentsoveral', 'high', 'recommend', 'phone', 'exceed', 'expect', 'everi', 'way'], ['good', 'camera', 'perform', 'nice', 'screen', 'worth', 'price'], ['great', 'phone'], ['good', 'phone', 'fast', 'recent', 'app', 'bottom', 'stop', 'work', 'week'], ['initi', 'review', 'product', 'read', 'review', 'probabl', 'decid', 'wether', 'not', 'buy', 'phone', 'custom', 'tell', 'pleas', 'phone', 'realli', 'realli', 'good', 'i', 'put', 'phone', 'pace', 'not', 'slow', 'freez', 'everyth', 'expens', 'galaxi', 'edg', 'come', 'think', 'get', 'premium', 'build', 'phone', 'great', 'processor', 'realli', 'good', 'screen', 'fast', 'charg', 'trust', 'amaz', 'fast', 'zte', 'build', 'phone', 'insur', 'phone', 'state', 'hi', 'fi', 'sound', 'suggest', 'opt', 'gb', 'version', 'honest', 'not', 'think', 'singl', 'reason', 'edgi', 'not', 'recommend', 'use', 'phone', 'week', 'say', 'love', 'i', 'own', 'iphon', 'galaxi', 'phone', 'last', 'year', 'not', 'think', 'not', 'worth', 'money', 'frank', 'hope', 'zte', 'continu', 'releas', 'great', 'phone', 'like', 'near', 'futur'], ['i', 'look', 'forward', 'phone', 'calib', 'long', 'time', 'final', 'wow', 'surpass', 'expect', 'start', 'hifi', 'audio', 'amaz', 'dare', 'find', 'someth', 'better', 'price', 'best', 'part', 'came', 'set', 'jbl', 'ear', 'bud', 'camera', 'qualiti', 'phone', 'better', 'expect', 'capabl', 'previous', 'devic', 'batteri', 'life', 'massiv', 'phone', 'person', 'busi', 'tool', 'use', 'everyth', 'email', 'text', 'take', 'pictur', 'talk', 'day', 'surpris', 'still', 'decent', 'amount', 'batteri', 'life', 'left', 'anoth', 'day', 'outdon', 'axon', 'difficult', 'competit', 'catch'], ['love', 'listen', 'music', 'better', 'htc', 'one', 'audio', 'amaz', 'jbl', 'headphon', 'includ', 'one', 'front', 'fire', 'speaker', 'get', 'loud', 'mean', 'loud', 'screen', 'beauti', 'set', 'alow', 'set', 'neutral', 'get', 'satur', 'color', 'camera', 'qualiti', 'good', 'daylight', 'smartphon', 'camera', 'low', 'light', 'might', 'tweak', 'manual', 'mode', 'get', 'right', 'set', 'gripe', 'phone', 'lack', 'finger', 'print', 'scanner', 'lack', 'sd', 'card', 'zte', 'need', 'push', 'marshmallow', 'soon', 'possibl', 'ps', 'alway', 'push', 'softwar', 'updat', 'get', 'phone', 'factori', 'reset'], ['other', 'troubl', 'make', 'phone', 'call', 'appar', 'phone', 'problem', 'sinc', 'januari', 'assum', 'not', 'go', 'least', 'awhil', 'go', 'return', 'phone', 'phone', 'seem'], ['glad', 'got', 'phone', 'flagship', 'perform', 'great', 'price', 'sound', 'great', 'reason', 'purchas', 'tri', 'various', 'type', 'headset', 'iem', 'back', 'close', 'back', 'sound', 'great', 'nativ', 'audio', 'app', 'incorpor', 'dolbi', 'digit', 'audio', 'give', 'great', 'sound', 'movi', 'function', 'issu', 'unit'], ['star', 'realli', 'great', 'phone', 'amazon', 'deliv', 'packag', 'fast', 'phone', 'new', 'condit', 'state', 'would', 'subtract', 'star', 'phone', 'not', 'work', 'sim', 'card', 'put', 'sim', 'card', 'phone', 'would', 'not', 'recogn', 'even', 'took', 'store', 'said', 'phone', 'not', 'even', 'react', 'sim', 'card', 'could', 'not', 'even', 'network', 'set', 'not', 'sure', 'problem', 'could', 'pin', 'could', 'not', 'reach', 'sim', 'card', 'intern', 'could', 'phone', 'not', 'unlock', 'unfortun', 'issu', 'return', 'phone'], ['thing', 'phone', 'great', 'phone', 'run', 'well', 'not', 'notic', 'slow', 'batteri', 'awesom', 'get', 'day', 'batteri', 'medium', 'usag', 'heavier', 'use', 'usual', 'end', 'day', 'one', 'two', 'notiabl', 'first', 'phone', 'got', 'defect', 'camera', 'tri', 'take', 'photo', 'receiv', 'phone', 'froze', 'black', 'phone', 'reboot', 'restor', 'phone', 'sever', 'time', 'fix', 'back', 'issu', 'hardwar', 'relat', 'luckili', 'got', 'replac', 'fast', 'minor', 'problem', 'new', 'navig', 'button', 'sometim', 'unrespons', 'good', 'second', 'press', 'home', 'button', 'work', 'time', 'multi', 'task', 'back', 'liter', 'take', 'sever', 'press', 'work', 'annoy', 'browser', 'hope', 'softwar', 'issu', 'not', 'good', 'phone', 'would', 'say', 'perform', 'well', 'current', 'flagship', 'care', 'seem', 'like', 'bug', 'defect', 'not', 'work'], ['everyth', 'good', 'purchas'], ['good', 'phone', 'cheap', 'price'], ['not', 'happi', 'got', 'phone', 'small'], ['recomiendo'], ['good', 'phone', 'cheap', 'price'], ['not', 'happi', 'got', 'phone', 'small'], ['nice', 'phone', 'easi', 'use', 'good', 'price'], ['husband', 'not', 'realli', 'like', 'phone', 'not', 'hear', 'anyth', 'somebodi', 'call', 'i', 'got', 'today', 'send', 'back', 'today'], ['get', 'new', 'one', 'refurbish', 'use', 'alway', 'problem', 'screen', 'mine', 'went', 'two', 'week', 'batteri', 'percent', 'glitch'], ['bought', 'phone', 'nubia', 'found', 'excel', 'product', 'pretti', 'comfort', 'slim', 'top', 'photo', 'durat', 'greater', 'mani', 'regret', 'not', 'enough', 'equip', 'made', 'screen', 'break', 'unveil', 'part', 'way', 'fix', 'broken', 'buy', 'new', 'one', 'switch', 'anoth', 'brand', 'support', 'part', 'accessori'], ['bad', 'mobil', 'use', 'life', 'camera', 'qualiti', 'notif', 'like', 'whatsapp', 'facebook', 'messeng', 'not', 'reciev', 'open', 'app'], ['phone', 'prepaid', 'not', 'specifi', 'list', 'use', 'prepay', 'month', 'use', 'post', 'paid', 'account', 'plus', 'arriv', 'without', 'origin', 'box', 'instruct', 'crack', 'screen', 'obvious', 'send', 'back'], ['got', 'lot', 'decent', 'featur'], ['purchas', 'phone', 'not', 'phone', 'metropc', 'call', 'went', 'store', 'phone', 'not', 'activ', 'without', 'unlock', 'code', 'metro', 'would', 'not', 'provid', 'told', 'go', 'charg', 'fals', 'advertis', 'complet', 'lie'], ['love', 'phone', 'came', 'earli'], ['great', 'phablet', 'love'], ['great'], ['good'], ['arriv', 'prompt', 'packag', 'well', 'everi', 'thing', 'expect', 'good', 'product', 'user', 'friend'], ['year', 'old', 'aunt', 'love', 'need', 'basic', 'flip', 'phone', 'perfect'], ['bought', 'gift', 'friend', 'not', 'use', 'not', 'know', 'work', 'not', 'heard', 'complaint', 'guess', 'fine'], ['phone', 'fine', 'far', 'offer', 'would', 'never', 'let', 'know', 'voic', 'mail', 'would', 'random', 'shut', 'anytim', 'tri', 'make', 'call', 'send', 'messag', 'return', 'first', 'one', 'think', 'fluke', 'second', 'one', 'bought', 'thing', 'end', 'return', 'one'], ['love', 'phone'], ['solid', 'quad', 'band', 'gsm', 'phone', 'perfect', 'intern', 'domest', 'use'], ['scam', 'theft', 'phone', 'approv', 'not', 'dellock', 'code'], ['excel'], ['phone', 'year', 'one', 'final', 'broke', 'drop', 'open', 'split', 'right', 'half', 'got', 'anoth', 'one', 'year', 'good', 'lifespan', 'phone'], ['better', 'expect', 'arriv', 'suppos', 'great', 'price'], ['phone', 'work', 'great', 'excel', 'price', 'quick', 'deliveri'], ['husband', 'realli', 'like', 'phone', 'alway', 'say', 'well', 'say', 'tear', 'go', 'get', 'anoth', 'one', 'like'], ['son', 'still', 'work', 'great'], ['answer', 'call', 'person', 'not', 'hear'], ['wife', 'phone', 'broke', 'got', 'exacti', 'model', 'fraction', 'even', 'sell', 'use', 'phone', 'ksl', 'classifi', 'ebay', 'work', 'great', 'great', 'price', 'easi', 'fix', 'buy', 'new', 'phone', 'requir', 'anoth', 'not', 'want', 'phone', 'expens', 'thank', 'fine', 'thought', 'said', 'use', 'not', 'tell'], ['dirti', 'phone', 'receiv', 'not', 'appreci', 'not', 'impress', 'decid', 'go', 'walmart', 'buy', 'new', 'one', 'three', 'samsung', 'convoy', 'usabl', 'program', 'glitch'], ['great', 'littl', 'phone', 'sturdi', 'husband', 'work', 'factori', 'enjoy'], ['love'], ['use', 'hard']] [1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0]
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y,
random_state=0,
train_size=0.80)
print("Size of X_train: {}".format(len(X_train)))
print("Size of y_train: {}".format(len(y_train)))
print("\n")
print("Size of X_test: {}".format(len(X_test)))
print("Size of y_test: {}".format(len(y_test)))
print("\n")
print("Train proportion: {:.0%}".format(len(X_train)/
(len(X_train)+len(X_test))))
Size of X_train: 12300 Size of y_train: 12300 Size of X_test: 3076 Size of y_test: 3076 Train proportion: 80%
id = random.randint(0,len(X_train))
print("Train review: {}".format(X_train[id]))
print("Sentiment: {}".format(y_train[id]))
Train review: ['far', 'best', 'phone', 'purchas', 'littl', 'pricey', 'like', 'would', 'recommend', 'phone', 'anyon'] Sentiment: 1
from sklearn.linear_model import LogisticRegression
def fit_lr(X_train, y_train):
model = LogisticRegression()
model.fit(X_train, y_train)
return model
tf = fit_tfidf(X_train)
X_train_tf = tf.transform(X_train)
X_test_tf = tf.transform(X_test)
C:\Users\Arvin\anaconda3\lib\site-packages\sklearn\feature_extraction\text.py:489: UserWarning: The parameter 'token_pattern' will not be used since 'tokenizer' is not None'
warnings.warn("The parameter 'token_pattern' will not be used"
model_lr_tf = fit_lr(X_train_tf, y_train)
from sklearn.metrics import accuracy_score
from sklearn.metrics import confusion_matrix
y_pred_lr_tf = model_lr_tf.predict(X_test_tf)
print("LR Model Accuracy: {:.2%}".format(accuracy_score(y_test, y_pred_lr_tf)))
LR Model Accuracy: 92.69%
plot_confusion(confusion_matrix(y_test, y_pred_lr_tf))
<module 'seaborn' from 'C:\\Users\\Arvin\\anaconda3\\lib\\site-packages\\seaborn\\__init__.py'>
neg_test_review = "Worst phone I ever purchased. Bad battery and Camera backup"
pos_test_review = "Samsung phone is pretty good. Love the camera and speaker quality. JUST GO FOR IT!!!!!"
Create a predict_review function used to pre-process, transform and predict review sentiment
def predict_review(review):
processed_review = process_review(review)
transformed_review = tf.transform([processed_review])
prediction = model_lr_tf.predict(transformed_review)
if prediction == 1:
return "Prediction is positive sentiment"
else:
return "Prediction is negative sentiment"
predict_review(neg_test_review)
'Prediction is negative sentiment'
predict_review(pos_test_review)
'Prediction is positive sentiment'